18 lines
		
	
	
		
			645 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			645 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
/* ESP 8266 environmental sensor FW
 | 
						|
 *  
 | 
						|
 * This header provides the necessary credentials for the esp_sensor_firmware.ino file.
 | 
						|
 * Before compilation, add your credentials and remove the .example postfix from the filename.
 | 
						|
 * ** WARNING ** DO NOT COMMIT YOUR mqtt_credentials.h FILE CONTAINING YOUR ACTUAL CREDENTIALS.
 | 
						|
 *  
 | 
						|
 *  (C) 2019 Macrocell - Environmental sensing solutions
 | 
						|
 *   proudly presented by Macrocell - FPGA Innovators
 | 
						|
 */
 | 
						|
 | 
						|
#define wifi_ssid "macrocell_iot"
 | 
						|
#define wifi_password "ExamplePassword"
 | 
						|
 | 
						|
#define mqtt_server "192.168.x.x"
 | 
						|
#define mqtt_port 1883
 | 
						|
#define mqtt_user "your_username"
 | 
						|
#define mqtt_password "your_password"
 |