WesleyJ-128

Results 10 comments of WesleyJ-128

> Do you have any advice for object detection? I'm trying to use TensorFlow light. You could use [GRIP](https://wpiroboticsprojects.github.io/GRIP/#/), which gives you a GUI for designing an OpenCV pipeline, then...

There might (is a) be some weird hacky way to do this involving multiple threads/processes. However, there is no "nice" way to do this. What I ended up doing (I...

Trying to intercept the stop button command sounds like a bad idea (something goes wrong, program can no longer be stopped). However, using multiprocessing, you can listen for button presses...

This error is not exclusive to sensor reads- trying to get the motor encoder values from multiple threads yields the same error.

``` python #!/usr/bin/env python3 from ev3dev2.motor import LargeMotor from ev3dev2.sensor.lego import ColorSensor cs = ColorSensor() lm = LargeMotor() lm.on(30) while not cs.color == cs.COLOR_YELLOW: pass lm.off() ``` Is just one...

It sounds like you have solved the problem. Please close this issue if that is the case.

I have a fixed version in pull request #413; it's not merged yet but I've been using the script for a few months and haven't encountered any major problems-- for...

I've noticed what appears to be a client/server desync bug where the item swapped into the hotbar doesn't appear for the player if the item count is 1— the item...

I like having just one script; I'll look at adding an if statement to combine the two.

Pull request #412 has been merged and fixes the auto_pickup script (this bug and the only stacking to 2 bug).