KO
|
EN
gitlite — search
Search
#mcp
#ai
#rust
#claude-code
#python
#typescript
#ai-agents
#cli
#developer-tools
#ai-agent
#cursor
#mcp-server
ESP8266-wifi-light-dimmer
★ 67
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
Notes
:
个人笔记
blog-source
:
The source of my blog.
Linux-F.A.Q
:
ЧаВо по Linux.
ansible-provisioning-tywin
:
Generate your Ansible provisioning for Symfony2, Laravel and Node.js projects
Citrix
:
All things Citrix
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ESP8266-wifi-light-dimmer
?
Download (.md)
# ESP8266-wifi-light-dimmer Wifi light dimmer based off of the inexpensive ESP8266 wifi modules. ### Circuit design ### I'm using a dimming circuit by [diy_bloke] (http://www.instructables.com/id/Arduino-controlled-light-dimmer-The-circuit/step1/Arduino-controlled-light-dimmer-The-PCB/).<br /> [Fritzing](http://fritzing.org/) schematics are under the schematics folder. ### Installing ### 1. Download [Arduino-compatible IDE with ESP8266 support] (https://github.com/esp8266/Arduino) 2. Load smartSwitch.ino sketch in Arduino IDE 3. Fill in SSID and password 4. Verify/adjust GPIO pins. 5. Flash sketch to ESP ### Control ### Browse to IP of ESP. Use GET variables to configure settings: - s = state (0 or 1) - b = brightness (0-255) - f = fade (0 or 1) ex1: View current settings (json): http://ip.of.esp/<br /> ex2: Set brightness to 50% and set state to on: http://ip.of.esp/?s=1&b=128<br /> ex3: Set brightness to 100% and enable fade: http://ip.of.esp/?b=255&f=1<br /> ex4: Toggle state (on->off or off->on): http://ip.of.esp/?s=t<br />