اندازه گیری سطح مایعات با آردینو
🔰 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
🔰 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
@micropython_iot
Forwarded from 🐍 Python & Raspberry 🐍 (فرهاد ناصری زاده)
نکات کاربردی پایتون.pdf
1.5 MB
Forwarded from 🐍 Python & Raspberry 🐍 (فرهاد ناصری زاده)
GeeksforGeeks
Python Tutorial | Learn Python Programming Language - GeeksforGeeks
Your All-in-One Learning Portal: GeeksforGeeks is a comprehensive educational platform that empowers learners across domains-spanning computer science and programming, school education, upskilling, commerce, software tools, competitive exams, and more.
Forwarded from 🐍 Python & Raspberry 🐍 (فرهاد ناصری زاده)
در بهاران كى شود سرسبز سنگ
خاك شو تا گل برويى رنگ رنگ
سال ها تو سنگ بودى دلخراش
آزمون را يك زمانى خاك باش
مولانا
سال ۹۸ بر شما مبارکباد. 🌺☘☘🌹
با آروزی سالی همراه با سلامت و موفقیت برای تمامی اعضای محترم کانال
ارادتمند شما فرهاد ناصری زاده
💐💐💚💚💞💞💜💜💗💗🌹🌹🌻🌻🌻🌻🌷🌷☘☘🌴🌴🌳🌳🌲🌲🎄🎄🍃🍃🍄🍄🌺🌺🌸🌸
خاك شو تا گل برويى رنگ رنگ
سال ها تو سنگ بودى دلخراش
آزمون را يك زمانى خاك باش
مولانا
سال ۹۸ بر شما مبارکباد. 🌺☘☘🌹
با آروزی سالی همراه با سلامت و موفقیت برای تمامی اعضای محترم کانال
ارادتمند شما فرهاد ناصری زاده
💐💐💚💚💞💞💜💜💗💗🌹🌹🌻🌻🌻🌻🌷🌷☘☘🌴🌴🌳🌳🌲🌲🎄🎄🍃🍃🍄🍄🌺🌺🌸🌸
Forwarded from 🐍 Python & Raspberry 🐍 (alireza yahyapour)
4_5886377134435337232.rar
5 MB
✅آموزش نصب micropython روی ESP8266-01 هست به اضافه ی تمام فایل های مورد نیاز برای راه اندازی و استفاده که firmware هم گذاشته شده.😊
با تشکر از دوست عزیز : @Black_Captain
🆔 @raspberry_python
با تشکر از دوست عزیز : @Black_Captain
🆔 @raspberry_python
Forwarded from 🐍 Python & Raspberry 🐍 (فرهاد ناصری زاده)
کنترل خودکار خانه با رزبری پای
🌟 انتشار 2019
Home Automation with Raspberry Pi: Projects Using Google Home, Amazon Echo, and Other Intelligent Personal Assistants
❇️ @raspberry_python
🌟 انتشار 2019
Home Automation with Raspberry Pi: Projects Using Google Home, Amazon Echo, and Other Intelligent Personal Assistants
❇️ @raspberry_python
Forwarded from 🐍 Python & Raspberry 🐍 (فرهاد ناصری زاده)
Donald_Norris_Home_Automation_with.pdf
10.1 MB
کنترل خودکار خانه با رزبری پای
🌟 انتشار 2019
Home Automation with Raspberry Pi: Projects Using Google Home, Amazon Echo, and Other Intelligent Personal Assistants
❇️ @raspberry_python
🌟 انتشار 2019
Home Automation with Raspberry Pi: Projects Using Google Home, Amazon Echo, and Other Intelligent Personal Assistants
❇️ @raspberry_python
سلام به همه امروز سورس راه hotspot برای #ESP8266 براتون اماده کردم.
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
//SSID and Password to your ESP Access Point
const char* ssid = "ESPWebServer";
const char* password = "12345678";
ESP8266WebServer server(80); //Server on port 80
//==============================================================
// This rutine is exicuted when you open its IP in browser
//==============================================================
void handleRoot() {
server.send(200, "text/plain", "hello from esp8266!");
}
//===============================================================
// SETUP
//===============================================================
void setup(void){
Serial.begin(9600);
Serial.println("");
WiFi.mode(WIFI_AP); //Only Access point
WiFi.softAP(ssid, password); //Start HOTspot removing password will disable security
IPAddress myIP = WiFi.softAPIP(); //Get IP address
Serial.print("HotSpt IP:");
Serial.println(myIP);
server.on("/", handleRoot); //Which routine to handle at root location
server.begin(); //Start server
Serial.println("HTTP server started");
}
//===============================================================
// LOOP
//===============================================================
void loop(void){
server.handleClient(); //Handle client requests
}
بعد از ران کردن این کد esp در سریال مانیتورینگ به شما یک ip خواهد داد که با وارد کردن ان در مرورگر خود قادر به مشاهده ی webserver راه اندازی شده توس esp در گوشی و یا سیستم خود هستید.
🌺🌺 با تشکر از مهندس
@MehdiYasinzade
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
//SSID and Password to your ESP Access Point
const char* ssid = "ESPWebServer";
const char* password = "12345678";
ESP8266WebServer server(80); //Server on port 80
//==============================================================
// This rutine is exicuted when you open its IP in browser
//==============================================================
void handleRoot() {
server.send(200, "text/plain", "hello from esp8266!");
}
//===============================================================
// SETUP
//===============================================================
void setup(void){
Serial.begin(9600);
Serial.println("");
WiFi.mode(WIFI_AP); //Only Access point
WiFi.softAP(ssid, password); //Start HOTspot removing password will disable security
IPAddress myIP = WiFi.softAPIP(); //Get IP address
Serial.print("HotSpt IP:");
Serial.println(myIP);
server.on("/", handleRoot); //Which routine to handle at root location
server.begin(); //Start server
Serial.println("HTTP server started");
}
//===============================================================
// LOOP
//===============================================================
void loop(void){
server.handleClient(); //Handle client requests
}
بعد از ران کردن این کد esp در سریال مانیتورینگ به شما یک ip خواهد داد که با وارد کردن ان در مرورگر خود قادر به مشاهده ی webserver راه اندازی شده توس esp در گوشی و یا سیستم خود هستید.
🌺🌺 با تشکر از مهندس
@MehdiYasinzade
EAI_Springer_Innovations_in_Communication.pdf
8.3 MB
Recent Trends and Advances in Wireless and IoT-enabled Networks
🌟 2019
🌟 2019
سلام به همه یک سایت پیدا کردم برای اتصال با پروتکل UDP که پهنای باند زیادی در اختیار کاربر برای انتقال تصویر و فیلم و داده و...
UDP — ESP8266 Arduino Core documentation
https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/udp-examples.html
❇️ @micropython_iot
UDP — ESP8266 Arduino Core documentation
https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/udp-examples.html
❇️ @micropython_iot