🐍 Python & Raspberry 🐍
8.21K subscribers
1.92K photos
125 videos
623 files
1.23K links
Python- Raspberry Pi-AI-IOT
ادمین : فرهاد ناصری زاده
@farhad_naserizadeh
@farhad3412

گروه پایتون
@Python_QA
تبادل
@mmtahmasbi
کانال مرتبط
@new_mathematical
@micropython_iot
@c_micro
اینستاگرام
http://Instagram.com/python_raspberry
Download Telegram
🌟 LibROSA

LibROSA is a python package for music and audio analysis. It provides the building blocks necessary to create music information retrieval systems.



http://librosa.github.io/librosa/

🔰 @raspberry_python
🌟 Read and write WAV files in python


https://docs.python.org/3/library/wave.html

🔰 @raspberry_python
Pair Correlation Function Analysis of Fluorescence Fluctuations in Big Image Time Series using Python

https://www.lfd.uci.edu/~gohlke/ipcf/

🔰 @raspberry_python
کانال آموزش میکروکنترلر و زبان C 👇

@C_MICRO
Forwarded from 🐍 Python & Raspberry 🐍 (F.Naserizadeh)
coding.pdf
1.2 MB
🌟 شش مثال مهم و کاربردی کدینگ و دیکدینگ
نویسنده : فرهاد ناصری زاده @farhad3412

🔰 @raspberry_python
لینک گروه رمزنگاری
https://t.me/joinchat/Bi883BH1gstrrfsxssdu7g

ادمین
@farhad3412
جزوه رمزنگاری 👇 به صورت پاور پوینت از طرف مهندس
@Spouyakazemian
Simon Rubinstein-Salzedo - Cryptography-Springer (2018).pdf
3.3 MB
Cryptography

کتاب جدید رمزنگاری

🌟 انتشار اشپرینگر 2018
@raspberry_python
Sahadeo_Padhye,_Rajeev_A_Sahu,_Vishal.pdf
2.6 MB
Introduction to Cryptography

کتاب جدید معرفی رمزنگاری

🌟 انتشار 2018
@raspberry_python
Forwarded from C & micro & fpga
آموزش اتصال آردوینو به تلگرام.pdf
21.9 MB
آموزش اتصال آردوینو به تلگرام و کنترل رله👌
⚡️این جزوه در 60 صفحه تهیه شده است و دارای تصاویر از جزییات کار می باشد⚡️
@c_micro
آموزش

IOT
micropython
nodemcu
Lua
Arduino

لینک کانال 👇
@micropython_iot
🌟 How to Connect an MP3002 ADC Chip to a Raspberry Pi



import time
import botbook_mcp3002 as mcp #

def readPotentiometer():
global potentiometer
potentiometer = mcp.readAnalog() #

def main():
while True: #
readPotentiometer() #
print("The current potentiometer value is %i " % potentiometer) #
time.sleep( 0.5) # s

if name = = "main":
main()


🌟🌟🌟🌟🌟🌟
botbook_mcp3002 library 👇

http://www.learningaboutelectronics.com/Code/botbook_mcp3002.txt

🔰 @raspberry_python
🌟 MQ-2 Smoke Sensor Circuit Built with a Raspberry Pi


import time
import botbook_mcp3002 as mcp #

smokeLevel= 0

def readSmokeLevel():
global smokeLevel
smokeLevel= mcp.readAnalog()

def main():
while True: #
readSmokeLevel() #
print ("Current smoke level is %i " % smokeLevel) #
if smokeLevel > 120:
print("Smoke detected")
time.sleep(0.5) # s

if_name_=="_main_":
main()

🌟🌟🌟🌟🌟
library mcp3002 👇


http://www.learningaboutelectronics.com/Code/botbook_mcp3002.txt

🔰 @raspberry_python
#آموزش فیلتر در پایتون

🌟 How to Create a Filter Function in Python

n= [100,75,24,20,55]

over50= filter(lambda x: x>50,n)

print(list(over50))

[100, 75, 55]

🔰 @raspberry_python
Happy new year 😁
@raspberry_python