Difference between revisions of "Arduino 5 - jas LED"

From DT^2
Jump to: navigation, search
(Created page with "<syntaxhighlight lang="C++"> int jas; void setup() { pinMode(11, OUTPUT); Serial.begin(9600); jas = 255; } void loop() { if (Serial.available()) { char c = Ser...")
(No difference)

Revision as of 09:32, 29 July 2019

int jas;

void setup() {
  pinMode(11, OUTPUT);
  Serial.begin(9600);
  jas = 255;
}

void loop() {
  if (Serial.available())
  {
    char c = Serial.read();
    if (c == '+') 
       if (jas < 255) jas++;
    if (c == '-')
       if (jas > 0) jas--;
  }
  analogWrite(11, jas);   
  }
}