Search found 1 match
- Mon Jul 27, 2020 1:00 am
- Forum: General Discussion and Questions
- Topic: nrf24l01 not working in mixed environment
- Replies: 6
- Views: 6983
Re: nrf24l01 not working in mixed environment
It has been two years since last post but this might just help someone. The Arduino library uses the default payload size of 32 bytes but the defaults for MicroPython is only 16 bytes . I found this works if I just add a payload_size parameter and set it to 32 bytes in MicroPython code. ( or you cou...