init test code

This commit is contained in:
Lurkars 2020-12-28 15:47:40 +01:00
parent 86c7ff41fd
commit fa0158d122
1 changed files with 14 additions and 0 deletions

14
led_bikewheel.ino Normal file
View File

@ -0,0 +1,14 @@
const int HALL_PIN = A0;
void setup() {
Serial.begin(9200);
pinMode(LED_BUILTIN, OUTPUT);
pinMode(HALL_PIN, INPUT);
}
void loop() {
int hall_value = analogRead(HALL_PIN);
Serial.println(hall_value);
// digitalWrite(LED_BUILTIN, hall_value);
delay(10); //debounce?
}