Skip to content

Instantly share code, notes, and snippets.

@sjcox
Created April 15, 2018 13:48
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save sjcox/687a830dfb7e43526a2071b726c1c152 to your computer and use it in GitHub Desktop.
const String CHANNEL_ID = "XXXXXXXXXXXX"; // The Readiness.io channel ID
const String SENSOR_ID = "XXXXXXXXXXXXX"; // Your AgriWebb or made up sensor ID
const String TOPIC = "XXXXXXX"; // The type of sensor or name of the data your sending
const String VERSION = "1";
const String FORMAT = ""; // leave this blank unless there is a specific readiness format you need.
// i.e. agriwebb
const char* WIFI_SSID = "XXXXXXX"; // Your WiFi SSID / name
const char* WIFI_PASS = "XXXXXXX"; // Your WiFi password
const uint16_t UPDATE_RATE = 30; // How long to wait between sending data back (in seconds)
const uint8_t TIMEZONE_OFFSET = 10; // The timezone the sensor is located in (eg. 10 for GMT)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment