Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * IRremoteESP8266: IRServer - demonstrates sending IR codes controlled from a webserver
- * Copyright 2015 Mark Szabo
- * Copyright 2019 David Conran
- * https://github.com/tzapu/WiFiManager added by Kris Occhipinti for easy of use 2022
- *
- * An IR LED circuit *MUST* be connected to the ESP on a pin
- * as specified by kIrLed below.
- *
- * TL;DR: The IR LED needs to be driven by a transistor for a good result.
- *
- * Suggested circuit:
- * https://github.com/crankyoldgit/IRremoteESP8266/wiki#ir-sending
- *
- * Common mistakes & tips:
- * * Don't just connect the IR LED directly to the pin, it won't
- * have enough current to drive the IR LED effectively.
- * * Make sure you have the IR LED polarity correct.
- * See: https://learn.sparkfun.com/tutorials/polarity/diode-and-led-polarity
- * * Typical digital camera/phones can be used to see if the IR LED is flashed.
- * Replace the IR LED with a normal LED if you don't have a digital camera
- * when debugging.
- * * Avoid using the following pins unless you really know what you are doing:
- * * Pin 0/D3: Can interfere with the boot/program mode & support circuits.
- * * Pin 1/TX/TXD0: Any serial transmissions from the ESP8266 will interfere.
- * * Pin 3/RX/RXD0: Any serial transmissions to the ESP8266 will interfere.
- * * ESP-01 modules are tricky. We suggest you use a module with more GPIOs
- * for your first time. e.g. ESP-12 etc.
- */
- #include <Arduino.h>
- #if defined(ESP8266)
- #include <ESP8266WebServer.h>
- #include <ESP8266mDNS.h>
- #endif // ESP8266
- #if defined(ESP32)
- #include <WiFi.h>
- #include <WebServer.h>
- #include <ESPmDNS.h>
- #endif // ESP32
- #include <IRremoteESP8266.h>
- #include <IRsend.h>
- #include <WiFiManager.h> // https://github.com/tzapu/WiFiManager
- #include <WiFiClient.h>
- MDNSResponder mdns;
- #if defined(ESP8266)
- ESP8266WebServer server(80);
- #undef HOSTNAME
- #define HOSTNAME "esp8266"
- #endif // ESP8266
- #if defined(ESP32)
- WebServer server(80);
- #undef HOSTNAME
- #define HOSTNAME "esp32"
- #endif // ESP32
- const uint16_t kIrLed = 4; // ESP GPIO pin to use. Recommended: 4 (D2).
- IRsend irsend(kIrLed); // Set the GPIO to be used to sending the message.
- void handleRoot() {
- server.send(200, "text/html",
- "<html>" \
- "<head><title>" HOSTNAME " Demo </title>" \
- "<meta http-equiv=\"Content-Type\" " \
- "content=\"text/html;charset=utf-8\">" \
- "<meta name=\"viewport\" content=\"width=device-width," \
- "initial-scale=1.0,minimum-scale=1.0," \
- "maximum-scale=5.0\">" \
- "</head>" \
- "<body>" \
- "<h1>Hello from " HOSTNAME ", you can send NEC encoded IR" \
- "signals from here!</h1>" \
- "<p><a href=\"ir?code=16769055\">Send 0xFFE01F</a></p>" \
- "<p><a href=\"ir?code=16429347\">Send 0xFAB123</a></p>" \
- "<p><a href=\"ir?code=16771222\">Send 0xFFE896</a></p>" \
- "</body>" \
- "</html>");
- }
- void handleIr() {
- for (uint8_t i = 0; i < server.args(); i++) {
- if (server.argName(i) == "code") {
- uint32_t code = strtoul(server.arg(i).c_str(), NULL, 10);
- #if SEND_NEC
- irsend.sendNEC(code, 32);
- #endif // SEND_NEC
- }
- }
- handleRoot();
- }
- void handleNotFound() {
- String message = "File Not Found\n\n";
- message += "URI: ";
- message += server.uri();
- message += "\nMethod: ";
- message += (server.method() == HTTP_GET)?"GET":"POST";
- message += "\nArguments: ";
- message += server.args();
- message += "\n";
- for (uint8_t i = 0; i < server.args(); i++)
- message += " " + server.argName(i) + ": " + server.arg(i) + "\n";
- server.send(404, "text/plain", message);
- }
- void setup(void) {
- irsend.begin();
- WiFi.mode(WIFI_STA); // explicitly set mode, esp defaults to STA+AP
- // it is a good practice to make sure your code sets wifi mode how you want it.
- // put your setup code here, to run once:
- Serial.begin(115200);
- //WiFiManager, Local intialization. Once its business is done, there is no need to keep it around
- WiFiManager wm;
- // reset settings - wipe stored credentials for testing
- // these are stored by the esp library
- //wm.resetSettings();
- // Automatically connect using saved credentials,
- // if connection fails, it starts an access point with the specified name ( "AutoConnectAP"),
- // if empty will auto generate SSID, if password is blank it will be anonymous AP (wm.autoConnect())
- // then goes into a blocking loop awaiting configuration and will return success result
- bool res;
- // res = wm.autoConnect(); // auto generated AP name from chipid
- res = wm.autoConnect("ESP_IR_Transmitter"); // anonymous ap
- //res = wm.autoConnect("AutoConnectAP","password"); // password protected ap
- if(!res) {
- Serial.println("Failed to connect");
- // ESP.restart();
- }
- else {
- //if you get here you have connected to the WiFi
- Serial.println("connected...yeey :)");
- }
- #if defined(ESP8266)
- if (mdns.begin(HOSTNAME, WiFi.localIP())) {
- #else // ESP8266
- if (mdns.begin(HOSTNAME)) {
- #endif // ESP8266
- Serial.println("MDNS responder started");
- // Announce http tcp service on port 80
- mdns.addService("http", "tcp", 80);
- }
- server.on("/", handleRoot);
- server.on("/ir", handleIr);
- server.on("/inline", [](){
- server.send(200, "text/plain", "this works as well");
- });
- server.onNotFound(handleNotFound);
- server.begin();
- Serial.println("HTTP server started");
- }
- void loop(void) {
- #if defined(ESP8266)
- mdns.update();
- #endif
- server.handleClient();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement