How To Create A Playing Card Flipping Clock Based On ESP32

How To Create A Playing Card Flipping Clock Based On ESP32

▲ For more exciting content, please click on the blue text above and follow us! A deck of idle playing cards and a 3D printed stand can create a creative playing card clock. I used playing cards as the clock’s flaps and made an interesting and crazy clock with minimal parts. The most challenging part … Read more

ESP32 WiFi Penetration Testing Tool Tutorial

ESP32 WiFi Penetration Testing Tool Tutorial

DJI drones, Fluke multimeters, Xiaomi phones, Huawei watches, and more await you! 👆 The breadboard community DIY event is ongoing! (1) Introduction Recently, while learning about the ESP32, I came across a project on GitHub called the ESP32 Wi-Fi Penetration Tool. This tool reminded me of the WiFi killer I used to play with on … Read more

Wireless Control of ESP32CAM via Mobile App (UDP Communication)

Wireless Control of ESP32CAM via Mobile App (UDP Communication)

The mobile app acts as the master, while the ESP32CAM serves as the slave. The mobile app receives image data uploaded by the ESP32CAM and sends control commands to the ESP32CAM. 01 — ESP32CAM Program Design The development environment for the ESP32CAM program is Arduino, and the steps to be completed are as follows. 1. … Read more

WiFi Smart Socket with Magnetic Latching Relay

WiFi Smart Socket with Magnetic Latching Relay

Project Name: WiFi Smart Socket with Magnetic Latching Relay Author: oldfox126 Introduction Yesterday’s article did not get much increase in views, but there was a lot of interaction in the comments section. I saw the enthusiasm of my true fans (freeloaders), so I decided to add more content today on the weekend. Despite being affected … Read more

Install OpenWrt on Raspberry Pi 4B for Portable WiFi Router

Install OpenWrt on Raspberry Pi 4B for Portable WiFi Router

As a programmer, I often need to search for information on Google, but the local magic internet tool has many drawbacks. For example, it requires a separate export of the proxy in the Mac terminal, and a separate configuration of the system proxy in the virtual machine. When I enable the magic internet tool on … Read more

How to Resolve the Small Globe Icon Issue on WiFi?

How to Resolve the Small Globe Icon Issue on WiFi?

Resolving the issue of the small globe icon appearing on the WiFi card can sometimes be quite simple, give it a try! var __INLINE_SCRIPT__ = (function () { 'use strict'; function _arrayLikeToArray$1(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i … Read more

How to Build W55RP20-EVB-Pico on Arduino

How to Build W55RP20-EVB-Pico on Arduino

How to Build W55RP20-EVB-Pico on Arduino Components Hardware Components WIZnet – W55RP20-EVB-Pico Software Applications and Online Services Arduino – Arduino IDE Project Description This guide provides instructions on how to build W55RP20-EVB-Pico on Arduino. The version of Arduino used is 1.8.19, which can be downloaded from the link below.https://www.arduino.cc/en/software Additionally, this article is based on … Read more

Configuring IPv6 NAT6 for Guest WiFi Network in OpenWRT

Configuring IPv6 NAT6 for Guest WiFi Network in OpenWRT

First, add the WiFi guest network through the web interface or by modifying the configuration. The wireless interface added through the MTK management interface must be added to the bridge: 12345678910111213141516171819 config globals 'globals' option ula_prefix 'xxxx:xxxx:xxxx::/48' config interface 'guest' option proto 'static' option ipaddr '10.0.100.1' option netmask '255.255.255.0' option device 'br-guest' option ip6assign '64' … Read more