Search found 2 matches

by dnts
Sun Apr 04, 2021 10:10 am
Forum: Raspberry Pi microcontroller boards
Topic: NRF24L01 with a Pi Pico
Replies: 20
Views: 51447

Re: NRF24L01 with a Pi Pico

on master

Code: Select all

        try:
            nrf.send(struct.pack("i", millis))
        except OSError:
           	I GET AN ERROR HERE
            pass
the slave is already in listening mode
by dnts
Sun Apr 04, 2021 9:27 am
Forum: Raspberry Pi microcontroller boards
Topic: NRF24L01 with a Pi Pico
Replies: 20
Views: 51447

Re: NRF24L01 with a Pi Pico

Hi all, I need some help to get a pico-pico communicate with the NRF24L01. The connections are: CE to GPIO14 CSN to GPIO15 MISO to GPIO4 MOSI to GPIO7 SCK to GPIO6 as mentioned above. The code i use for master: """Test for nrf24l01 module. Portable between MicroPython targets.""" import sys import u...