-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutomatON.ino
105 lines (90 loc) · 3.15 KB
/
AutomatON.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
AutomatON - Sistema Embarcado para Monitoramento e Acionamento de Cargas Via Chatbot (Telegram)
Autor: Alexandre Florenço
*/
#include "CTBot.h"
CTBot bot;
//Parâmetros para conexão com wifi e Telegram
String wifi = "SEU SSID AQUI";
String senha = "SUA SENHA AQUI";
String token = "SEU TOKEN AQUI";
//Pinos
uint8_t rele = 25;
uint8_t ledConexao = 13;
uint8_t ledComando = 12;
uint8_t sensor = 36;
float valorSensor;
void setup(){
Serial.begin(115200);
Serial.println("INICIANDO AUTOMATON...");
pinMode(sensor, INPUT);
pinMode(rele, OUTPUT);
pinMode(ledConexao, OUTPUT);
pinMode(ledComando, OUTPUT);
//Conexão com wifi e Telegram
bot.wifiConnect(wifi, senha);
bot.setTelegramToken(token);
if (bot.testConnection()){
Serial.println("\nCONEXÃO BEM-SUCEDIDA");
digitalWrite(ledConexao, HIGH);
}
else
Serial.println("\nFALHA NA CONEXÃO");
}
void loop(){
TBMessage msg;
String usuario;
valorSensor = analogRead(sensor);
if (bot.getNewMessage(msg)){
usuario = msg.sender.username;
Serial.println(usuario + ": " + msg.text);
if (msg.sender.id != SEU ID AQUI){
bot.sendMessage(msg.sender.id, "Acesso negado");
}
else {
if (msg.text.equalsIgnoreCase("/start")){
bot.sendMessage(msg.sender.id, "Olá, " + msg.sender.username + "!");
bot.sendMessage(msg.sender.id, "Ligue ou desligue o seu computador remotamente.\n\nUtilize os comandos:\n\t\t\t\t\tStatus\n\t\t\t\t\tLigar\n\t\t\t\t\tDesligar\n\t\t\t\t\tDesligamento forçado");
}
else if (msg.text.equalsIgnoreCase("Status")){
if (valorSensor != 0){
Serial.println(valorSensor);
bot.sendMessage(msg.sender.id, "O computador está ligado");
}
else if (valorSensor == 0){
Serial.println(valorSensor);
bot.sendMessage(msg.sender.id, "O computador está desligado");
}
}
else if (msg.text.equalsIgnoreCase("Ligar")){
bot.sendMessage(msg.sender.id, "Ligando computador...");
digitalWrite(rele, HIGH);
digitalWrite(ledComando, HIGH);
delay(500);
digitalWrite(rele, LOW);
digitalWrite(ledComando, LOW);
}
else if (msg.text.equalsIgnoreCase("Desligar")){
bot.sendMessage(msg.sender.id, "Desligando computador...");
digitalWrite(rele, HIGH);
digitalWrite(ledComando, HIGH);
delay(500);
digitalWrite(rele, LOW);
digitalWrite(ledComando, LOW);
}
else if (msg.text.equalsIgnoreCase("Desligamento foru00e7ado")){
bot.sendMessage(msg.sender.id, "Desligando computador...");
digitalWrite(rele, HIGH);
digitalWrite(ledComando, HIGH);
delay(7000);
digitalWrite(rele, LOW);
digitalWrite(ledComando, LOW);
}
else{
bot.sendMessage(msg.sender.id, "Comando inválido");
bot.sendMessage(msg.sender.id, "Utilize os comandos:\n\t\t\t\t\tLigar\n\t\t\t\t\tDesligar\n\t\t\t\t\tDesligamento forçado");
}
}
}
delay(500);
}