Comments for Microcontrollers Lab https://microcontrollerslab.com/ Microcontrollers tutorials and projects Wed, 10 Dec 2025 19:37:32 +0000 hourly 1 https://wordpress.org/?v=6.9.4 Comment on Raspberry Pi Pico W Soft Access Point Web Server Example by Karan https://microcontrollerslab.com/raspberry-pi-pico-w-soft-access-point-web-server-example/#comment-417168 Wed, 10 Dec 2025 19:37:32 +0000 https://microcontrollerslab.com/?p=37046#comment-417168 You would need to pass headers in the html for it to work on modern browsers.

For example,

html = “””HTTP/1.0 200 OK\r\nContent-type: text/html\r\n\r\n

Pico W – Hello World!

“””

]]>
Comment on Analog to Digital Converter – How ADC Works and Types? by Tolera Seda https://microcontrollerslab.com/analog-to-digital-adc-converter-working/#comment-416978 Mon, 08 Dec 2025 08:03:23 +0000 http://microcontrollerslab.com/?p=2431#comment-416978 The provision is very good and it is easy to use> Thank you

]]>
Comment on MB102 Breadboard Power Supply module – How to use it by John Sheard https://microcontrollerslab.com/mb102-breadboard-power-supply-module-pinout-and-how-to-use-it/#comment-416423 Sat, 29 Nov 2025 23:11:57 +0000 http://microcontrollerslab.com/?p=21175#comment-416423 I found this document. very useful and comprehensive. Thank you

]]>
Comment on MOC3041 Zero Crossing Optocoupler Pinout and Examples by Wilson Nogueira https://microcontrollerslab.com/moc3041-optocoupler-pinout-examples-applications-datasheet/#comment-416405 Sat, 29 Nov 2025 17:55:49 +0000 http://microcontrollerslab.com/?p=13176#comment-416405 How can one get a 10 nano farad (0.01 micro farad) electrolytic capacitor? There isn’t such a thing in the consumer market. You can get polyester or ceramic capacitors for this value of capacitance.

]]>
Comment on ESP8266 NodeMCU WebSocket Server using Arduino IDE and LittleFS – Control GPIOs by Алексей https://microcontrollerslab.com/esp8266-nodemcu-websocket-server-arduino-littlefs/#comment-416022 Mon, 24 Nov 2025 15:45:57 +0000 http://microcontrollerslab.com/?p=23445#comment-416022 String processor(const String &var) {
//Serial.println(var);
if (var == “STATE”) {
if (GPIO_State) {
return “ON”;
} else {
return “OFF”;
}
}
}
Compilation error: control reaches end of non-void function [-Werror=return-type]

]]>