Arduino & xbee tutorial - transmit from seperate arduino wirelessly to pc or mac
Loading...
20,622
Loading...
Uploader Comments (roboteernat)
see all
All Comments (13)
-
@roboteernat Hey thanks for the reply... What I am basically tryin to do is replace my RC trans./receiver for a arduino setup. So I need to pans to control speed and steering connected to a transmitter type device, Im guessing a Xbee and Arduino/Nano?, then I need a reciever(Xbee+Arduino?) thats hooked up to the 2 servos. Let me know your thoughts. Thanks
Charles
-
wich program did you use to setup xbee with mac?
-
-
It is awesome that you took the time to do this thank you! I am working on something similar and will post the tutorial as well .
Loading...
Hey...this is a super nice video...I am noob to arduino and wanted to build something like this. But I want to control 2 separate servos with 2 separate pots wireless. Wht do I need to buy as far as a basic setup? Any information would be helpful. Thanks
Charles
cbizzyr 1 month ago
@cbizzyr Can i ask, is it 2 servos and pots seperate from each other, ie 4 clusters of parts? or is it just to have 2 sevos on one xbee and 2 pots on another xbee?
roboteernat 1 month ago
how do you wire it without a shield?
inspiredStudent 8 months ago
@inspiredStudent sorry for not replying sooner, the basic connections would be power to the xbee and connecting the transmit and recieve pin together, i will respond with another vdeo in next few days.
roboteernat 1 month ago
thank you!! but what do you do if you want to send more than one analog value? what's the code like?
mcgyverbrown 1 year ago
@mcgyverbrown thanks, to send more than one analogue value in this example, you would just need to insert a readadc command, and then add the second memory name in the send value subroutine
int ledpin2 = 0;
int val2 = 0;
val2 = analogRead(ledPin2); // read value from sensor
void sendValue (int val, val2){ //new function
Serial.print(val); //print value to xbee (serial port)
Serial.print(val2);
as example additional lines
roboteernat 1 year ago