|
|
|
@ -1,24 +1,76 @@
|
|
|
|
|
DHT = require("dht_lib")
|
|
|
|
|
|
|
|
|
|
dht_data = 2
|
|
|
|
|
buzzer = 1
|
|
|
|
|
gpio.mode(buzzer, gpio.OUTPUT)
|
|
|
|
|
trig = 5 --IO14
|
|
|
|
|
echo = 7 --IO13
|
|
|
|
|
relay = 0 --IO16
|
|
|
|
|
is_relay_on = false
|
|
|
|
|
pulse_time = 0
|
|
|
|
|
water_level = 0
|
|
|
|
|
relay_on = 10
|
|
|
|
|
relay_off = 100
|
|
|
|
|
tank_height = 120
|
|
|
|
|
client_connected = false
|
|
|
|
|
|
|
|
|
|
m = mqtt.Client("ESP8266-" .. node.chipid(), 120, "${DEVICE_TOKEN}", "")
|
|
|
|
|
|
|
|
|
|
tmr.alarm(0, 10000, 1, function()
|
|
|
|
|
DHT.read(dht_data)
|
|
|
|
|
function save_config()
|
|
|
|
|
file.open("config", "w+")
|
|
|
|
|
file.writeline(relay_on .. "," .. relay_off .. "," .. tank_height)
|
|
|
|
|
file.close()
|
|
|
|
|
print("Configs saved")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function read_config()
|
|
|
|
|
if (file.open("config") ~= nil) then
|
|
|
|
|
local result = string.sub(file.readline(), 1, -2) -- to remove newline character
|
|
|
|
|
file.close()
|
|
|
|
|
local v1, v2, v3 = result:match("([^,]+),([^,]+)")
|
|
|
|
|
relay_on = tonumber(v1)
|
|
|
|
|
relay_off = tonumber(v2)
|
|
|
|
|
tank_height = tonumber(v3)
|
|
|
|
|
print("Loaded configs:" .. relay_on .. "," .. relay_off .. "," .. tank_height)
|
|
|
|
|
else
|
|
|
|
|
print("Using default configs")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
gpio.mode(relay, gpio.OUTPUT)
|
|
|
|
|
gpio.mode(trig, gpio.OUTPUT)
|
|
|
|
|
gpio.mode(echo, gpio.INT)
|
|
|
|
|
|
|
|
|
|
local t = DHT.getTemperature()
|
|
|
|
|
local h = DHT.getHumidity()
|
|
|
|
|
read_config()
|
|
|
|
|
|
|
|
|
|
gpio.trig(echo, "both", function(level)
|
|
|
|
|
local du = tmr.now() - pulse_time
|
|
|
|
|
if (level == 1) then
|
|
|
|
|
pulse_time = tmr.now()
|
|
|
|
|
else
|
|
|
|
|
-- 1cm ==> 40
|
|
|
|
|
water_level = tank_height - (du / 40);
|
|
|
|
|
if (water_level < relay_on) then
|
|
|
|
|
gpio.write(relay, gpio.HIGH)
|
|
|
|
|
is_relay_on = true
|
|
|
|
|
elseif (water_level > relay_off) then
|
|
|
|
|
gpio.write(relay, gpio.LOW)
|
|
|
|
|
is_relay_on = false
|
|
|
|
|
end
|
|
|
|
|
print("Water Level: " .. water_level .. " cm")
|
|
|
|
|
collectgarbage()
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
tmr.alarm(0, 5000, 1, function()
|
|
|
|
|
gpio.write(trig, gpio.HIGH)
|
|
|
|
|
tmr.delay(10)
|
|
|
|
|
gpio.write(trig, gpio.LOW)
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
tmr.alarm(0, 10000, 1, function()
|
|
|
|
|
if t == nil then
|
|
|
|
|
print("Error reading from DHTxx")
|
|
|
|
|
else
|
|
|
|
|
if (client_connected) then
|
|
|
|
|
local payload = "{event:{metaData:{owner:\"${DEVICE_OWNER}\",deviceId:\"${DEVICE_ID}\"},payloadData:{temperature:" .. t .. ", humidity:" .. h .. "}}}"
|
|
|
|
|
local payload = "{event:{metaData:{owner:\"${DEVICE_OWNER}\",deviceId:\"${DEVICE_ID}\"},payloadData:{relay:" .. is_relay_on .. ", waterlevel:" .. water_level .. "}}}"
|
|
|
|
|
m:publish("carbon.super/watertank/${DEVICE_ID}/data", payload, 0, 0, function(client)
|
|
|
|
|
print("Published> Temperature: " .. t .. "C Humidity: " .. h .. "%")
|
|
|
|
|
print("Published> Water Level: " .. water_level .. "cm Relay: " .. is_relay_on .. "%")
|
|
|
|
|
end)
|
|
|
|
|
else
|
|
|
|
|
connectMQTTClient()
|
|
|
|
@ -39,7 +91,6 @@ function connectMQTTClient()
|
|
|
|
|
subscribeToMQTTQueue()
|
|
|
|
|
end)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function subscribeToMQTTQueue()
|
|
|
|
@ -49,28 +100,15 @@ end)
|
|
|
|
|
m: on("message", function(client, topic, message)
|
|
|
|
|
print("MQTT message received")
|
|
|
|
|
print(message)
|
|
|
|
|
buzz(message == "on")
|
|
|
|
|
local v1, v2, v3 = message: match("([^,]+),([^,]+)")
|
|
|
|
|
relay_on = tonumber(v1)
|
|
|
|
|
relay_off = tonumber(v2)
|
|
|
|
|
tank_height = tonumber(v3)
|
|
|
|
|
print("Received configs:".. relay_on.. ",".. relay_off.. ",".. tank_height)
|
|
|
|
|
save_config();
|
|
|
|
|
end)
|
|
|
|
|
m: on("offline", function(client)
|
|
|
|
|
print("Disconnected")
|
|
|
|
|
client_connected = false
|
|
|
|
|
end)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function buzz(status)
|
|
|
|
|
local buzzerOn = true
|
|
|
|
|
if(status) then
|
|
|
|
|
tmr. alarm(1, 500, 1, function()
|
|
|
|
|
if buzzerOn then
|
|
|
|
|
buzzerOn = false
|
|
|
|
|
gpio. write(buzzer, gpio. HIGH)
|
|
|
|
|
else
|
|
|
|
|
buzzerOn = true
|
|
|
|
|
gpio. write(buzzer, gpio. LOW)
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
else
|
|
|
|
|
tmr. stop(1)
|
|
|
|
|
gpio. write(buzzer, gpio. LOW)
|
|
|
|
|
end
|
|
|
|
|
end
|