Search found 3 matches

by Rob_Dr
Sun May 15, 2022 7:37 pm
Forum: Raspberry Pi microcontroller boards
Topic: network / BT / BLE modules for Pico ?
Replies: 1
Views: 1856

network / BT / BLE modules for Pico ?

I may have a difficulty in understanding how libraries / modules are structured or perhaps more direct the immediate challenge I face: where are the libraries advocated in the documentation when I wish to use them at a Pico ? When I read mp 1.18 documentation, both bluetooth and network are listed u...
by Rob_Dr
Thu Apr 28, 2022 5:58 pm
Forum: General Discussion and Questions
Topic: writing ISR's / init the Pico RTC
Replies: 2
Views: 824

Re: writing ISR's / init the Pico RTC

Hello karfas, thx for your (prompt) reply. With respect to accuracy: - I initially started to use time.ticks_ms as the base for my scheduling of activities before I realized I had this time_of_day alignment challenge; so the millisecond thinking started there. Must say I was surprised to see that th...
by Rob_Dr
Thu Apr 28, 2022 11:12 am
Forum: General Discussion and Questions
Topic: writing ISR's / init the Pico RTC
Replies: 2
Views: 824

writing ISR's / init the Pico RTC

in the micropython documentation there are some recommendations wrt to writing ISR's, such as but not limited to: - Keep the code as short and simple as possible. - Avoid memory allocation: no appending to lists or insertion into dictionaries, no floating point. Am working on using a Rasp PI 4 icw 3...