SlideShare ist ein Scribd-Unternehmen logo
1 von 61
Downloaden Sie, um offline zu lesen
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 1
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 2
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 3
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 4
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 5
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 6
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 7
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 8
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 9
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 10
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
void setup() {
pinMode(2, OUTPUT);
}
void loop() {
digitalWrite(2, HIGH);
delay(1000);
digitalWrite(2, LOW);
delay(1000);
}
int pin = 2;
void setup() {
// initialize GPIO 2 as an output.
pinMode(pin, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(pin, HIGH); // turn the LED on (HIGH is the
voltage level)
delay(1000); // wait for a second
digitalWrite(pin, LOW); // turn the LED off by making the
voltage LOW
delay(1000); // wait for a second
}
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 11
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
//Blinking two LED
void setup() {
}
void loop() {
digitalWrite(pin, HIGH);
delay(1000);
digitalWrite(pin, LOW);
delay(1000);
}
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 12
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
void setup()
{
Serial.begin(115200);
}
void loop()
{
Serial.println("Hello World");
delay(500);
}
void setup()
{
Serial.begin(115200);
}
void loop()
{
//Serial.println(" " Hello World! " ");
//Serial.println( "Hello nnn World" );
Serial.println( "Hello ttt World" );
delay(500);
}
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 13
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
void setup()
{
Serial.begin(115200);
Serial.swap(); //Remap RX TX to GPIO13(Rx) and GPIO15(Tx)
}
void loop()
{
Serial.println("Hello World");
delay(500);
}
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 14
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
void setup()
{
Serial.begin(115200);
Serial.setDebugOutput(true);
}
void loop()
{
Serial.println("Hello World");
delay(500);
}
void setup()
{
Serial.begin(115200);
}
void loop()
{
int baud = Serial.baudRate();
Serial.print("Current Baud:");
Serial.println(baud);
delay(500);
}
void setup()
{
Serial.begin(115200);
}
void loop()
{
Serial.println("Hello World");
Serial.println(78); //gives "78"
Serial.println(1.23456); //gives "1.23"
Serial.println('N'); //gives "N"
Serial.println("Hello world."); //gives "Hello world."
Serial.println(78, OCT); //gives "116"
Serial.println(78, BIN); //gives "1001110"
Serial.println(78, DEC); //gives "78"
Serial.println(78, HEX); //gives "4E"
Serial.println(1.23456, 0); //gives "1"
Serial.println(1.23456, 2); //gives "1.23"
Serial.println(1.23456, 4); //gives "1.2346"
delay(500);
}
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 15
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
String a;
int LED = 2;
void setup() {
Serial.begin(9600); // opens serial port, sets data rate to 9600 bps
pinMode(LED,OUTPUT);
pinMode(LED,HIGH); //LED in off
}
void loop() {
while(Serial.available()) {
a= Serial.readString();// read the incoming data as string
Serial.println(a);
if (a == "on"){
Serial.println("turn on led");
digitalWrite(LED,LOW); //LED on
}
if (a == "off"){
Serial.println("turn off led");
digitalWrite(LED,HIGH); //LED off
}
}
}
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 16
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
void setup()
{
Serial.begin(115200);
Serial.println("");
Serial.println("Type floating number Ex. abc12.34xyz");
}
void loop()
{
if(Serial.available())
{
Serial.println(Serial.parseFloat());
//Serial.println(Serial.parseInt());
}
}
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 17
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 18
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 19
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 20
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 21
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
The ESP8266 specification
Operating Voltage: 3.3V
Current consumption: 10uA – 170mA
Flash memory attachable 16MB max (512K normal)
Processor Tensilica: L106 32-bit
Processor speed: 80-160MHz
RAM: 32K + 80K
GPIOs: 17 (multiplexed with other functions)
Analog to Digital 1 input with 1024 step (10 bit)
resolution
Wi-Fi: 802.11 support b/g/n
Maximum concurrent TCP connections 5
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 22
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
ESP8266 Pinout
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 23
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 24
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 25
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 26
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 27
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
GPIO0
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 28
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
ESP8266 NodeMCU Digital Inputs and Digital Outputs
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 29
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 30
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
ESP8266 NodeMCU PWM
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 31
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 32
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 33
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
ESP8266 ADC
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 34
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 35
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 36
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
ESP8266 Deep Sleep
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 37
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 38
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 39
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 40
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 41
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 42
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 43
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
ESP8266 DHT11/DHT22 Temperature and Humidity Web Server
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 44
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 45
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 46
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
ESP8266 NodeMCU Relay Module
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 47
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 48
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 49
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 50
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 51
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 52
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 53
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 54
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 55
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 56
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 57
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 58
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 59
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 60
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT
Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 61
‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬
IOT

Weitere ähnliche Inhalte

Empfohlen

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Empfohlen (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

IOT Persentation1.pdf

  • 1. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 1 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 2. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 2 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 3. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 3 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 4. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 4 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 5. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 5 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 6. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 6 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 7. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 7 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 8. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 8 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 9. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 9 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 10. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 10 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT void setup() { pinMode(2, OUTPUT); } void loop() { digitalWrite(2, HIGH); delay(1000); digitalWrite(2, LOW); delay(1000); } int pin = 2; void setup() { // initialize GPIO 2 as an output. pinMode(pin, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(pin, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(pin, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second }
  • 11. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 11 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT //Blinking two LED void setup() { } void loop() { digitalWrite(pin, HIGH); delay(1000); digitalWrite(pin, LOW); delay(1000); }
  • 12. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 12 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT void setup() { Serial.begin(115200); } void loop() { Serial.println("Hello World"); delay(500); } void setup() { Serial.begin(115200); } void loop() { //Serial.println(" " Hello World! " "); //Serial.println( "Hello nnn World" ); Serial.println( "Hello ttt World" ); delay(500); }
  • 13. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 13 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT void setup() { Serial.begin(115200); Serial.swap(); //Remap RX TX to GPIO13(Rx) and GPIO15(Tx) } void loop() { Serial.println("Hello World"); delay(500); }
  • 14. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 14 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT void setup() { Serial.begin(115200); Serial.setDebugOutput(true); } void loop() { Serial.println("Hello World"); delay(500); } void setup() { Serial.begin(115200); } void loop() { int baud = Serial.baudRate(); Serial.print("Current Baud:"); Serial.println(baud); delay(500); } void setup() { Serial.begin(115200); } void loop() { Serial.println("Hello World"); Serial.println(78); //gives "78" Serial.println(1.23456); //gives "1.23" Serial.println('N'); //gives "N" Serial.println("Hello world."); //gives "Hello world." Serial.println(78, OCT); //gives "116" Serial.println(78, BIN); //gives "1001110" Serial.println(78, DEC); //gives "78" Serial.println(78, HEX); //gives "4E" Serial.println(1.23456, 0); //gives "1" Serial.println(1.23456, 2); //gives "1.23" Serial.println(1.23456, 4); //gives "1.2346" delay(500); }
  • 15. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 15 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT String a; int LED = 2; void setup() { Serial.begin(9600); // opens serial port, sets data rate to 9600 bps pinMode(LED,OUTPUT); pinMode(LED,HIGH); //LED in off } void loop() { while(Serial.available()) { a= Serial.readString();// read the incoming data as string Serial.println(a); if (a == "on"){ Serial.println("turn on led"); digitalWrite(LED,LOW); //LED on } if (a == "off"){ Serial.println("turn off led"); digitalWrite(LED,HIGH); //LED off } } }
  • 16. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 16 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT void setup() { Serial.begin(115200); Serial.println(""); Serial.println("Type floating number Ex. abc12.34xyz"); } void loop() { if(Serial.available()) { Serial.println(Serial.parseFloat()); //Serial.println(Serial.parseInt()); } }
  • 17. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 17 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 18. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 18 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 19. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 19 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 20. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 20 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 21. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 21 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT The ESP8266 specification Operating Voltage: 3.3V Current consumption: 10uA – 170mA Flash memory attachable 16MB max (512K normal) Processor Tensilica: L106 32-bit Processor speed: 80-160MHz RAM: 32K + 80K GPIOs: 17 (multiplexed with other functions) Analog to Digital 1 input with 1024 step (10 bit) resolution Wi-Fi: 802.11 support b/g/n Maximum concurrent TCP connections 5
  • 22. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 22 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT ESP8266 Pinout
  • 23. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 23 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 24. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 24 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 25. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 25 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 26. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 26 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 27. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 27 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT GPIO0
  • 28. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 28 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT ESP8266 NodeMCU Digital Inputs and Digital Outputs
  • 29. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 29 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 30. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 30 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT ESP8266 NodeMCU PWM
  • 31. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 31 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 32. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 32 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 33. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 33 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT ESP8266 ADC
  • 34. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 34 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 35. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 35 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 36. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 36 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT ESP8266 Deep Sleep
  • 37. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 37 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 38. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 38 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 39. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 39 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 40. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 40 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 41. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 41 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 42. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 42 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 43. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 43 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT ESP8266 DHT11/DHT22 Temperature and Humidity Web Server
  • 44. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 44 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 45. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 45 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 46. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 46 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT ESP8266 NodeMCU Relay Module
  • 47. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 47 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 48. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 48 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 49. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 49 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 50. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 50 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 51. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 51 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 52. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 52 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 53. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 53 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 54. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 54 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 55. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 55 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 56. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 56 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 57. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 57 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 58. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 58 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 59. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 59 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 60. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 60 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT
  • 61. Monday, February 28, 2022 www.parvinit.ir ‫ﭘﺮوﯾﻦ‬ ‫ﻓﻨﺎوري‬ ‫ﮔﺴﺘﺮش‬ 61 ‫اﺷﯿﺎء‬ ‫اﯾﻨﺘﺮﻧﺖ‬ ‫دوره‬ IOT