support icon indicating copy to clipboard operation
support copied to clipboard

Pybricks support and general discussion

Results 283 support issues
Sort by recently updated
recently updated
newest added

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...

topic: sensors
software: pybricks-blocks

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 =...

devops

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....

software: pybricks-code
software: pybricks-micropython
software: pybricksdev

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...

topic: bluetooth
topic: USB

**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...

topic: multitasking
software: pybricks-micropython
topic: MicroPython

**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...

documentation

**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...

triage

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...

platform: EV3
topic: sensors
topic: control
topic: imu

**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...

blocked: upstream

**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...

enhancement
software: pybricksdev