資料介紹
描述
嘿極客,希望你做得很好。在本文中,我們將制作一個非常有趣的項目,即使用電報機器人進行自動化。在這個項目中,我們將在電報機器人的幫助下控制三個 LED。除了 LED,您還可以根據需要連接其他設備。您可以在我們的網站上閱讀全文。
什么是電報機器人
在開始之前,請在您的智能手機上下載電報應用程序并在其上注冊一個帳戶。然后去搜索欄搜索botfather并打開帶有藍色勾號的帳戶。
現在單擊開始啟動機器人,您會找到一個菜單。
然后單擊新機器人以創建一個新項目。
現在它會要求您提供一個合適的用戶名,然后為您想要制作的機器人提供一個唯一的名稱。對于用戶名,最后使用 _bot,如下所示。在此之后,您將獲得一個必須復制的唯一令牌 ID。然后將此ID粘貼到代碼中。然后打開你的機器人。
打開類型 start 后,它會回復你的消息,如下圖所示。現在根據您的需要在應用程序上發送命令,例如開/關燈,LED 根據您的操作打開和關閉。請參閱下面給出的屏幕截圖。
當您鍵入RED LIGHT ON時,紅色 LED 將亮起,如下所示。
當您鍵入GREEN LIGHT ON時,綠色 LED 將亮起。
如果您鍵入WHITE LIGHT ON ,白色 LED 將亮起。
所需組件
電報機器人自動化電路圖
電報機器人代碼
注意:請將下面給出的代碼上傳到 NodeMCU。
//Techatronic.com
#include "CTBot.h"
CTBot myBot;
String ssid = "xxxxxxxxxxxx"; // REPLACE SSID WITH YOUR WIFI SSID
String pass = "xxxxxxxxxxxx"; // REPLACE Password YOUR WIFI PASSWORD, IF ANY
String token = "---------------------------------------------------"; // REPLACE Token WITH YOUR TELEGRAM BOT TOKEN
uint8_t greenled = 5;
uint8_t redled = 4;
uint8_t whiteled = 12;
void setup() {
// initialize the Serial
Serial.begin(115200);
Serial.println("Starting TelegramBot...");
// connect the ESP8266 to the desired access point
myBot.wifiConnect(ssid, pass);
// set the telegram bot token
myBot.setTelegramToken(token);
// check if all things are ok
if (myBot.testConnection())
Serial.println("\ntestConnection OK");
else
Serial.println("\ntestConnection NOK");
// set the pin connected to the LED to act as output pin
pinMode(redled, OUTPUT);
digitalWrite(redled, LOW);
pinMode(greenled, OUTPUT);
digitalWrite(greenled, LOW);
pinMode(whiteled, OUTPUT);
digitalWrite(whiteled, LOW);
}
void loop() {
// a variable to store telegram message data
TBMessage msg;
// if there is an incoming message...
if (myBot.getNewMessage(msg)) {
if (msg.text.equalsIgnoreCase("RED LIGHT ON")) { // if the received message is "LIGHT ON"...
digitalWrite(redled, HIGH); // turn on the LED
myBot.sendMessage(msg.sender.id, "RED Light is now ON"); // notify the sender
}
else if (msg.text.equalsIgnoreCase("RED LIGHT OFF")) { // if the received message is "LIGHT OFF"...
digitalWrite(redled, LOW); // turn off the led
myBot.sendMessage(msg.sender.id, "RED Light is now OFF"); // notify the sender
}
else if (msg.text.equalsIgnoreCase("GREEN LIGHT ON")){
digitalWrite(greenled, HIGH); // turn on the LED
myBot.sendMessage(msg.sender.id, "GREEN Light is now ON"); // notify the sender
}
else if (msg.text.equalsIgnoreCase("GREEN LIGHT OFF")){
digitalWrite(greenled, LOW); // turn off the led
myBot.sendMessage(msg.sender.id, "GREEN Light is now OFF"); // notify the sender
}
else if (msg.text.equalsIgnoreCase("White LIGHT ON")){
digitalWrite(whiteled, HIGH); // turn on the LED
myBot.sendMessage(msg.sender.id, "WHITE Light is now ON"); // notify the sender
}
else if (msg.text.equalsIgnoreCase("WHITE LIGHT OFF")){
digitalWrite(whiteled, LOW); // turn off the led
myBot.sendMessage(msg.sender.id, "WHITE Light is now OFF"); // notify the sender
}
else { // otherwise...
// generate the message for the sender
String reply;
reply = (String)"Welcome " + msg.sender.username + (String)". Try LIGHT ON or LIGHT OFF.";
myBot.sendMessage(msg.sender.id, reply); // and send it
}
}
// wait 500 milliseconds
delay(500);
}
我們希望您喜歡這個項目。此外,請查看我們網站上有關 Arduino和Raspberry Pi的教程。
學習愉快!
- 節日花環自動化開源項目
- 樹莓派家庭自動化開源
- Arduino迷你電報機
- 溫室自動化開源硬件
- 基于ESP8266的電報機器人 0次下載
- 家庭自動化開源案例
- 照明自動化開源分享
- 濾光輪自動化開源項目
- 帶有ESP8266的電報機器人
- 植物澆水自動化開源分享
- 自動刷牙機器人開源分享
- ESP32家庭自動化開源分享
- 家庭自動化開源分享
- PCB家庭自動化開源分享
- 機器人自動化開展應用資料包 0次下載
- 自動化焊接機器人:引領制造業未來的高效工具 334次閱讀
- 工業機器人、PLC與自動化之間的關系 716次閱讀
- PLC與機器人之間如何通訊 1888次閱讀
- 如何使用PLC控制機器人 794次閱讀
- 運動控制和機器人系統有什么區別 330次閱讀
- 聯網自動駕駛機器人的網絡安全 281次閱讀
- 真空潔凈機器人 6179次閱讀
- 四軸機器人和六軸機器人有什么區別? 2.9w次閱讀
- 機器人自動導航的超聲波傳感器介紹 3185次閱讀
- 工業機器人、PLC與自動化三者之間有什么關系? 1.7w次閱讀
- 大族Star機器人用于工業自動化的特點及優勢介紹 2887次閱讀
- 如何制作一個簡易有線電報機? 5.2w次閱讀
- 機器人自動噴涂系統淺談 1.7w次閱讀
- 機器人自動化工程項目方案設計包括的6個步驟解析 1.2w次閱讀
- 智能救援機器人的設計解析 3294次閱讀
下載排行
本周
- 1山景DSP芯片AP8248A2數據手冊
- 1.06 MB | 532次下載 | 免費
- 2RK3399完整板原理圖(支持平板,盒子VR)
- 3.28 MB | 339次下載 | 免費
- 3TC358743XBG評估板參考手冊
- 1.36 MB | 330次下載 | 免費
- 4DFM軟件使用教程
- 0.84 MB | 295次下載 | 免費
- 5元宇宙深度解析—未來的未來-風口還是泡沫
- 6.40 MB | 227次下載 | 免費
- 6迪文DGUS開發指南
- 31.67 MB | 194次下載 | 免費
- 7元宇宙底層硬件系列報告
- 13.42 MB | 182次下載 | 免費
- 8FP5207XR-G1中文應用手冊
- 1.09 MB | 178次下載 | 免費
本月
- 1OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234315次下載 | 免費
- 2555集成電路應用800例(新編版)
- 0.00 MB | 33566次下載 | 免費
- 3接口電路圖大全
- 未知 | 30323次下載 | 免費
- 4開關電源設計實例指南
- 未知 | 21549次下載 | 免費
- 5電氣工程師手冊免費下載(新編第二版pdf電子書)
- 0.00 MB | 15349次下載 | 免費
- 6數字電路基礎pdf(下載)
- 未知 | 13750次下載 | 免費
- 7電子制作實例集錦 下載
- 未知 | 8113次下載 | 免費
- 8《LED驅動電路設計》 溫德爾著
- 0.00 MB | 6656次下載 | 免費
總榜
- 1matlab軟件下載入口
- 未知 | 935054次下載 | 免費
- 2protel99se軟件下載(可英文版轉中文版)
- 78.1 MB | 537798次下載 | 免費
- 3MATLAB 7.1 下載 (含軟件介紹)
- 未知 | 420027次下載 | 免費
- 4OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234315次下載 | 免費
- 5Altium DXP2002下載入口
- 未知 | 233046次下載 | 免費
- 6電路仿真軟件multisim 10.0免費下載
- 340992 | 191187次下載 | 免費
- 7十天學會AVR單片機與C語言視頻教程 下載
- 158M | 183279次下載 | 免費
- 8proe5.0野火版下載(中文版免費下載)
- 未知 | 138040次下載 | 免費
評論
查看更多