David Lechner

Results 1494 comments of David Lechner

Pybricks uses MicroPython, not "regular" Python, so most Python libraries are not usable. What do you want to use the `multiprocessing` library for?

You could use [ev3dev-lang-python](https://ev3dev-lang.readthedocs.io/projects/python-ev3dev/en/ev3dev-stretch/?badge=ev3dev-stretch) to get Python 3.5. Or in MicroPython you could use a different way to run code in parallel. My personal preference is to [use generators as...

It doesn't look like this device has mainline Linux support. e.g. https://ubuntuforums.org/showthread.php?t=2389602&page=3 So, you can try to compile your own driver or get a different Wi-Fi dongle. https://github.com/ev3dev/ev3dev/wiki/USB-Wi-Fi-Dongles

`http://archive.ev3dev.org` doesn't have any mirrors that I know of. There haven't been any updates recently anyway, so you could just comment that line out.

The EV3 is very slow. How long did you wait?

Usually it doesn't take longer than that. But if you have a very slow SD card and/or very slow Internet, it might take longer.

IMHO, changing the port mode to force the gyro sensor to reset is the best solution. You just need to be sure that the sensor is **completely** still when you...

Python is not the same as MicroPython, so Python packages will only work with regular Python. Python packages in Debian usually start with `python-` for Python 2 and `python3-` for...

What do you want to do with Bluetooth? Have you followed these instructions? https://www.ev3dev.org/docs/tutorials/connecting-to-the-internet-via-bluetooth/ The *Connect* button is usually only used for connecting the EV3 to devices like keyboards and...

You should be able to manually create the authentication header and use `headers=` instead of using `auth=`. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Authorization