4000-520-616
欢迎来到免疫在线!(蚂蚁淘生物旗下平台)  请登录 |  免费注册 |  询价篮
主营:原厂直采,平行进口,授权代理(蚂蚁淘为您服务)
咨询热线电话
4000-520-616
当前位置: 首页 > 新闻动态 >
热卖商品
新闻详情
Hshen
来自 : www.hackshen.com/ 发布时间:2021-03-24

Luma.OLED github

1
2
3
# 安装驱动
$ sudo apt install python-dev python-pip libfreetype6-dev libjpeg-dev build-essential libopenjp2-7 libtiff5
$ sudo -H pip install --upgrade luma.oled
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# -*- coding:UTF-8 -*-
from luma.core.interface.serial import i2c, spi
from luma.core.render import canvas
from luma.oled.device import ssd1306
import time,os,socket,fcntl,struct

def getHostIp():
try:
my = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
my.connect((\'8.8.8.8\', 80))
# ip = my.getsockname()[0]
ipList = my.getsockname()
finally:
my.close()
return ipList

# Return % of CPU used by user as a character string
def getCPUuse():
return(str(os.popen(\"top -n1 | awk \'/Cpu\\(s\\):/ print $2 \'\").readline().strip()))

# Return CPU temperature as a character string
def getCPUtemperature():
res = os.popen(\'vcgencmd measure_temp\').readline()
return(res.replace(\"temp=\",\"\").replace(\"\'C\\n\",\"\"))

def getRAMinfo():
p = os.popen(\'free\')
i = 0
while 1:
i = i + 1
line = p.readline()
if i==2:
return(line.split()[1:4])


def getDiskSpace():
p = os.popen(\"df -h /\")
i = 0
while 1:
i = i +1
line = p.readline()
if i==2:
return(line.split()[1:5])

def ramTotal():
return(round(int(getRAMinfo()[0]) / 1000,1))

def ramUsed():
return(round(int(getRAMinfo()[1]) / 1000,1))

def ramFree():
return(round(int(getRAMinfo()[3]) / 1000,1))


# 创建 IIC 设备
serial = i2c(port=1, address=0x3C)

# 如果使用 SPI,换成这个
# serial = spi(device=0, port=0)

# 创建屏幕的驱动实例
device = ssd1306(serial)

while True:
with canvas(device) as draw:
draw.rectangle(device.bounding_box, outline=\"white\", fill=\"black\")
draw.text((18, 5), \"Hshen raspberry\" , fill=\"white\")
draw.text((2, 14), \"CPU:\" + getCPUuse() , fill=\"white\")
draw.text((62, 14), \"Temp:\" + getCPUtemperature() , fill=\"white\")
draw.text((2, 23), \"RAM:\" + str(ramUsed()) + \"/\" + str(ramTotal()) , fill=\"white\")
draw.text((2, 33), \"Disk:\" + str(getDiskSpace()[1]) + \"/\" + str(getDiskSpace()[0]) , fill=\"white\")
draw.text((2, 42), \"ip:\" + getHostIp()[0] , fill=\"white\")
draw.text((2, 52),time.strftime(\"%Y-%m-%d %H:%M:%S\", time.localtime()) , fill=\"white\")
time.sleep(2)

本文链接: https://wwwh.immuno-online.com/view-713330.html

发布于 : 2021-03-24 阅读(0)
公司介绍
品牌分类
联络我们
服务热线:4000-520-616
(限工作日9:00-18:00)
QQ :1570468124
手机:18915418616
官网:http://