ESP32 Microcontroller Connecting to Hotspot Network Example & Hotspot & Web Security Verification

ESP32 Microcontroller Connecting to Hotspot Network Example & Hotspot & Web Security Verification

#include <WiFi.h>#include <WebServer.h> const char* ssid_ap = "ESP32 Hotspot"; // Name of the ESP32 hotspot const char* password_ap = "abcd12345"; // Hotspot password String ssid_target = ""; // Target WiFi SSID String password_target = ""; // Target WiFi password // Create Web Server instance WebServer server(80); // Web server listens on port 80 // HTML … Read more

How to Build a Personal Web Server with Raspberry Pi

How to Build a Personal Web Server with Raspberry Pi

A personal web server is like a “cloud” that you own and control, rather than a large corporation. Having your own cloud has many benefits, including customization, free storage, free internet services, access to open-source software, high security, complete control over your content, the ability to change quickly, and a place to experiment with code. … Read more

Master Brother Weekly (Issue 27): Raspberry Pi Android System, ESP32, MicroPython, Web Server, Low-Power Bluetooth, Color Screen Image and Text Display

Master Brother Weekly (Issue 27): Raspberry Pi Android System, ESP32, MicroPython, Web Server, Low-Power Bluetooth, Color Screen Image and Text Display

NO.1 This Issue Content Bilibili Video Download Tool ESP32, MicroPython, web server, low-power Bluetooth, color screen image and text display Raspberry Pi Android System NO.2 downkyi GitHub address: https://github.com/leiurayer/downkyi Bilibili website video download tool, supports batch download, supports 8K, HDR, Dolby Vision, provides toolbox (audio and video extraction, watermark removal, etc.) I tried it, the … Read more

Powerful ESP32-CAM Web Server: A Comprehensive Guide

Powerful ESP32-CAM Web Server: A Comprehensive Guide

Introduction ESP32-CAM-WebServer is an extended version of the ESP32 camera firmware, providing users with the ability to easily control and configure the ESP32 camera through a web interface. This firmware is based on the popular ESP32-CAM camera and adds many new features and improvements, making it a versatile and user-friendly solution. Installation and Configuration The … Read more

Remote Control LED Lights with Arduino UNO R4 WiFi

Remote Control LED Lights with Arduino UNO R4 WiFi

Arduino UNO R4 WiFi (hereinafter referred to as UNO R4 WiFi) has updated its WiFi functionality, using the ESP32-S3 WiFi module for this upgrade. This module, launched by Espressif Systems, is a WiFi and Bluetooth module that enables remote control and monitoring of devices and data exchange with other devices. Next, let’s implement the updated … Read more