Project-bestanden van TI - Game Controller gekopieerd

This commit is contained in:
HBO-ICT Bot
2023-11-21 12:51:19 +01:00
commit e53d9d5bca
28 changed files with 1726 additions and 0 deletions

0
arduino/.gitkeep Normal file
View File

View File

@@ -0,0 +1,16 @@
/*
* Description: This is a basic sketch about blinking an LED on your ESP32.
* Author: Mats Otten
* Date: 5 september 2023
*/
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}