first commit

This commit is contained in:
Haldrup-tech 2024-08-20 09:30:53 -04:00
commit a03573562f
2 changed files with 17 additions and 0 deletions

17
Arduino/test/test.ino Normal file
View File

@ -0,0 +1,17 @@
int potPin = A5;
int potValue = 0;
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
Serial.begin(9600);
}
void loop() {
potValue = analogRead(potPin);
Serial.print("Pot is at: ");
Serial.println(potValue);
delay(100);
}

0
README.md Normal file
View File