Forwarded from Micropython & IOT (F.Naserizadeh)
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
#iot
@micropython_iot
👍1
Forwarded from Micropython & IOT (F.Naserizadeh)
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
#iot
@micropython_iot
Forwarded from Micropython & IOT (F.Naserizadeh)
چند فایل آموزشی بصورت پاورپوینت در خصوص واحد های میکروکنترلر از طرف اعضای کانال👇
Forwarded from Deleted Account
Wave Generation Capturing _15.pptx
2 MB
Forwarded from 🐍 Python & Raspberry 🐍 (F.Naserizadeh)
I'm very glad to tell you that the
"Five Minute VHDL Podcast" is online
You can listen it using
[Spotify] -> https://surf-vhdl.link/spotify-ep-00
[Spreaker] -> https://surf-vhdl.link/spreaker-ep-00
coming soon on iTunes
Let me know your feedback by mail
> podcast@surf-vhdl.com
or using my telegram contact
> https://t.me/francesco_surfvhdl
❇️ @c_micro
"Five Minute VHDL Podcast" is online
You can listen it using
[Spotify] -> https://surf-vhdl.link/spotify-ep-00
[Spreaker] -> https://surf-vhdl.link/spreaker-ep-00
coming soon on iTunes
Let me know your feedback by mail
> podcast@surf-vhdl.com
or using my telegram contact
> https://t.me/francesco_surfvhdl
❇️ @c_micro
Spotify
Five Minute VHDL Podcast
Listen to Five Minute VHDL Podcast on Spotify. Let's talk about hardware design using VHDL
Forwarded from Micropython & IOT (F.Naserizadeh)
اندازه گیری سطح مایعات با آردینو
🔰 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
🔰 ارتباط RFID با stm32
https://circuitdigest.com/microcontroller-projects/interface-rfid-with-stm32-microcontroller?utm_source=pushengage&utm_medium=pushnotification&utm_campaign=pushengage
❇️ @c_micro
https://circuitdigest.com/microcontroller-projects/interface-rfid-with-stm32-microcontroller?utm_source=pushengage&utm_medium=pushnotification&utm_campaign=pushengage
❇️ @c_micro
Circuitdigest
How to Connect RFID with STM32 Microcontroller
In this tutorial we will learn how to interface an EM-18 RFID Reader Module and read the unique ID of RFID tags using STM32F103C8 microcontroller.