In this tutorial we will see how to make a system that allows us to turn on lights with telegram, from anywhere in the world, just by typing a command. To do this a dual channel relay module will turn on two 110V/220V bulbs, the esp32 will connect to our Wifi network and by means of commands, to control the on or off of lights. We will send messages through the telegram messaging service, where the bot will respond to us when the light is turned on or off and we will also be able to know the status of each of them.CircuitElectronic componentsCables dupontAn ESP32Features of the ESP32-T moduleConnectivityThe ESP32 module has all the wiFi variants:802.11 b/g/n/e/i/nWi-Fi Direct (P2P), P2P Discovery, P2P Group Owner mode and P2P Power ManagementThis new version includes low-power Bluethoot connectivityBluetooth v4.2 BR/EDR and BLEBLE BeaconIn addition, you can communicate using SPI, I2C, UART, MAC Ethernet, Host SD protocolsMicrocontroller featuresThe CPU consists of a Tensilica LX6 Model SoC with the following features and memoryDual 32-bit core with 160MHz speed448 kBytes ROM520kByteS SRAMHave 48 Pins18 12-bit ADC2 8-bit DAC10 pin contact sensors16 PWM20 Digital inputs/outputsPower and consumption modesFor proper operation of the ESP32 it is necessary to supply a voltage between 2.8V and 3.6V. The energy you consume depends on the mode of operation. It contains a mode, the Ultra Low Power Solution (ULP),in which basic tasks (ADC, PSTN…) continue to be performed in Sleep mode.Two spotlightsA pcbGerber fileGerber_PCB__ESP32Pines machoDual-channel relay moduleFeaturesCard with 2-5V and 2-channel relaysTical current: 4mAActivation current: 2mAWorking current: 65mAHigh Current Relay: AC250V 10A; DC30V 10A.Standard interface for microcontroller: Arduino, AVR, PIC, DSP, ARM, etc.PC817 on-board optocoupler with anti-jamming optical isolation capabilityIndependent contact wiring, safe and reliableWith screw holes for easy installationSize: 44.4×32.4mmPinoutInput Part:VCC: connect to positive power (depending on relay voltage range)GND: connect to negative powerIN1: channel trigger pin 1 relay module (high level trigger)IN2: channel trigger pin 2 relay module (high level trigger)Output Part:Normally open (NA): Normally open relay pin. NO pin is not connected to COM pin when relay is off. The pin does NOT connect to the COM pin when the relay is on.Pin común (COM): pin común del relé.Normally closed (NC): normally closed relay pin. The NC pin connects to the COM pin when the relay is off. The NC pin does not connect to the COM pin when the relay is on.A plinth for the esp32Source#include <WiFi.h>
#include <WiFiClientSecure.h>
#include <UniversalTelegramBot.h>
// Reemplazar con los datos de tu red wifi
#define WIFI_SSID "Tu_red_wifi"
#define WIFI_PASSWORD "Tu_clave"
//Token de Telegram BOT se obtenienen desde Botfather en telegram
#define BOT_TOKEN "Tu_token"
const unsigned long tiempo = 1000; //tiempo medio entre mensajes de escaneo
WiFiClientSecure secured_client;
UniversalTelegramBot bot(BOT_TOKEN, secured_client);
unsigned long tiempoAnterior; //última vez que se realizó el análisis de mensajes
const int led12 = 12;
const int led14 = 14;
int estadoLed12 = 0;
int estadoLed14 = 0;
int inicio = 1;
String chat_id;
#define ID_Chat "tu_id_chat"//ID_Chat se obtiene de telegram
void mensajesNuevos(int numerosMensajes)
{
for (int i = 0; i < numerosMensajes; i++)
{
String chat_id = bot.messages[i].chat_id;
String text = bot.messages[i].text;
//////////Luz 1 en el pin 12//////
if (text == "Luz1on")
{
digitalWrite(led12, LOW); //
estadoLed12 = 1;
bot.sendMessage(chat_id, "Luz 1 encendida", "");
}
if (text == "Luz1off")
{
estadoLed12 = 0;
digitalWrite(led12, HIGH); //
bot.sendMessage(chat_id, "Luz 1 apagada", "");
}
//////////Luz 2 en el pin 14//////
if (text == "Luz2on")
{
digitalWrite(led14, LOW);
estadoLed14 = 1;
bot.sendMessage(chat_id, "Luz 2 encendida", "");
}
if (text == "Luz2off")
{
estadoLed14 = 0;
digitalWrite(led14, HIGH);
bot.sendMessage(chat_id, "Luz 2 apagada", "");
}
////////Estado de las luces ///////
if (text == "Estado")
{
////Estado luz 1////
if (estadoLed12)
{
bot.sendMessage(chat_id, "Luz 1 encendida", "");
}
else
{
bot.sendMessage(chat_id, "Luz 1 apagada", "");
}
////Estado luz 2////
if (estadoLed14)
{
bot.sendMessage(chat_id, "Luz 2 encendida", "");
}
else
{
bot.sendMessage(chat_id, "Luz 2 apagada", "");
}
}
if (text == "Ayuda")
{
String ayuda = "Bienvenido al sistema de control luces con Esp32, " ".\n";
ayuda += "Estas son tus opciones.\n\n";
ayuda += "Luz1on: para encender la Luz 1 \n";
ayuda += "Luz1off: para apagar la luz 1 \n";
ayuda += "Luz2on: para encender la Luz 2 \n";
ayuda += "Luz2off: para apagar la luz 2 \n";
ayuda += "Estado : devuelve el estado actual de las luces\n";
ayuda += "Ayuda: Imprime este menú \n";
ayuda += "Recuerda el sistema distingue entre mayuculas y minusculas \n";
bot.sendMessage(chat_id, ayuda, "");
}
}
}
void setup()
{
Serial.begin(115200);
pinMode(led12, OUTPUT); //inicializar pin 12 digital como salida.
pinMode(led14, OUTPUT); //inicializar pin 14 digital como salida.
digitalWrite(led12, HIGH); //
digitalWrite(led14, HIGH);
// Intenta conectarse a la red wifi
Serial.print("Conectando a la red ");
Serial.print(WIFI_SSID);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
secured_client.setCACert(TELEGRAM_CERTIFICATE_ROOT); //Agregar certificado raíz para api.telegram.org
while (WiFi.status() != WL_CONNECTED)
{
Serial.print(".");
delay(500);
}
Serial.print("\nConectado a la red wifi. Dirección IP: ");
Serial.println(WiFi.localIP());
if(inicio == 1){
Serial.println("Sistema preparado");
bot.sendMessage(ID_Chat, "Sistema preparado!!!, escribe Ayuda para ver las opciones", "");//Enviamos un mensaje a telegram para informar que el sistema está listo
inicio = 0;
}
}
void loop()
{
//Verifica si hay datos nuevos en telegram cada 1 segundo
if (millis() - tiempoAnterior > tiempo)
{
int numerosMensajes = bot.getUpdates(bot.last_message_received + 1);
while (numerosMensajes)
{
Serial.println("Comando recibido");
mensajesNuevos(numerosMensajes);
numerosMensajes = bot.getUpdates(bot.last_message_received + 1);
}
tiempoAnterior = millis();
}
}
Download Library –> Universal-Arduino-Telegram-Bot-masterCreate Bot on TelegramIn telegram we look for BotFatherWe write /start and something similar to this will appear to usWrite /newbotI will see the name of the bot, and we invent a name for our bot, it must be in the format ?usuario_bot?We’ll get a token that we’re going to use in the source codeNow we’ll look for IDBot, and we’ll start itWe write /getid and it will give us user_id that we should place in the source code