Comments on: MicroPython: ESP32/ESP8266 Relay Module Web Server (AC Appliances) https://randomnerdtutorials.com/micropython-relay-web-server-esp32-esp8266/ Learn ESP8266, ESP32, Arduino, and Raspberry Pi Thu, 29 Dec 2022 09:05:16 +0000 hourly 1 https://wordpress.org/?v=6.8.2 By: shekinah https://randomnerdtutorials.com/micropython-relay-web-server-esp32-esp8266/#comment-806329 Thu, 29 Dec 2022 09:05:16 +0000 https://randomnerdtutorials.com/?p=96491#comment-806329 Hello, I am stuck and I need help
I am trying to add to the html code another check box but I am having an error and I don’t understand what it means
added code:

Type Error:
format string needs more arguments

]]>
By: Simon https://randomnerdtutorials.com/micropython-relay-web-server-esp32-esp8266/#comment-800293 Wed, 30 Nov 2022 18:09:08 +0000 https://randomnerdtutorials.com/?p=96491#comment-800293 When I push EN button, in terminal (console) display that.
<<
ets Jun 8 2016 00:22:57

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:4540
ho 0 tail 12 room 4
load:0x40078000,len:12344
ho 0 tail 12 room 4
load:0x40080400,len:4124
entry 0x40080680

>
pdt: Im on thonny IDE

]]>
By: James https://randomnerdtutorials.com/micropython-relay-web-server-esp32-esp8266/#comment-613201 Tue, 25 May 2021 02:21:15 +0000 https://randomnerdtutorials.com/?p=96491#comment-613201 Can it also control sensors? Like activating and deactivating the DHT11.

]]>
By: Sara Santos https://randomnerdtutorials.com/micropython-relay-web-server-esp32-esp8266/#comment-462940 Wed, 03 Jun 2020 11:31:49 +0000 https://randomnerdtutorials.com/?p=96491#comment-462940 In reply to Mauricio Pareja.

Hi.
You probably didn’t upload the boot.py where we import the libraries.
Regards,
Sara

]]>
By: Mauricio Pareja https://randomnerdtutorials.com/micropython-relay-web-server-esp32-esp8266/#comment-462677 Tue, 02 Jun 2020 15:50:20 +0000 https://randomnerdtutorials.com/?p=96491#comment-462677 In reply to Mauricio Pareja.

Is Working

thanks

Mauricio

]]>
By: Mauricio Pareja https://randomnerdtutorials.com/micropython-relay-web-server-esp32-esp8266/#comment-462653 Tue, 02 Jun 2020 14:38:10 +0000 https://randomnerdtutorials.com/?p=96491#comment-462653 Hello

I try this tutorial but have problem
Traceback (most recent call last):
File “main.py”, line 19, in
NameError: name ‘socket’ isn’t defined

MicroPython v1.12 on 2019-12-20; ESP module with ESP8266
Type “help()” for more information.

is the same in your code:

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((”, 80))
s.listen(5)

]]>