Apologies if this is a stupid question.
I’m trying my first project on a Raspberry Pi Pico. The project is to open and close a door (via a motor) at certain times. I’m using:
- Raspberry PI PICO
- Waveshare RTC. https://core-electronics.com.au/search/?q=pico+rtc
- Micropython
- Thonny
I can’t figure out how to schedule the events in Micropython. I have found the following scheduling module:
But I can’t figure out how to import this module into MicroPython on the PICO. I’ve tried typing “pip
install schedule” into the Thonny shell but I get “SyntaxError: invalid syntax”.
I don’t really know where to go from here. Is it possible to import modules into Micropython on the PICO? If so, how would I do it? Or perhaps there is a better way to schedule a function using Micropython?
Any help would be greatly appreciated.