Search found 3 matches

by mytechnotalent
Fri Jul 16, 2021 7:57 pm
Forum: Programs, Libraries and Tools
Topic: nrf24l01 Library
Replies: 1
Views: 1604

Re: nrf24l01 Library

I worked out my own solution and wanted to provide for the benefit of the community. # pyright: reportMissingImports=false # pyright: reportUndefinedVariable=false import utime import ustruct as struct from nrf24l01 import NRF24L01 from config import * # NRF config if usys.platform == 'rp2': # Softw...
by mytechnotalent
Fri Jul 16, 2021 11:23 am
Forum: Programs, Libraries and Tools
Topic: nrf24l01 Library
Replies: 1
Views: 1604

nrf24l01 Library

I am attempting to use this nrf library to: 1)Have an unlimited number of picos send and recv a small message (which the test code provides but more driven toward a master/slave setup on two devices). I would like to avoid the pipes as I do not want a limited set of hardwired pipes. Thanks in advanc...
by mytechnotalent
Fri Sep 04, 2020 10:33 am
Forum: Programs, Libraries and Tools
Topic: ESP32 support for bluetooth BLE - DEMO
Replies: 1
Views: 4605

ESP32 support for bluetooth BLE - DEMO

I am new to the MP platform and at after messing around for a short bit I was able to make a small demo making just a very small mod to two examples to help others new like myself have two ESP32's talk to each other over BLE. This code will connect a ble_simple_peripheral.py to a ble_simple_central....