Added Secrets

This commit is contained in:
Stedd 2023-10-22 13:27:38 +02:00
parent a0ec9092b0
commit e9e6e910e4
3 changed files with 4 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"