Created
April 3, 2016 18:53
-
-
Save beriberikix/25938fd55b970c497c60473fa12bbe61 to your computer and use it in GitHub Desktop.
Convenient way to manage settings in the firebase-arduino examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef _SETTINGS_H_ | |
#define _SETTINGS_H_ | |
// Wifi | |
#define SSID "your-network-name" | |
#define PASS "your-network-password" | |
// Firebase | |
#define FIREBASE_HOST "your-firebase-name.firebaseio.com" | |
#define FIREBASE_SECRET "###secret###" | |
#endif /* _SETTINGS_H_ */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment