Search found 1 match

by koushik
Fri Mar 29, 2024 5:20 am
Forum: Hardware
Topic: Difference between Esp32 LoRa.write() and LoRa.print() commands
Replies: 2
Views: 4867

Re: Difference between Esp32 LoRa.write() and LoRa.print() commands

LoRa.write(byte) sends a single byte as given in docs - https://github.com/sandeepmistry/arduino-LoRa/blob/master/API.md#writing LoRa.read() reads single byte from packet - https://github.com/sandeepmistry/arduino-LoRa/blob/master/API.md#reading On the receiver side -> byte data = LoRa.read(); then...