вот код программы:
- Код: Выделить всё • Развернуть
#include <Servo.h>
Servo myservo;
Servo myserv2;
int pos = 0;
void setup() {
myservo.attach(9);
myserv2.attach(10);
Serial.begin(9600);
// initialize the LED pins:
for (int thisPin = 2; thisPin < 7; thisPin++) {
pinMode(thisPin, OUTPUT);
}
}
void loop() {
// read the sensor:
if (Serial.available() > 0) {
int inByte = Serial.read();
switch (inByte) {
case 'a':
myservo.write(150);
break;
case 'b':
myservo.write(90);
break;
case 'c':
myservo.write(40);
break;
case 'd':
digitalWrite(5, HIGH);
break;
case 'e':
digitalWrite(6, HIGH);
break;
default:
// turn all the LEDs off:
for (int thisPin = 2; thisPin < 7; thisPin++) {
digitalWrite(thisPin, LOW);
}
}
}
}