Small edit to README.md
First commit
A telegram bot used for passing messages to code running on an esp32c3 devkit. The telegram bot will run on a raspberry pi (we will use x86 for testing); the esp32c3 board is attached to the same network over wifi.
The bot accepts two commands: "blink" and "stop". These commands are received by the esp32c3 board and used to control the blinking of the RGB LED present on the board.
How to run this code: clone this repo, edit this line in src/main.rs (if needed):
const LOCAL_ADDRESS: &str = "0.0.0.0:5678";
and run:
TELOXIDE_TOKEN=telegram-bot-token cargo run --release
telegram-bot-token is the token associated with the telegram bot that you get when the bot is created by telegram.