User Tools

Site Tools


latinet:unicaes:day1:start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
latinet:unicaes:day1:start [2023/08/25 02:18] harley.laralatinet:unicaes:day1:start [2023/08/25 21:11] (current) – removed harley.lara
Line 1: Line 1:
-====== Day 1: Introduction to IoT ====== 
  
-[[user:jan001:intro_iot_tasmota_nig|Introduction to IoT - Sensors and Data processing]] 
- 
-===== Setup Development Environment ===== 
- 
-  * [[https://www.arduino.cc/en/software#future-version-of-the-arduino-ide|Install Arduino IDE]], for more information see the [[https://docs.arduino.cc/software/ide-v2|Official documentation]] 
-    * [[https://randomnerdtutorials.com/installing-esp8266-nodemcu-arduino-ide-2-0/ | Installing ESP8266 NodeMCU Board in Arduino IDE 2.0]] 
-  * [[https://learn.sparkfun.com/tutorials/how-to-install-ch340-drivers | How to install CH340 driver]] 
- 
- 
-===== Hardware Review ===== 
- 
- 
-  * Dev Board: Wemos D1 Mini  
-  * Microcontroller: ESP8266 12-E Chip [[https://randomnerdtutorials.com/getting-started-with-esp8266-wifi-transceiver-review/| ESP8266 hardware review]] 
- 
-===== Coding Warm-up ===== 
- 
-Basic blink example: 
- 
-<file cpp Blink.ino> 
-void setup() { 
-  // initialize digital pin LED_BUILTIN as an output. 
-  pinMode(LED_BUILTIN, OUTPUT); 
-} 
- 
-// the loop function runs over and over again forever 
-void loop() { 
-  digitalWrite(LED_BUILTIN, HIGH);  // turn the LED on (HIGH is the voltage level) 
-  delay(1000);                      // wait for a second 
-  digitalWrite(LED_BUILTIN, LOW);   // turn the LED off by making the voltage LOW 
-  delay(1000);                      // wait for a second 
-} 
-</file> 
- 
-Temperature reading example: 
- 
-<file cpp Temp.ino> 
-void setup() { 
-} 
- 
-void loop(){ 
-} 
-</file> 
latinet/unicaes/day1/start.1692922738.txt.gz · Last modified: 2023/08/25 02:18 by harley.lara