终于在X宝上购买了pico w,其实倒是不说说性能上有这个需求,只是
一直想拥有。
拥有果然是一个很高级的需求。
之前一直80-90一个,该死的黄牛啥都要草!明明只有6刀的东西,终于,四十多块买下了。
收藏desu
终于在X宝上购买了pico w,其实倒是不说说性能上有这个需求,只是
一直想拥有。
拥有果然是一个很高级的需求。
之前一直80-90一个,该死的黄牛啥都要草!明明只有6刀的东西,终于,四十多块买下了。
收藏desu
micropython
st7735 下使用
from st7735 import TFT,TFTColor
其中 引入两个库
TFTColor 用于将RGB转为10进制 颜色
tft._pushcolor(TFTColor(12,234,11))
tft._pushcolor按照顺序填充像素点,接收10进制的数据
可以尝试16进制数据看看
rgb565 图像即可看看
import serial, time
import datetime as dt
import numpy as np
import cv2
# function to get Emissivity from MCU
def get_emissivity():
ser.write(serial.to_bytes([0xA5,0x55,0x01,0xFB]))
read = ser.read(4)
return read[2]/100
# function to get temperatures from MCU (Celsius degrees x 100)
def get_temp_array(d):
# getting ambient temperature
T_a = (int(d[1540]) + int(d[1541])*256)/100
# getting raw array of pixels temperature
raw_data = d[4:1540]
T_array = np.frombuffer(raw_data, dtype=np.int16)
return T_a, T_array
# function to convert temperatures to pixels on image
def td_to_image(f):
norm = np.uint8((f/100 - Tmin)*255/(Tmax-Tmin))
norm.shape = (24,32)
return norm
########################### Main cycle #################################
# Color map range
Tmax = 40
Tmin = 20
print ('Configuring Serial port')
ser = serial.Serial ('/dev/serial0')
ser.baudrate = 115200
# set frequency of module to 4 Hz
ser.write(serial.to_bytes([0xA5,0x25,0x01,0xCB]))
time.sleep(0.1)
# Starting automatic data colection
ser.write(serial.to_bytes([0xA5,0x35,0x02,0xDC]))
t0 = time.time()
try:
while True:
# waiting for data frame
data = ser.read(1544)
# The data is ready, let's handle it!
Ta, temp_array = get_temp_array(data)
ta_img = td_to_image(temp_array)
# Image processing
img = cv2.applyColorMap(ta_img, cv2.COLORMAP_JET)
img = cv2.resize(img, (320,240), interpolation = cv2.INTER_CUBIC)
img = cv2.flip(img, 1)
text = 'Tmin = {:+.1f} Tmax = {:+.1f} FPS = {:.2f}'.format(temp_array.min()/100, temp_array.max()/100, 1/(time.time() - t0))
cv2.putText(img, text, (5, 15), cv2.FONT_HERSHEY_SIMPLEX, 0.45, (0, 0, 0), 1)
cv2.imshow('Output', img)
# if 's' is pressed - saving of picture
key = cv2.waitKey(1) & 0xFF
if key == ord("s"):
fname = 'pic_' + dt.datetime.now().strftime('%Y-%m-%d_%H-%M-%S') + '.jpg'
cv2.imwrite(fname, img)
print('Saving image ', fname)
t0 = time.time()
except KeyboardInterrupt:
# to terminate the cycle
ser.write(serial.to_bytes([0xA5,0x35,0x01,0xDB]))
ser.close()
cv2.destroyAllWindows()
print(' Stopped')
# just in case
ser.close()
cv2.destroyAllWindows()
转自:https://github.com/vvkuryshev/GY-MCU90640-RPI-Python
RT
合宙家的屏幕配上合宙家的esp32C3
插上后
上下左右按钮对应的GPIO为
屏幕 摇杆
放置
遥杆按钮 | ESP32C3 |
---|---|
上 | 8 |
下 | 13 |
左 | 5 |
右 | 9 |
按下 | 4 |
from machine import Pin
a=Pin(8,Pin.IN,Pin.PULL_UP)
print(a.value())
ST7735
import camera
camera.init(0,format=2)
camera.init(0,format=camera.GRAYSCALE)
#默认灰度图
camera.init(0,format=3)
camera.init(0,format=camera.JPEG)
#JPG格式
# 相关格式
# JPEG -- 3
# YUV422 -- 1
# GRAYSCALE -- 2
# RGB565 -- 0
camera.framesize(5)
#320X240 设置分辨率
img=camera.capture()
import uos
from machine import SDCard
#FAT 格式的存储卡
uos.mount(SDCard(),'/sd')
uos.listdir()
uos.chdir('/sd')
uos.listdir()
fg=open("a.jpg","w")
fg.write(img)
fg.close()
#thonny 使用直接右击下载文件,直接查看,本地空间,OPENMV下的esp32cam有1MB的可用空间,单纯micropython下有2MB的空间
#闪关灯
#GPIO4 为LED补光灯,若长时间使用会有严重的发热问题
from machine import Pin
flash=Pin(4,Pin.OUT)
flash.on() #打开闪关灯
flash.off() #关闭闪关灯
img参数直接打印为: 分辨率 文件类型 文件大小
在非jpg下 建设使用320×240 的分辨率(默认分辨率)
可用分辨率:
需要250ms (推荐分辨率 可以4FPS)
* camera.framesize(5) 5 :::: {“w”:320, “h”:240, “type”=”grayscale”, “size”:76800} ::: 267 ms
* camera.framesize(6) 6 :::: {“w”:400, “h”:296, “type”=”grayscale”, “size”:118400} ::: 249 ms
需要750ms
* camera.framesize(7) 7 :::: {“w”:480, “h”:320, “type”=”grayscale”, “size”:153600} ::: 770 ms
* camera.framesize(8) 8 :::: {“w”:640, “h”:480, “type”=”grayscale”, “size”:307200} ::: 722 ms
* camera.framesize(9) 9 :::: {“w”:800, “h”:600, “type”=”grayscale”, “size”:480000} ::: 686 ms
需要2000ms(不建议使用)
* camera.framesize(10) 10 :::: {“w”:1024, “h”:768, “type”=”grayscale”, “size”:786432} ::: 2019 ms
* camera.framesize(11) 11 :::: {“w”:1280, “h”:720, “type”=”grayscale”, “size”:921600} ::: 1819 ms
* camera.framesize(12) 12 :::: {“w”:1280, “h”:1024, “type”=”grayscale”, “size”:1310720} ::: 2126 ms
* camera.framesize(13) 13 :::: {“w”:1600, “h”:1200, “type”=”grayscale”, “size”:1920000} ::: 1968 ms
JPG模式下全分辨率可用,但是使用OPENMV建议处理分辨率为320×240 或 400×296
使用img(拍摄完的对象)进行处理
使用help(img)查看其方法
和openmv的stm32设备下,除了拍照方面不同,其他方面都差不多,文档地址:
book.openmv.cc
大家做相应的替换
img.find_qrcodes()
若识别到二维码,就会返回扫描的相关数据。
但是二维码需要使用灰度图片
import time,camera
camera.init(0,format=2)
camera.init(0,format=camera.GRAYSCALE)
while True:
img=camera.capture()
e=img.find_qrcodes()
if e:
print(e)
time.sleep(0.5)