Skip to content

Commit ad258ad

Browse files
committed
Fix naming, first version of PID simulator
1 parent b321f40 commit ad258ad

28 files changed

+856
-62
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,8 @@ static/.bundle/
1515
static/vendor/
1616

1717
# Ruby gems
18-
gems/
18+
gems/
19+
20+
# Claude
21+
CLAUDE.md
22+
agents/*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Flash pre-built firmware directly from your browser at **[fancontroller.arthofer
8585
Reliable flashing method, especially for ESP32-S2 boards:
8686

8787
1. Install [esptool](https://github.com/espressif/esptool): `pip install esptool`
88-
2. Download prebuilt binary from [fancontroller.arthofer.dev/firmware](https://fancontroller.arthofer.dev/firmware/)
88+
2. Download prebuilt binary from [GitHub Releases](https://github.com/zeroflow/wifi-fancontroller/releases/)
8989
3. Connect board via USB-C, hold BOOT button, press RESET
9090
4. Flash: `esptool.py --chip esp32s2 write_flash 0x0 firmware.bin`
9191
5. Press RESET to boot

README_LOCAL_DEV.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Local Development Setup
22

3-
This document describes how to run the ESPHome Fancontroller website locally for development.
3+
This document describes how to run the WiFi Fancontroller website locally for development.
44

55
## Option 1: Docker (Recommended)
66

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ESPHome Fan Controller - Example Configurations
1+
# WiFi Fan Controller - Example Configurations
22

33
This directory contains example configurations showing how to use the hardware packages.
44

fancontroller-rev1.0-esp32.factory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ESPHome Fan Controller - Revision 1.0 (ESP32) - Factory Configuration
1+
# WiFi Fan Controller - Revision 1.0 (ESP32) - Factory Configuration
22
# This configuration is used for initial device provisioning and flashing.
33
#
44
# It includes additional features for first-time setup:

fancontroller-rev1.0-esp32.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ESPHome Fan Controller - Revision 1.0 (ESP32)
1+
# WiFi Fan Controller - Revision 1.0 (ESP32)
22
# Base configuration file for production use
33
#
44
# This file contains the core ESPHome configuration and includes

fancontroller-rev2.0-esp32s2.factory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ESPHome Fan Controller - Revision 2.0 (ESP32-S2) - Factory Configuration
1+
# WiFi Fan Controller - Revision 2.0 (ESP32-S2) - Factory Configuration
22
# This configuration is used for initial device provisioning and flashing.
33
#
44
# It includes additional features for first-time setup:

fancontroller-rev2.0-esp32s2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ESPHome Fan Controller - Revision 2.0 (ESP32-S2)
1+
# WiFi Fan Controller - Revision 2.0 (ESP32-S2)
22
# Base configuration file for production use
33
#
44
# This file contains the core ESPHome configuration and includes

fancontroller-rev3.0-esp32s2.factory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ESPHome Fan Controller - Revision 3.0 (ESP32-S2) - Factory Configuration
1+
# WiFi Fan Controller - Revision 3.0 (ESP32-S2) - Factory Configuration
22
# This configuration is used for initial device provisioning and flashing.
33
#
44
# It includes additional features for first-time setup:

fancontroller-rev3.0-esp32s2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ESPHome Fan Controller - Revision 3.0 (ESP32-S2)
1+
# WiFi Fan Controller - Revision 3.0 (ESP32-S2)
22
# Base configuration file for production use
33
#
44
# This file contains the core ESPHome configuration and includes

0 commit comments

Comments
 (0)