-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperimento4.lua
50 lines (38 loc) · 981 Bytes
/
experimento4.lua
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
-- Experimento 3: Luz de emergencia
-- configurando o pino D1 para saída de dados.
pin = 1
gpio.mode(pin, gpio.OUTPUT)
-- função para acender o LED.
function acende()
gpio.write(pin, gpio.HIGH)
end
-- função para apagar o LED.
function apaga()
gpio.write(pin, gpio.LOW)
end
function envia_email()
local para = "andre@andregarzia.com"
local quando = tmr.now()
local url = "http://andregarzia.com/auxiliary/workshop/mailer.php?to=" .. para .. "&time=" .. quando
http.get(url, nil, function(code, data)
if (code < 0) then
print("HTTP request falhou")
else
print(code, data)
end
end)
end
function ativa_sensor()
local timer = tmr.create()
timer:register(1000, tmr.ALARM_AUTO, function(t)
local valor = adc.read(0)
print("luz: " .. valor)
if (valor < 700) then
acende()
envia_email()
else
apaga()
end
end)
timer:start()
end