Search found 3 matches

by emii
Tue Apr 06, 2021 4:40 pm
Forum: General Discussion and Questions
Topic: Custom newline characters when reading files
Replies: 1
Views: 1068

Custom newline characters when reading files

I'm working with binary files that already contain "\n" as part of the data, but on a low-memory device that can't hold too much in memory. The "lines" are instead separated by "B5 62" (which is more unlikely to come up). I know in standard python you can stick "newline=b'\xb5b'" at the end of the o...
by emii
Tue Mar 02, 2021 1:41 pm
Forum: Raspberry Pi microcontroller boards
Topic: NRF24L01 with a Pi Pico
Replies: 20
Views: 51440

Re: NRF24L01 with a Pi Pico

Thank you so much for the help! I'll look into the alternatives you mentioned and try those instead.
by emii
Sun Feb 28, 2021 6:25 pm
Forum: Raspberry Pi microcontroller boards
Topic: NRF24L01 with a Pi Pico
Replies: 20
Views: 51440

NRF24L01 with a Pi Pico

I recently bought some nRF24s with the intention of talking to some Pi Picos in micropython. I did some digging and found the drivers https://github.com/micropython/micropython/tree/master/drivers/nrf24l01 and https://github.com/peterhinch/micropython-radio/ but if I'm honest I don't really know how...