Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Transmitting PWM signal through RF

Status
Not open for further replies.

sharulagrawal

Newbie level 3
Joined
Jul 18, 2012
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,301
hi..
I am trying to rotate my servo motor wirelessly through RF module using Arduino UNO at transmitter side and on receiver side i have my servo motor attached. I want to know how to successfully transmit PWM signal because I am not able to transmit by signal till motor which can cause it to rotate.?
 

The servo needs to receive about 50 pulses per second (one every 20ms). Pulse width should be between 1ms and 2ms.
 

The servo needs to receive about 50 pulses per second (one every 20ms). Pulse width should be between 1ms and 2ms.


Thanks for your reply,
can u also tell me how to set pulse width in arduino coding coz I am actually new to arduino...I did it in this way

for(pos=1000;pos<2000;pos+=1)
{
myservo.writeMicroseconds(pos);
delay(20);
}

for(pos=2000;pos>1000;pos-=1)
{
myservo.writeMicroseconds(pos);
delay(20);
}

but still not getting any output.
 
Last edited:

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top