Micropython & IOT
1.63K subscribers
141 photos
1 video
47 files
36 links
ادمین : فرهاد ناصری زاده
@farhad_naserizadeh
@farhad3412

micropython, nodemcu, Lua, iot،
Arduino

کانال های مرتبط با این کانال

@raspberry_python
@c_micro
@ai_dsp
Download Telegram
Forwarded from 🐍 Python & Raspberry 🐍 (F.Naserizadeh)
Raspbian OS Programming with the Raspberry Pi

کتاب جدید رزبری پای به همراه اینترنت اشیا 👇

🌟انتشار 2019🌟

🔰 @raspberry_python
Forwarded from 🐍 Python & Raspberry 🐍 (F.Naserizadeh)
Agus_Kurniawan_Raspbian_OS_Programming.pdf
9.7 MB
Raspbian OS Programming with the Raspberry Pi

کتاب جدید رزبری پای به همراه اینترنت اشیا

🌟انتشار 2019🌟

🔰 @raspberry_python
Hands-On ESP8266: Mastering Basic Peripherals

آموزش خوب برای esp8266 👇

🌟سال انتشار 2018🌟

🔰 @micropython_iot
Hands-On-ESP8266-Mastering-Basic-Peripherals.pdf
12.8 MB
Hands-On ESP8266: Mastering Basic Peripherals
(NodeMcu)

آموزش خوب برای esp8266

🌟سال انتشار 2018🌟

🔰 @micropython_iot
Particle Electron is a tiny Cellular(2G/3G) based development kit that can be used for creating connected projects and applications. It comes with a Particle SIM card with a data plan for low bandwidth applications.

#iot

@micropython_iot
Particle Photon is a very small Wi-Fi development kit which is designed for creating connected projects and applications for the Internet of Things(IoT). It has a powerful 120Mhz ARM Cortex M3 microcontroller with an on-board Broadcom Wi-Fi chip.

#iot

@micropython_iot
Pin Detail Diagram of Particle Photon


@micropython_iot
Forwarded from 🐍 Python & Raspberry 🐍 (F.Naserizadeh)
How to Use the MAX30100 as Arduino Heart Rate Sensor


https://www.teachmemicro.com/max30100-arduino-heart-rate-sensor/

🔰 @micropython_iot
🔰How to Build an RGB LED Circuit with an Arduino


const int redLED= 2;

const int greenLED= 4;

const int blueLED= 7;


void setup()
{

pinMode(redLED, OUTPUT);

pinMode(greenLED, OUTPUT);

pinMode(blueLED, OUTPUT);
}

void loop()
{
digitalWrite(redLED,HIGH);

delay(3000);

digitalWrite(redLED, LOW);

digitalWrite(greenLED,HIGH);

delay(3000);

digitalWrite(greenLED, LOW);

digitalWrite(blueLED, HIGH);

delay(3000);

digitalWrite(blueLED, LOW);
}

🆔 @micropython_iot
How to Connect an MCP23017 I/O Port Expander to an Arduino


@micropython_iot
اندازه گیری سطح مایعات با آردینو

🔰 Arduino Liquid Level Sensor Circuit


const int sensorPin= 0;

int liquid_level;

void setup() {

Serial.begin(9600);

pinMode(sensorPin, INPUT);
}

void loop() {

liquid_level= analogRead(sensorPin);

Serial.println(liquid_level);

delay(100);
}

🔰 @micropython_iot
mqtt-v3.1.1-os.pdf
2.2 MB
پروتکل mqtt
@micropython_iot
Gaston_C_Hillar_MQTT_Essentials.pdf
8.9 MB
پروتکل MQTT
2017

❇️ @micropython_iot
Forwarded from 🐍 Python & Raspberry 🐍 (فرهاد ناصری زاده)
نکات کاربردی پایتون.pdf
1.5 MB
نکات کاربردی در پایتون
گردآورنده : فرهاد ناصری زاده
@farhad3412


🔰 @raspberry_python