Aquarium Cooling Controller
ESP32 firmware for aquarium cooling fan control, monitoring, telemetry, and fault handling.
Loading...
Searching...
No Matches
firmware
controller
network_config.local.example.h
Go to the documentation of this file.
1
#pragma once
2
8
// Copy this file to network_config.local.h and fill in local credentials.
9
// network_config.local.h is ignored by Git and must not be committed.
10
11
#undef AQ_WIFI_SSID
12
#define AQ_WIFI_SSID "your-wifi-ssid"
13
14
#undef AQ_WIFI_PASSWORD
15
#define AQ_WIFI_PASSWORD "your-wifi-password"
16
17
#undef AQ_MQTT_HOST
18
#define AQ_MQTT_HOST "192.168.1.10"
19
20
#undef AQ_MQTT_PORT
21
#define AQ_MQTT_PORT 1883
22
23
#undef AQ_MQTT_USERNAME
24
#define AQ_MQTT_USERNAME ""
25
26
#undef AQ_MQTT_PASSWORD
27
#define AQ_MQTT_PASSWORD ""
28
29
#undef AQ_MQTT_ROOT_TOPIC
30
#define AQ_MQTT_ROOT_TOPIC "aquarium/cooling"
Generated by
1.9.8