mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-03 14:24:15 +01:00
14 lines
185 B
Plaintext
14 lines
185 B
Plaintext
|
|
||
|
void setup() {
|
||
|
pinMode(6, OUTPUT);
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
int sensorValue = analogRead(2);
|
||
|
int ledFadeValue = map(sensorValue, 0, 1023, 0, 255);
|
||
|
analogWrite(6, ledFadeValue);
|
||
|
}
|
||
|
|
||
|
|
||
|
|