This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <WiFi.h> | |
#include <HTTPClient.h> | |
//-------- User Settings ----------- | |
const char* ssid = "WiFi NAME"; | |
const char* password = "WiFi PASSWORD"; | |
const char* accesskey = "ENTER ACCESS KEY HERE"; | |
const char* bucketkey = "ENTER BUCKET KEY HERE"; | |
//---------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <WiFi.h> | |
#include <HTTPClient.h> | |
//-------- User Settings ----------- | |
const char* ssid = "WiFi NAME"; | |
const char* password = "WiFi PASSWORD"; | |
const char* accesskey = "ENTER ACCESS KEY HERE"; | |
const char* bucketkey = "ENTER BUCKET KEY HERE"; | |
const char* signalname = "ENTER SIGNAL NAME"; | |
//---------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##### | |
# This is a custom 'getting started' script, made with care for [email protected]. | |
# If you have any questions, please email us! [email protected] | |
##### | |
# Import the ISStreamer module | |
from ISStreamer.Streamer import Streamer | |
# Import time for delays | |
import time |
OlderNewer