Hi everybody.
I have a question.
I want to transmit some bits or bytes with a pi and a 433 MHZ transmitter.
so i'm looking for a simpel library or code so its easy to send this from a pi to an arduino.
to give an better idea of what i'm doing, i want to send a byte to an arduino wich is mounted on a robot.
so I send for example 00000001 for forward.
is it possible that we can make the code for the pi in a way that you just can type for example Rf.send(00000001)
maybe that the code would look something like this:
include library .......
Rf.pin(10) // GPIO pin that is connected to the data pin of the transmitter
Rf.send(00000001)
I would like to use bytes because i already have a arduino code using byte and I also think it is an easy way of communication.
Thank you all in advance
Bob J