-
Notifications
You must be signed in to change notification settings - Fork 1
/
ESP8266-1W-I2C-Gateway.ino
34 lines (24 loc) · 1.18 KB
/
ESP8266-1W-I2C-Gateway.ino
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
/******************************************************************************
ProjectName: ESP8266-1W-I2C-Gateway ***** *****
SubTitle : 1W/I²C -> MQTT bridge * * ************
* ** ** * *
Copyright by Pf@nne * * * * * **** *
* * * * * * *
Last modification by: * * * * **** *
- Pf@nne ([email protected]) * * ***** *
* * * *******
Date : 13.11.2016 ***** * *
Version : alpha 0.312 * *
Revison : *****
********************************************************************************/
#include "ESP8266_Basic.h"
ESP8266_Basic espClient;
void setup() {
Serial.begin(115200);
Serial.println("");
espClient.start_WiFi_connections();
}
void loop() {
espClient.handle_connections();
espClient.handle_Measurement();
}