/*
 * terraview firmware config — copy this to `config.h` and fill in your own
 * values. config.h is yours and should never be committed or shared: it holds
 * your WiFi password and the Worker's ingest token in plaintext.
 *
 * The last two come from your own deploy of the api/ Worker (wrangler).
 */
#pragma once

#define WIFI_SSID      "your-wifi-name"
#define WIFI_PASS      "your-wifi-password"

// Your deployed Worker, NO trailing slash, e.g. https://terraview-api.<sub>.workers.dev
#define WORKER_URL     "https://terraview-api.example.workers.dev"
// The secret you set with:  wrangler secret put INGEST_TOKEN
#define INGEST_TOKEN   "paste-your-ingest-token-here"

// Minutes of deep sleep between frames. 15 -> 96 frames/day.
#define SLEEP_MINUTES  15

// KY-015 (DHT11) signal pin
#define DHT_GPIO       13
