Last active
August 29, 2015 14:24
-
-
Save compilerexe/8c5f71d1a5fd836c46df to your computer and use it in GitHub Desktop.
This file contains 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
#define DEBUG_MODE | |
#include <ESP8266WiFi.h> | |
#include <ArduinoJson.h> | |
#include <MqttWrapper.h> | |
#include <PubSubClient.h> | |
const char* ssid = "CMMC.47"; | |
const char* pass = "guestnetwork"; | |
float W3S=0; | |
int swt=1; | |
MqttWrapper *mqtt; | |
void connect_wifi() | |
{ | |
WiFi.begin(ssid, pass); | |
int retries = 0; | |
while ((WiFi.status() != WL_CONNECTED)) | |
{ | |
Serial.print("."); | |
retries++; | |
delay(500); | |
} | |
Serial.println("WIFI CONNECTED "); | |
} | |
void reconnect_wifi_if_link_down() { | |
if (WiFi.status() != WL_CONNECTED) { | |
DEBUG_PRINTLN("WIFI DISCONNECTED"); | |
connect_wifi(); | |
} | |
} | |
void callback(const MQTT::Publish& pub) { | |
if (pub.payload_string() == "1") { | |
Serial.print(" => "); | |
Serial.println(pub.payload_string()); | |
digitalWrite(14, HIGH); | |
swt=1; | |
} | |
else if(pub.payload_string() == "0") { | |
Serial.print(" => "); | |
Serial.println(pub.payload_string()); | |
digitalWrite(14, LOW); | |
swt=0; | |
W3S=0; | |
} | |
else { | |
Serial.print(pub.topic()); | |
Serial.print(" => "); | |
Serial.println(pub.payload_string()); | |
} | |
} | |
void hook_prepare_data(JsonObject** root) { | |
JsonObject& data = (*(*root))["d"]; | |
Watts(); | |
data["myName"] = "TONG_Watts"; | |
data["W"] = W3S;; | |
} | |
void setup() { | |
Serial.begin(115200); | |
pinMode(0, INPUT_PULLUP); | |
pinMode(14, OUTPUT); | |
delay(10); | |
Serial.println(); | |
Serial.println(); | |
connect_wifi(); | |
mqtt = new MqttWrapper("128.199.104.122"); | |
mqtt->connect(callback); | |
mqtt->set_prepare_data_hook(hook_prepare_data); | |
} | |
void Watts (){ | |
double sum; | |
for(int i=0;i<500;i++){ | |
int sensorValue = analogRead(A0)-555; | |
if(sensorValue<0) | |
sensorValue=-sensorValue; | |
sum=sum+sensorValue; | |
} | |
sum=(sum/500)-4; | |
Serial.println(sum); | |
sum=sum*0.031*220; | |
if(swt==1){ | |
sum=sum/(3600/3); | |
W3S=W3S+sum; | |
} | |
} | |
void loop() { | |
reconnect_wifi_if_link_down(); | |
mqtt->loop(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment