Skip to content

Commit a044890

Browse files
committed
Rename to correctly respect esphome branding
1 parent 5584dab commit a044890

37 files changed

+64
-64
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ This works by adding the following lines to your esphome config:
103103
```yaml
104104
# Import the hardware package for your board revision
105105
packages:
106-
fancontroller: github://zeroflow/esphome-fancontroller/hardware-rev-3.3.yaml@main
106+
fancontroller: github://zeroflow/wifi-fancontroller/hardware-rev-3.3.yaml@main
107107
```
108108
109109
#### Example Configuration
@@ -113,7 +113,7 @@ Here's a complete example showing how to create a custom configuration using the
113113
```yaml
114114
# Import the hardware package for your board revision
115115
packages:
116-
fancontroller: github://zeroflow/esphome-fancontroller/hardware-rev-3.3.yaml@main
116+
fancontroller: github://zeroflow/wifi-fancontroller/hardware-rev-3.3.yaml@main
117117

118118
esphome:
119119
name: my-fancontroller
@@ -184,7 +184,7 @@ Visual feedback module that updates each fan's RGB LED based on its RPM reading.
184184
```yaml
185185
packages:
186186
rpm_status_leds:
187-
url: https://github.com/zeroflow/esphome-fancontroller
187+
url: https://github.com/zeroflow/wifi-fancontroller
188188
files:
189189
- path: modules/rpm_status_leds.yaml
190190
vars:
@@ -215,7 +215,7 @@ Simple linear fan control based on temperature. Creates a temperature curve with
215215
```yaml
216216
packages:
217217
temperature_linear:
218-
url: https://github.com/zeroflow/esphome-fancontroller
218+
url: https://github.com/zeroflow/wifi-fancontroller
219219
files:
220220
- path: modules/temperature_linear.yaml
221221
vars:
@@ -255,7 +255,7 @@ Shoutout to [patrickcollins12/esphome-fan-controller](https://github.com/patrick
255255
```yaml
256256
packages:
257257
temperature_pid:
258-
url: https://github.com/zeroflow/esphome-fancontroller
258+
url: https://github.com/zeroflow/wifi-fancontroller
259259
files:
260260
- path: modules/temperature_pid.yaml
261261
vars:
@@ -296,11 +296,11 @@ PI (Proportional-Integral) controller that regulates PWM output to achieve and m
296296
```yaml
297297
packages:
298298
hardware:
299-
url: https://github.com/zeroflow/esphome-fancontroller
299+
url: https://github.com/zeroflow/wifi-fancontroller
300300
files: [hardware-rev-3.1.yaml]
301301
ref: main
302302
rpm_pi_control:
303-
url: https://github.com/zeroflow/esphome-fancontroller
303+
url: https://github.com/zeroflow/wifi-fancontroller
304304
files: [modules/rpm_pi_control.yaml]
305305
ref: main
306306
vars:
@@ -375,7 +375,7 @@ These values have been measured via a DPS3005 power supply, therefore, their acc
375375

376376
**Troubleshooting Discovery Issues**: If your board doesn't appear in ESPHome after connecting to WiFi, check for mDNS issues on your network. You can work around this by manually specifying the board's IP address using the [manual_ip](https://esphome.io/components/wifi.html) configuration in your WiFi settings.
377377

378-
**Need Help?** Open an issue on [GitHub](https://github.com/zeroflow/esphome-fancontroller/issues) or consult the ESPHome documentation.
378+
**Need Help?** Open an issue on [GitHub](https://github.com/zeroflow/wifi-fancontroller/issues) or consult the ESPHome documentation.
379379

380380
---
381381

@@ -390,4 +390,4 @@ These values have been measured via a DPS3005 power supply, therefore, their acc
390390

391391
## Contributing
392392

393-
Found a bug or have a feature request? Open an issue or submit a pull request on [GitHub](https://github.com/zeroflow/esphome-fancontroller).
393+
Found a bug or have a feature request? Open an issue or submit a pull request on [GitHub](https://github.com/zeroflow/wifi-fancontroller).

examples/basic-rev-1.0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
packages:
77
# Include the hardware-specific configuration
8-
hardware: github://zeroflow/esphome-fancontroller/hardware-rev-1.0.yaml@main
8+
hardware: github://zeroflow/wifi-fancontroller/hardware-rev-1.0.yaml@main
99

1010
esphome:
1111
name: my-fancontroller

examples/basic-rev-2.0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
packages:
77
# Include the hardware-specific configuration
8-
hardware: github://zeroflow/esphome-fancontroller/hardware-rev-2.0.yaml@main
8+
hardware: github://zeroflow/wifi-fancontroller/hardware-rev-2.0.yaml@main
99

1010
esphome:
1111
name: my-fancontroller

examples/basic-rev-3.0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
packages:
77
# Include the hardware-specific configuration
8-
hardware: github://zeroflow/esphome-fancontroller/hardware-rev-3.0.yaml@main
8+
hardware: github://zeroflow/wifi-fancontroller/hardware-rev-3.0.yaml@main
99

1010
esphome:
1111
name: my-fancontroller

examples/basic-rev-3.1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
packages:
77
# Include the hardware-specific configuration
8-
hardware: github://zeroflow/esphome-fancontroller/hardware-rev-3.1.yaml@main
8+
hardware: github://zeroflow/wifi-fancontroller/hardware-rev-3.1.yaml@main
99

1010
esphome:
1111
name: my-fancontroller

examples/with-rpm-pi-control-rev-3.1.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@
1010

1111
packages:
1212
hardware:
13-
url: https://github.com/zeroflow/esphome-fancontroller
13+
url: https://github.com/zeroflow/wifi-fancontroller
1414
files: [hardware-rev-3.1.yaml]
1515
ref: main
1616
rpm_pi_control:
17-
url: https://github.com/zeroflow/esphome-fancontroller
17+
url: https://github.com/zeroflow/wifi-fancontroller
1818
files: [modules/rpm_pi_control.yaml]
1919
ref: main
2020
vars:
2121
kp: "50" # Scaled by 100000, actual: 0.0005
2222
ki: "10" # Scaled by 100000, actual: 0.0001
2323
rpm_status_leds:
24-
url: https://github.com/zeroflow/esphome-fancontroller
24+
url: https://github.com/zeroflow/wifi-fancontroller
2525
files: [modules/rpm_status_leds.yaml]
2626
ref: main
2727

fancontroller-rev1.0-esp32.factory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ esphome:
2121
# This should point to the public location of the yaml file that will be adopted
2222
# After adoption, the device uses the core yaml without the factory-specific features
2323
dashboard_import:
24-
package_import_url: github://zeroflow/esphome-fancontroller/fancontroller-rev1.0-esp32.yaml@main
24+
package_import_url: github://zeroflow/wifi-fancontroller/fancontroller-rev1.0-esp32.yaml@main
2525

2626
# Sets up Bluetooth LE (Only on ESP32) to allow the user
2727
# to provision wifi credentials to the device.

fancontroller-rev1.0-esp32.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
packages:
88
# Include hardware-specific configuration
9-
hardware: github://zeroflow/esphome-fancontroller/hardware-rev-1.0.yaml@main
9+
hardware: github://zeroflow/wifi-fancontroller/hardware-rev-1.0.yaml@main
1010

1111
esphome:
1212
name: fancontroller-r1-0

fancontroller-rev2.0-esp32s2.factory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ esphome:
2020
# This should point to the public location of the yaml file that will be adopted
2121
# After adoption, the device uses the core yaml without the factory-specific features
2222
dashboard_import:
23-
package_import_url: github://zeroflow/esphome-fancontroller/fancontroller-rev2.0-esp32s2.yaml@main
23+
package_import_url: github://zeroflow/wifi-fancontroller/fancontroller-rev2.0-esp32s2.yaml@main
2424

2525
# Sets up the improv via serial client for Wi-Fi provisioning
2626
# Note: ESP32-S2 does not support Bluetooth LE provisioning (esp32_improv)

fancontroller-rev2.0-esp32s2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
packages:
88
# Include hardware-specific configuration
9-
hardware: github://zeroflow/esphome-fancontroller/hardware-rev-2.0.yaml@main
9+
hardware: github://zeroflow/wifi-fancontroller/hardware-rev-2.0.yaml@main
1010

1111
esphome:
1212
name: fancontroller-r2-0

0 commit comments

Comments
 (0)