arduino-0017-linux-x64
This commit is contained in:
parent
ed785c5798
commit
ddf58ffb08
436 changed files with 62981 additions and 0 deletions
|
@ -0,0 +1,13 @@
|
|||
|
||||
void setup() {
|
||||
pinMode(6, OUTPUT);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
int sensorValue = analogRead(2);
|
||||
int ledFadeValue = map(sensorValue, 0, 1023, 0, 255);
|
||||
analogWrite(6, ledFadeValue);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in a new issue