Compare commits

..

3 Commits

Author SHA1 Message Date
Stedd 871f1937a2 Moved data 2023-10-22 13:28:57 +02:00
Stedd 22363ea4e3 Added sketch project file 2023-10-22 13:28:28 +02:00
Stedd e9e6e910e4 Added Secrets 2023-10-22 13:27:38 +02:00
5 changed files with 17 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
arduino_secrets.h

View File

@ -3,6 +3,7 @@
#include <Wire.h>
#include <MatrixMath.h>
#include <Ps3Controller.h>
#include "arduino_secrets.h"
//Declare library objects
GY_85 IMU;

View File

@ -1,5 +1,5 @@
const char* ssid = "CaveBot";
const char* password = "&nHM%D2!$]Qg[VUv";
const char* ssid = SECRET_SSID;
const char* password = SECRET_PASSWORD;
#include "WiFi.h"
#include "AsyncUDP.h"

13
sketch.yaml Normal file
View File

@ -0,0 +1,13 @@
profiles:
Esp32BalanceBot:
fqbn: arduino:esp32:esp32:firebeetle32
platforms:
- platform: arduino:esp32 (1.0.4)
platform_index_url: https://dl.espressif.com/dl/package_esp32_index.json
libraries:
- GY85 (1.0)
- Wire (1.0.1)
- MatrixMath (1.0)
- PS3 Controller Host (1.1.0)
- WiFi (1.0)
- ESP32 Async UDP (1.0.0)