latinet:unicaes:day1:start
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| latinet:unicaes:day1:start [2023/08/25 02:00] – created harley.lara | latinet:unicaes:day1:start [2023/08/25 21:11] (current) – removed harley.lara | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Day 1: Introduction to IoT ====== | ||
| - | |||
| - | ===== Setup Development Environment ===== | ||
| - | |||
| - | * [[https:// | ||
| - | * [[https:// | ||
| - | * [[https:// | ||
| - | |||
| - | |||
| - | ===== Hardware Review ===== | ||
| - | |||
| - | |||
| - | * Dev Board: Wemos D1 Mini | ||
| - | * Microcontroller: | ||
| - | |||
| - | ===== Coding Warm-up ===== | ||
| - | |||
| - | Basic blink example: | ||
| - | |||
| - | <file cpp Blink.ino> | ||
| - | void setup() { | ||
| - | // initialize digital pin LED_BUILTIN as an output. | ||
| - | pinMode(LED_BUILTIN, | ||
| - | } | ||
| - | |||
| - | // the loop function runs over and over again forever | ||
| - | void loop() { | ||
| - | digitalWrite(LED_BUILTIN, | ||
| - | delay(1000); | ||
| - | digitalWrite(LED_BUILTIN, | ||
| - | delay(1000); | ||
| - | } | ||
| - | </ | ||
| - | |||
| - | Temperature reading example: | ||
| - | |||
| - | <file cpp Temp.ino> | ||
| - | void setup() { | ||
| - | } | ||
| - | |||
| - | void loop(){ | ||
| - | } | ||
| - | </ | ||
latinet/unicaes/day1/start.1692921611.txt.gz · Last modified: 2023/08/25 02:00 by harley.lara