ESP8266 Controller WiFi Access Point

Sdílet
Vložit
  • čas přidán 7. 08. 2024

Komentáře • 21

  • @kevinbartolo780
    @kevinbartolo780 Před 2 lety +4

    Thank you, I have spent two days trying to learn how to do this and tried many different ways by other people. Thanks for making it simple.

  • @stephenjeanes161
    @stephenjeanes161 Před 2 lety +2

    I can see the esp8266 board on the iPhone and the galaxy A71, and I have the IP Address, yet neither will accept the Wi-Fi when selected. The iPhone says it is unsecured and the galaxy says couldn’t get IP Address.

  • @TheTubejunky
    @TheTubejunky Před 3 lety +1

    Nice now I can attach a relay board and use it as a remote on/off in the wild without home wifi location limitations. Thank You! very well explained sir!

    • @AnasKuzechie
      @AnasKuzechie  Před 3 lety +1

      Thanks for your feedback

    • @TheTubejunky
      @TheTubejunky Před 3 lety +2

      @@AnasKuzechie You're very welcome I also subscribed. Thanks again friend.

  • @MrChrisiscool15
    @MrChrisiscool15 Před 3 lety

    Great Video! Please dont hesitate to make more!

    • @AnasKuzechie
      @AnasKuzechie  Před 3 lety

      Thanks. I have more videos on ESP8266 and ESP32.

  • @girmayhadush8144
    @girmayhadush8144 Před 3 lety +2

    Would u like to give me a link to download the header files for the atduino library please

  • @CreativeHRM
    @CreativeHRM Před rokem

    hi i have controll with TCP please help

  • @mobileteknoway7045
    @mobileteknoway7045 Před 3 lety

    Hello my friend. I want to make an incubator with nodemcu. I want to use Nodemcu as acces point and see the data on my phone. I want to use 2 relays and adjust the temperature and humidity. 1. I want the relay to work when the temperature is below 37.5. 2. I want the relay to work when the humidity is below 55%. I want to use dht11 for temperature and humidity measurement. Can you help me with the code? I am a little newbie in this matter.

    • @AnasKuzechie
      @AnasKuzechie  Před 3 lety

      Hi, I have a lot of videos you can watch, where ESP8266 & ESP32 are used in web-based applications utilizing temperature & humidity sensors. All the codes are provided.

  • @aymericperronin4878
    @aymericperronin4878 Před rokem +1

    Hi,
    I don't understand because I've just copy and paste your code into my ESP8266 and my smartphone show me this message "Failed to get IP address" when I try to connect it.
    If someone have fixed this...

    • @elementalwattson
      @elementalwattson Před rokem

      after #include add these lines:
      #ifndef APSSID
      #define APSSID "ESPap" //Your name of the AP generated by the ESP8266
      #define APPSK "yourpassword" //The password to connect to the AP
      #endif
      const char* ssid = APSSID;
      const char* pwd = APPSK;
      ....
      ....
      Then on your "setup" function, you should add some lines that this youtuber missed, and it should see like this:
      void setup(){
      delay(1000);
      Serial.begin(115200);
      Serial.println("
      Setting AP...");
      IPAddress myIP = WiFi.softAPIP();
      server.on("/", handleRoot);
      server.begin();
      Serial.println("
      Wifi is ready!");
      }
      And the rest is the same code.

  • @technophile01
    @technophile01 Před 3 lety

    hi Mr Anas. reading the code is a little difficult on a smartphone ... if the writing was a little bigger it would be perfect 😀 thank you

    • @AnasKuzechie
      @AnasKuzechie  Před 3 lety

      Thank you for the feedback. This video was just an intro. In my other videos I use CSS with HTML to format the style of the webpage.

    • @technophile01
      @technophile01 Před 3 lety

      @@AnasKuzechie thank you and happy new year

    • @AnasKuzechie
      @AnasKuzechie  Před 3 lety

      Happy new year

  • @zaqwsx28
    @zaqwsx28 Před rokem

    Didn't work. Couldn't connect to ssid.

  • @jonathandugas5468
    @jonathandugas5468 Před 2 lety

    Thank you, the second code didnt worked for me but if i put a password and a put back the default ip it worked