blinkrgb.159 / blinkrgb.159.ino
antitheft159's picture
Upload blinkrgb.159.ino
af2b674 verified
raw
history blame contribute delete
338 Bytes
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);
}