Arduino Servo Control
hey everyone,
i'm new here don'y know post this...
i have made simple piece of software interfaces right arduino, no shield needed!
it has features:
interface code (modify needed):
download! http://www.mediafire.com/download/3c6ozftsm2vrmnv/arduinoservocontrol.zip
thanks!
-colby newman (parzivail.tumblr.com)
screenshot:
i'm new here don'y know post this...
i have made simple piece of software interfaces right arduino, no shield needed!
it has features:
- com port select
- servo rotation slider , numeric selector
- sweep ms tick time (speed) control
- more on way! ideas welcome!
interface code (modify needed):
code: [select]
#include <servo.h>
servo iservo;
int val = 0;
void setup()
{
serial.begin(9600);
iservo.attach(9);
}
void loop()
{
val = serial.parsefloat();
if (val > 0) {
iservo.write(val);
}
delay(15);
}
download! http://www.mediafire.com/download/3c6ozftsm2vrmnv/arduinoservocontrol.zip
thanks!
-colby newman (parzivail.tumblr.com)
screenshot:
how make interface ?. want try make own version of interface controlling servo motor. please me.
Arduino Forum > Using Arduino > Interfacing w/ Software on the Computer > Arduino Servo Control
arduino
Comments
Post a Comment