Course report from Thursday 2022-11-10 where we looked a bit, but no too much, more advanced way of using ArduinoIDE. This time we had the special wifi-enabled microcontroller, the ESP8266 on two alternative development board options.
We started with installing the required development environment things, the Arduino IDE and then for the ESP8266 it is also needed to install the board definitions as ESP8266 is not a supported board out of the box.
After the setup phase it was then time to look at some possibilities on the boards. The Witty board with the built in RGB led, button, and light dependant resitor (LDR) is a good board to start experimenting as it has those ready made input and output devices. A demo of running a really web server on the ESP8266 board with controls of hardware devices was an eye opener.
Other possible option that was looked at is the creation of a temperature logger - also known as see your sauna temperature from the couch -device. This incorporated the ESP8266 board, a digital temperature sensor DS18B20 and a bit of wiring and in some cases soldering.
Backend for the logging can be anything suitable but as an example the https://thingspeak.com/ was used.
Witty development board
//RGB-LED, ldr, button
// LDR = A0;
// GREEN = 12;
// BLUE = 13;
// RED = 15;
// BUTTON = 4;
Comments
There are currently no comments
New Comment