Other good options are windows step recorder: Win+R and type: psr and hit OK
Or windows game bar screen recorder: Win+Alt+R (Win+G to open the Gamebar interface).
Hi Oliver
See Attached pico procedure
This started out as a simple project for the Mens Shed in Wynnum. There are a few Raspberry Pi enthusiasts. Average age 65!! Split between database and real-time interest groups.
MPY: soft reboot
init
busy
busy release
busy
busy release
busy
busy release
Traceback (most recent call last):
File “main.py”, line 298, in
File “main.py”, line 285, in Clear
KeyboardInterrupt:
MicroPython v1.15 on 2021-04-18; Raspberry Pi Pico with RP2040
Type “help()” for more information.
Added LED marker at startup and turned LED off after first 2 seconds into program. Runs fine when triggered from PC, BUT The LED flashes when booted on battery, but program stops a couple of lines later. Timing is not the same when running after selfbooting. Need to get the scope out.
Toggling LED 25 from call to BUSY in ePaper code shows code is running on pico when booting in stand alone mode for a few seconds. Then BUSY loop gets locked on, . Simply Screen appears to not initialise as no visual updates occur. Got me beat.
Side issue Spec for ePaper 2.13 is for 3.3V, but module as supplied is hardwired to VSYS (5V).
Problem solved. by Waveshare. Output pin must be initialised after SPI initialization.
"def init(self):
self.reset_pin = Pin(RST_PIN, Pin.OUT) #------remove dc init line from here to below spi init-----
self.busy_pin = Pin(BUSY_PIN, Pin.IN, Pin.PULL_UP)
self.cs_pin = Pin(CS_PIN, Pin.OUT)
self.width = EPD_WIDTH
self.height = EPD_HEIGHT