much happenings in this fucked up world
This commit is contained in:
parent
29fc81ef37
commit
2f6d3b7b5b
55 changed files with 1067 additions and 52 deletions
18
Arduino Firmware/ServoWorker/ServoWorker.ino
Normal file
18
Arduino Firmware/ServoWorker/ServoWorker.ino
Normal file
|
@ -0,0 +1,18 @@
|
|||
// tp1sm
|
||||
|
||||
#include <Servo.h>
|
||||
|
||||
Servo servoChannel;
|
||||
|
||||
void setup()
|
||||
{
|
||||
servoChannel.attach(2);
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
servoChannel.write(0);
|
||||
delay(1000);
|
||||
servoChannel.write(180);
|
||||
delay(1000);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue