Fix debug script and component
This commit is contained in:
parent
9d0545aa4f
commit
6582154ec6
|
@ -1,6 +1,6 @@
|
||||||
#include <Servo.h>
|
#include <Servo.h>
|
||||||
|
|
||||||
boolean debug_state = true;
|
boolean debug_state = false;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
----------------------------------------------------
|
----------------------------------------------------
|
||||||
|
@ -21,7 +21,7 @@ as servos for development
|
||||||
* ------------------------------------------------*/
|
* ------------------------------------------------*/
|
||||||
//Arduino Duemilanove +
|
//Arduino Duemilanove +
|
||||||
//Arduino Uno
|
//Arduino Uno
|
||||||
const int PIN_SERVO = 9;
|
const int PIN_SERVO = 6;
|
||||||
|
|
||||||
volatile boolean running = false;
|
volatile boolean running = false;
|
||||||
volatile boolean cap_state = false;
|
volatile boolean cap_state = false;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include <Servo.h>
|
#include <Servo.h>
|
||||||
|
|
||||||
const int PIN_SERVO = 9;
|
const int PIN_SERVO = 6;
|
||||||
Servo servo;
|
Servo servo;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -25,7 +25,10 @@ void setup() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
|
delay(1000);
|
||||||
|
servo.write(153);
|
||||||
|
delay(1000);
|
||||||
|
servo.write(93);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Servo_init () {
|
void Servo_init () {
|
||||||
|
|
Loading…
Reference in New Issue