1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
-
-
- #ifndef __CONFIG_H__
- #define __CONFIG_H__
-
- #define WEB_PORT 80
- #define BROADCAST_PORT 2390
- #define WEBSOCKET_PORT 2391
- #define NTP_PORT_FROM 2392
- #define NTP_PORT_TO 123
-
-
- #define DEFAULT_SSID "ESP-Weather"
- #define DEFAULT_PASS "testtest"
-
- #define MAX_BROADCAST_WAIT_TIME 550
- #define NTP_RETRY_TIMEOUT 2500
- #define NTP_SERVER_NAME "time.nist.gov"
- #define NTP_PACKET_SIZE 48
- #define UDP_PACKET_BUFFER_SIZE 25
- #define DEBUG_BAUDRATE 115200
-
-
-
- #define EEPROM_SIZE 512
-
-
- #define UDP_PING_CONTENTS "pingESP8266v0.1"
- #define UDP_ECHO_CONTENTS "echoESP8266v0.1"
-
- #endif
|