Skip to content

Ardunio Program for ESP8266-WeMos module + SSD1306 OLED Display + NeoPixel LED Strip

Notifications You must be signed in to change notification settings

setup74/tinystation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TinyStation

TinyStation - A Small Table Station Device for info communication

Prepare

Following files should be created for local sensitive info

_SiteConfig.h

// Wifi List
struct { char *ssid; char *pwd; } wifi[] = {
  { "your_ssid1", "your_pass_phrase1" },
  { "your_ssid2", "your_pass_phrase2" },
  ...
  { NULL, NULL }  // list end mark
};

// Wunderground Api
const boolean WUNDERGROUND_IS_METRIC = true;
const String WUNDERGROUND_API_KEY = "your api key";
const String WUNDERGROUND_LANGUAGE = "your lang";
const String WUNDERGROUND_COUNTRY = "your country";
const String WUNDERGROUND_CITY = "your city";

// MQTT Messaging
const char *mqttServer = "your mqtt server";
int mqttPort = 1883;
const char *mqttUser = "your mqtt client id";
const char *mqttPwd = "your mqtt client passwd";
const char *mqttTopic = "your mqtt topping for messages to this client";

About

Ardunio Program for ESP8266-WeMos module + SSD1306 OLED Display + NeoPixel LED Strip

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published