Search found 2 matches

by Workshopshed
Wed Jul 14, 2021 2:29 pm
Forum: Other Boards
Topic: Pybricks: MicroPython for LEGO
Replies: 9
Views: 24885

Re: Pybricks: MicroPython for LEGO

One way would be to use a for loop, so your code would now look like this: #!/usr/bin/env pybricks-micropython from pybricks.hubs import EV3Brick from pybricks.ev3devices import Motor from pybricks.parameters import Port from pybricks.robotics import DriveBase ev3 = EV3Brick() left_motor = Motor(Po...
by Workshopshed
Wed Jul 14, 2021 2:24 pm
Forum: Other Boards
Topic: [STM32H747] Communicating between cores on STM32
Replies: 0
Views: 2111

[STM32H747] Communicating between cores on STM32

Jim sent me here from Twitter. I've recently started experimenting with an Arduino Portenta ( STM32H747 ) and wish to use its M7 core running Micropython to do some image processing from a camera and its M4 core connected to some NeoPixels. The changes to the lights would be driven from the results...