Lichtsensor/Fotowiderstand mit dem Arduino programmieren: Unterschied zwischen den Versionen
(Die Seite wurde neu angelegt: „800px“) |
(→Lichtsensor aufgebaut im Video) |
||
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
[[image:lichtsensor.png|800px]] | [[image:lichtsensor.png|800px]] | ||
+ | |||
+ | = Lichtsensor aufgebaut im Video = | ||
+ | {{#ev:youtube|https://youtu.be/Wwo9ZRmaonI|800}} | ||
+ | |||
+ | == Der Code dazu == | ||
+ | <pre> | ||
+ | void setup() { | ||
+ | // put your setup code here, to run once: | ||
+ | pinMode(A1, INPUT); | ||
+ | pinMode(7, OUTPUT); | ||
+ | digitalWrite(7, LOW); | ||
+ | Serial.begin(9600); | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | // put your main code here, to run repeatedly: | ||
+ | Serial.println(analogRead(A1)); | ||
+ | |||
+ | if (analogRead(A1) <300) { | ||
+ | digitalWrite(7, HIGH); | ||
+ | } else { | ||
+ | digitalWrite(7, LOW); | ||
+ | } | ||
+ | delay(500); | ||
+ | } | ||
+ | </pre> |
Aktuelle Version vom 24. August 2020, 14:05 Uhr
Lichtsensor aufgebaut im Video
Der Code dazu
void setup() { // put your setup code here, to run once: pinMode(A1, INPUT); pinMode(7, OUTPUT); digitalWrite(7, LOW); Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: Serial.println(analogRead(A1)); if (analogRead(A1) <300) { digitalWrite(7, HIGH); } else { digitalWrite(7, LOW); } delay(500); }