/tempboard

Check the temperature of your room with a modern and minimal Dashboard

Primary LanguageJavaScript

TempBoard

Check the temperature of your room with a modern and minimal Dashboard

tempboard

Installation

$ git clone https://github.com/nicolocarcagni/tempboard
  • Install the necessary packages
$ cd tempboard/
$ npm install

ESP8266

You can use your ESP8266 as a client that send temperature or humidity. (I made this code works with DHT11 sensor but you can edit it to works with other sensors.)

  1. Install Arduino IDE
  2. Add ESPs support. This could help you.
  3. Edit the following lines in the code:
const char* ssid = "";
const char* password = "";
const char* serverUrl = ""; // your server url
  1. Flash on your device
  2. Connect your sensor to the ESP
  3. Power it
  4. Check ESP's MAC address from the serial monitor and edit line 3 of public/get.js
  5. Start your server and enjoy!