support
support copied to clipboard
Pybricks support and general discussion
I'm trying to use a Lego 45305 tilt sensor with a Spike Prime Hub. The Pybricks documentation says they are compatible and the sensor seems to be detected correctly as...
I made this mistake earlier today: ```c pbio_error_t err; while (pbio_port_get_servo(port, &type_id, &self->srv) == PBIO_ERROR_AGAIN) { mp_hal_delay_ms(1); } pb_assert(err); ``` Which should have been: ```c pbio_error_t err; while ((err =...
During the investigation of a crash occurring on EV3, we found that there are potential issues with the data alignment (i.e. to a multiple of 4 bytes) of MicroPython modules....
We are starting to have various i/o methods now. This is very exciting, but they are a bit all over the place at the moment. In Pybricks 2.0, we used...
**Is your feature request related to a problem? Please describe.** When using multitasking, I would like to have one coroutine block to await something happening in another coroutine. Currently I...
**Describe the bug** I am trying to access and even change local variables via the `locals()` disctionary. Any local variables seem to be missing from this dictionary / except for...
**Describe the bug** I want to write typed programs and run them on the Spike Prime hub, but I always get `ImportError: no module named 'typing'`. **To reproduce** 1. Write...
Using the DriveBase with the gyro is very popular on SPIKE with Pybricks. It is also the one feature the EV3 never had. I would like to explore how well...
**Describe the bug** When I use Bluefy to access code.pybricks.com and click on the bluetooth button, a red error message pops up stating that an unexpected error has occured. **To...
**Describe the bug** If I run "pybricks run ble test.py" where test.py is something that never ends, like `while True: pass`, then there seems to be no way to recover...