-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h
25 lines (21 loc) · 920 Bytes
/
config.h
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
/*******************wifi*********************/
//char ssid[] = ""; // your network SSID (name)
//char pass[] = ""; // your network password (use for WPA, or use as key for WEP)
char ssid[] = ""; // your network SSID (name)
char pass[] = ""; // your network password (use for WPA, or use as key for WEP)
int keyIndex = 0; // your network key Index number (needed only for WEP)
/************************* Adafruit.io Setup *********************************/
#define AIO_SERVER "io.adafruit.com"
#define AIO_SERVERPORT 1883
//#define AIO_USERNAME ""
//#define AIO_KEY "" //currrent?
#define AIO_USERNAME ""
#define AIO_KEY ""
//define pins for lighting status LEDs
//int ledPin0 = 14; //wired power to bb. Any need for this one now?
int ledPin1 = 42;
int ledPin2 = 38;
int ledPin3 = 36;
int ledPin4 = 24;
//define pin for sounding buzzer
int buzzerPin = 48;