ASCOM Alpaca Client switch. Currently designed around a ESP8266 WIFI 16 Channel Relay Module ESP-12F board. AliExpress
- Clone the repository
- Make nessesary changes to configuration.hpp and arduino_secrets.h files.
- If you have Alpaca Discovery active the client should show up
Create a file called arduino_secrets.h
in the src
directory, add your SSID and Password. There's also an option to have a REDIS client configured.
#ifndef ARDUINO_SECRETS_H
#define ARDUINO_SECRETS_H
#define _SSID ""
#define _PASSWORD ""
#define _HOSTNAME ""
#define MQTT_HOST IPAddress(192, 168, 1, xxx)
#define MQTT_TOPIC "tcn/switch"
#define MQTT_PORT 1883
#define MQTT_USER "";
#define MQTT_PASS "";
#endif
Web UI