I guys, I have LoRa transceiver module (AS62-T20). I couldn't find a library for it.so I used SoftwareSerial lib to connect Rx and Tx to arduino uno. now I can receive and transmit data by softwareserial.write() and softwareserial.read() command. but I don't know how can I set address to send a data specially to my receiver not all receivers.
I know that transmission format is 00 03 04 AA BB CC that 00 03 is address of target module, 04 is channel of target module and AA BB CC are the data to be send. but I don't know how to use it.Can anyone help me? or is there anybody to have it's library?
because (AS62-T20) datasheet is not English i attach another datasheet of (E45-TTL-100) module that are similar to each other.
thanks
so what can I do?
I just want to know command for send a message to particular address of my receiver by softwareserial. or find a library for my module. Can you help me?
FTM2010:
so what can I do?
I just want to know command for send a message to particular address of my receiver by softwareserial. or find a library for my module. Can you help me?
I can receive and transmit data by softwareserial.write() and softwareserial.read() command.
I know that transmission format is 00 03 04 AA BB CC that 00 03 is address of target module, 04 is channel of target module and AA BB CC are the data to be send. but I don't know how to use it.
So you need to send seperate bytes; 0x00 then 0x03 then 0x04 and then send the data\message.
do you understand what am I say?
actually I don't know how can I write this function or can't find a library with this functions for my module.
if you know this ,I would very appreciate of yours.