// Copy this file into your sketch folder as config.h, then fill in your own values. // config.h is the only file holding your credentials. Never commit it. // When you are done, search this file for "[" — no placeholder should remain. #pragma once // Leave these four as they are. The programme network is open, so the password is empty. const char* SPINE_WIFI_SSID = "panoulu"; const char* SPINE_WIFI_PASSWORD = ""; const char* SPINE_MQTT_HOST = "gardenspine.ikapo.fi"; const int SPINE_MQTT_PORT = 8883; // From your credential slip. The MQTT username is the same as the device ID. const char* SPINE_DEVICE_ID = "gm-01"; const char* SPINE_MQTT_USERNAME = "gm-01"; const char* SPINE_MQTT_PASSWORD = "[DEVICE_PASSWORD]"; // From your charter page. These must match the registry exactly. const char* SPINE_ZONE = "greenhouse-1"; const char* SPINE_DEVICE_TYPE = "climate-node"; // Your own version string. Bump it so you can tell which build is running. const char* SPINE_FIRMWARE_VERSION = "0.1.0";