-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathZaparooEsp32.hpp
42 lines (30 loc) · 1.22 KB
/
ZaparooEsp32.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef ZAPAROO_ESP32_H
#define ZAPAROO_ESP32_H
//Reguired Configuration-------------------------------------------------
//The SS/SDA and Reset pins of the MFRC522
#define SS_PIN 5
#define RST_PIN 26
//Wifi and zaparoo information
const char* ssid = "NetworkName";
const char* password = "Password";
const String zaparooUrl = "ws://mister.local:7497";
//Uncomment if serial only, wifi credentials will not be used
//#define SERIAL_ONLY
//-----------------------------------------------------------------------
//Optional Configurations------------------------------------------------
//Uncomment if using a vibration motor for haptic feedback
//#define MOTOR_PIN 25
//Uncomment if using a led to display wifi status
//#define WIFI_LED_PIN 4
//Uncomment if using a led to display launch status
//#define LAUNCH_LED_PIN 33
//Uncomment if using a led to display power indicator
//#define EXTERNAL_POWER_LED 22
//Uncomment if using a I2S module to produce audio
//#define I2S_DOUT 26
//#define I2S_BCLK 17
//#define I2S_LRC 21
//#define AUDIO_GAIN 1 //Value 0.1 - 4
//const char* launchAudio = "/gbc-startup.mp3";
//-----------------------------------------------------------------------
#endif