File size: 338 Bytes
af2b674 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
int redPin=9;
int greenPin=10;
int bluePin=11;
int br=115200;
void setup() {
// put your setup code here, to run once:
Serial.begin(br);
pinMode(redPin,OUTPUT);
pinMode(greenPin,OUTPUT);
pinMode(bluePin,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(bluePin,HIGH);
}
|