RF communication
kenwtn
Posts: 250
·
···· I m not sure how to ask this so it makes sense, but will do my best. I m planning on hooking a BS2 to my computer and using a RF transmitter send commands to a robot that has a RF receiver attached. The robot BS2 has a lot of processing going on and I do not want it to miss a command sent from the computer. The BS2 on the robot could check for a command from the computer about 1 or 2 times a second. So my question is does the RF transmitter wait for some indication that the RF module is ready before transmitting the data or does the RF transmitter just send the information and assume that some receiver is getting the data?
···· I m not sure how to ask this so it makes sense, but will do my best. I m planning on hooking a BS2 to my computer and using a RF transmitter send commands to a robot that has a RF receiver attached. The robot BS2 has a lot of processing going on and I do not want it to miss a command sent from the computer. The BS2 on the robot could check for a command from the computer about 1 or 2 times a second. So my question is does the RF transmitter wait for some indication that the RF module is ready before transmitting the data or does the RF transmitter just send the information and assume that some receiver is getting the data?
Comments
One possible way around it though with just a single transmitter and receiver could be to have a window of time that you know the receiver will be looking for a signal(a listen loop that goes for 10 seconds every 10 seconds). This way your transmission should overlap the receivers window of time. 10 seconds of actions, 10 seconds of waiting for instructions. If nothing is received, continue with what you were doing. if something was received, do that. You could add some sort of id so that it can check to see if it's run the instruction already.