mirror of
https://github.com/kxgx/2.13-Ink-screen-clock.git
synced 2026-05-12 02:35:04 +08:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0fe27553f4 | ||
|
|
9fe9e9f71a | ||
|
|
3752c55b17 | ||
|
|
620f363916 | ||
|
|
b184f08914 | ||
|
|
8efc57e655 | ||
|
|
a4e39c00fe | ||
|
|
62dc79de18 |
@@ -68,7 +68,7 @@ sudo reboot
|
|||||||
--gitcn 克隆中国仓库
|
--gitcn 克隆中国仓库
|
||||||
--pisugar-wifi-conf 安装pisugar-wifi-conf
|
--pisugar-wifi-conf 安装pisugar-wifi-conf
|
||||||
--pisugar-power-manager 安装pisugar-power-manager
|
--pisugar-power-manager 安装pisugar-power-manager
|
||||||
--version <tag> 版本号
|
--version <tag> 版本号(使用方法 --version + 仓库标签,格式例如 v1.x.x ,可以是主仓库main)
|
||||||
--debug 输出详细信息
|
--debug 输出详细信息
|
||||||
```
|
```
|
||||||
###
|
###
|
||||||
@@ -78,7 +78,7 @@ curl -sSL https://gitee.com/xingguangk/2.13-Ink-screen-clock/raw/main/bin/instal
|
|||||||
```
|
```
|
||||||
```Bash
|
```Bash
|
||||||
#中国源全参数设置(不使用--debug参数)
|
#中国源全参数设置(不使用--debug参数)
|
||||||
curl -sSL https://gitee.com/xingguangk/2.13-Ink-screen-clock/raw/main/bin/install.sh | sudo bash -s -- --version <tag> --zh --cn --gitcn --pisugar-power-manager --pisugar-wifi-conf
|
curl -sSL https://gitee.com/xingguangk/2.13-Ink-screen-clock/raw/main/bin/install.sh | sudo bash -s -- --zh --cn --gitcn --pisugar-power-manager --pisugar-wifi-conf --version <tag>
|
||||||
```
|
```
|
||||||
```Bash
|
```Bash
|
||||||
#默认源默认设置
|
#默认源默认设置
|
||||||
@@ -86,7 +86,7 @@ curl -sSL https://github.com/kxgx/2.13-Ink-screen-clock/raw/main/bin/install.sh
|
|||||||
```
|
```
|
||||||
```Bash
|
```Bash
|
||||||
#默认源全参数设置(不使用--debug参数)
|
#默认源全参数设置(不使用--debug参数)
|
||||||
curl -sSL https://github.com/kxgx/2.13-Ink-screen-clock/raw/main/bin/install.sh | sudo bash -s -- --version <tag> --zh --cn --gitcn --pisugar-power-manager --pisugar-wifi-conf
|
curl -sSL https://github.com/kxgx/2.13-Ink-screen-clock/raw/main/bin/install.sh | sudo bash -s -- --zh --cn --gitcn --pisugar-power-manager --pisugar-wifi-conf --version <tag>
|
||||||
```
|
```
|
||||||
|
|
||||||
## 需要安装的软件和依赖:
|
## 需要安装的软件和依赖:
|
||||||
@@ -113,7 +113,7 @@ sudo apt-get update && sudo apt-get install -y git pigpio i2c-tools netcat* gawk
|
|||||||
# 如果使用的是非lite系统请在pip3安装部分添加
|
# 如果使用的是非lite系统请在pip3安装部分添加
|
||||||
--break-system-packages
|
--break-system-packages
|
||||||
```
|
```
|
||||||
在代码文件第三十三行,此次代码需要更改,否则将展示默认城市天气数据
|
在weanther.py文件第64行可以修改默认城市数据
|
||||||
# 效果展示
|
# 效果展示
|
||||||
总体采用局刷方案,程序运行后一直处于程序的获取新数据的过程中,当发现数据变化后即开始自动局刷。
|
总体采用局刷方案,程序运行后一直处于程序的获取新数据的过程中,当发现数据变化后即开始自动局刷。
|
||||||

|

|
||||||
|
|||||||
31
bin/main.py
31
bin/main.py
@@ -8,6 +8,8 @@ import subprocess
|
|||||||
import os
|
import os
|
||||||
from threading import Timer
|
from threading import Timer
|
||||||
import requests
|
import requests
|
||||||
|
import socket
|
||||||
|
|
||||||
white = 255 #颜色
|
white = 255 #颜色
|
||||||
black = 0
|
black = 0
|
||||||
logging.basicConfig(level=logging.INFO)
|
logging.basicConfig(level=logging.INFO)
|
||||||
@@ -40,6 +42,17 @@ def get_time():#返回当前时间,不到秒,大写
|
|||||||
return time.strftime('%H:%M')
|
return time.strftime('%H:%M')
|
||||||
def Get_address():#获取当前的IP地址
|
def Get_address():#获取当前的IP地址
|
||||||
return (subprocess.check_output(u"hostname -I | cut -d\' \' -f1 | head --bytes -1", shell = True ).decode('gbk'))
|
return (subprocess.check_output(u"hostname -I | cut -d\' \' -f1 | head --bytes -1", shell = True ).decode('gbk'))
|
||||||
|
def Get_ipv4_address(): # 获取当前的IP地址
|
||||||
|
try:
|
||||||
|
# 执行命令获取IP地址,并处理输出以仅返回IPv4地址
|
||||||
|
ip_output = subprocess.check_output("hostname -I | grep -oE '[0-9]{1,3}(\.[0-9]{1,3}){3}'", shell=True).decode('utf-8').strip()
|
||||||
|
# 检查是否为IPv4地址
|
||||||
|
if ip_output and not ip_output.startswith("127."):
|
||||||
|
return ip_output
|
||||||
|
else:
|
||||||
|
return "IPv4获取失败"
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
return f"获取失败"
|
||||||
def CPU_temperature():#CPU温度获取
|
def CPU_temperature():#CPU温度获取
|
||||||
temperatura = os.popen('vcgencmd measure_temp').readline()
|
temperatura = os.popen('vcgencmd measure_temp').readline()
|
||||||
temperatura = temperatura.replace('temp=','').strip()
|
temperatura = temperatura.replace('temp=','').strip()
|
||||||
@@ -64,13 +77,13 @@ def Bottom_edge(): #在图片中添加底边内容
|
|||||||
draw.line((157,113,157,115),fill=255, width=1)
|
draw.line((157,113,157,115),fill=255, width=1)
|
||||||
global power_str
|
global power_str
|
||||||
power_str=power_battery()
|
power_str=power_battery()
|
||||||
draw.text((128,108),power_str,font = font04,fill =255) #显示当前电量百分比
|
draw.text((129,108),power_str,font = font04,fill =255) #显示当前电量百分比
|
||||||
'''电池图标画图'''
|
'''电池图标画图'''
|
||||||
draw.ellipse((192, 107, 207, 120), 0, 255)# 时钟图标
|
draw.ellipse((192, 107, 207, 120), 0, 255)# 时钟图标
|
||||||
draw.line((199,109,199,114),fill=255, width=1)
|
draw.line((199,109,199,114),fill=255, width=1)
|
||||||
draw.line((200,114,204,114),fill=255, width=1)
|
draw.line((200,114,204,114),fill=255, width=1)
|
||||||
global local_addr #获取当前IP地址
|
global local_addr #获取当前IP地址
|
||||||
local_addr= Get_address() #获取当前IP地址
|
local_addr= Get_ipv4_address() #获取当前IP地址
|
||||||
draw.text((10,107),"IP:"+local_addr,font = font05,fill =255)#显示当前IP地址
|
draw.text((10,107),"IP:"+local_addr,font = font05,fill =255)#显示当前IP地址
|
||||||
def Weather(): #在图片中添加天气内容
|
def Weather(): #在图片中添加天气内容
|
||||||
Weather_json = open('weather.json','r')
|
Weather_json = open('weather.json','r')
|
||||||
@@ -94,9 +107,11 @@ def Weather(): #在图片中添加天气内容
|
|||||||
draw.text((150,25),"天气:",font = font06,fill =0)#显示当前天气前缀
|
draw.text((150,25),"天气:",font = font06,fill =0)#显示当前天气前缀
|
||||||
draw.text((150,45),"温度:",font = font06,fill =0)#显示当前温度前缀
|
draw.text((150,45),"温度:",font = font06,fill =0)#显示当前温度前缀
|
||||||
draw.text((150,65),"湿度:",font = font06,fill =0)#显示当前湿度前缀
|
draw.text((150,65),"湿度:",font = font06,fill =0)#显示当前湿度前缀
|
||||||
|
draw.text((150,85),"城市:",font = font06,fill =0)#显示当前城市前缀
|
||||||
draw.text((191,25),weather,font = font06,fill =0)
|
draw.text((191,25),weather,font = font06,fill =0)
|
||||||
draw.text((191,45),temperature,font = font06,fill =0)
|
draw.text((191,45),temperature,font = font06,fill =0)
|
||||||
draw.text((191,65),humidity,font = font06,fill =0)
|
draw.text((191,65),humidity,font = font06,fill =0)
|
||||||
|
draw.text((191,85),Weather_position,font = font06,fill =0)
|
||||||
draw.text((211,107),weather_update,font = font05,fill =255) #显示天气更新时间
|
draw.text((211,107),weather_update,font = font05,fill =255) #显示天气更新时间
|
||||||
|
|
||||||
def Basic_refresh(): #全刷函数
|
def Basic_refresh(): #全刷函数
|
||||||
@@ -135,9 +150,9 @@ def Partial_refresh():#局刷函数
|
|||||||
logging.debug("头部日期部位发生刷新变化.")
|
logging.debug("头部日期部位发生刷新变化.")
|
||||||
Local_strong_brush() #局部强刷
|
Local_strong_brush() #局部强刷
|
||||||
global local_addr #当前IP地址
|
global local_addr #当前IP地址
|
||||||
local_addr1 = Get_address()
|
local_addr1 = Get_ipv4_address()
|
||||||
if (local_addr1==local_addr) ==False:
|
if (local_addr1==local_addr) ==False:
|
||||||
draw.rectangle((1, 107, 94, 120), fill = 0) #设置头部刷新区域
|
draw.rectangle((1, 107, 123, 120), fill = 0) #设置头部刷新区域
|
||||||
draw.text((10,107),"IP:"+local_addr1,font = font05,fill =255)#显示当前IP地址
|
draw.text((10,107),"IP:"+local_addr1,font = font05,fill =255)#显示当前IP地址
|
||||||
local_addr=local_addr1
|
local_addr=local_addr1
|
||||||
Local_strong_brush() #局部强刷
|
Local_strong_brush() #局部强刷
|
||||||
@@ -178,6 +193,12 @@ def Partial_refresh():#局刷函数
|
|||||||
humidity = humidity1
|
humidity = humidity1
|
||||||
logging.info("湿度局部刷新")
|
logging.info("湿度局部刷新")
|
||||||
Local_strong_brush() #局部强刷
|
Local_strong_brush() #局部强刷
|
||||||
|
if (Weather_position1==Weather_position) ==False:
|
||||||
|
draw.rectangle((191, 85, 249, 98), fill = 255) #局刷区域
|
||||||
|
draw.text((191,85),Weather_position1,font = font06,fill =0)
|
||||||
|
Weather_position = Weather_position1
|
||||||
|
logging.info("城市局部刷新")
|
||||||
|
Local_strong_brush() #局部强刷
|
||||||
if (weather_update1==weather_update) ==False:
|
if (weather_update1==weather_update) ==False:
|
||||||
draw.rectangle((211, 107, 248, 118), fill = 0) #设置更新时间刷新区域
|
draw.rectangle((211, 107, 248, 118), fill = 0) #设置更新时间刷新区域
|
||||||
draw.text((211,107),weather_update1,font = font05,fill =255) #显示天气更新时间
|
draw.text((211,107),weather_update1,font = font05,fill =255) #显示天气更新时间
|
||||||
@@ -189,7 +210,7 @@ def Partial_refresh():#局刷函数
|
|||||||
power_str1 =power_battery()
|
power_str1 =power_battery()
|
||||||
if (power_str1==power_str) ==False:
|
if (power_str1==power_str) ==False:
|
||||||
draw.rectangle((128, 110, 153, 117), fill = 0) #设置更新时间刷新区域
|
draw.rectangle((128, 110, 153, 117), fill = 0) #设置更新时间刷新区域
|
||||||
draw.text((127,108),power_battery(),font = font04,fill =255) #显示当前电量百分比
|
draw.text((129,108),power_battery(),font = font04,fill =255) #显示当前电量百分比
|
||||||
power_str=power_str1
|
power_str=power_str1
|
||||||
Local_strong_brush() #局部强刷
|
Local_strong_brush() #局部强刷
|
||||||
logging.info("电源电量局部刷新")
|
logging.info("电源电量局部刷新")
|
||||||
|
|||||||
100
bin/weather.py
100
bin/weather.py
@@ -1,39 +1,97 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding:utf-8 -*-
|
# -*- coding:utf-8 -*-
|
||||||
import os,sys,re,json,time,datetime #引入系统相关库
|
import os, sys, re, json, time, datetime
|
||||||
import logging #日志库
|
import logging
|
||||||
import subprocess
|
import subprocess
|
||||||
import os
|
import os
|
||||||
from threading import Timer
|
from threading import Timer
|
||||||
import requests
|
import requests
|
||||||
white = 255 #颜色
|
|
||||||
|
white = 255 # 颜色
|
||||||
black = 0
|
black = 0
|
||||||
logging.basicConfig(level=logging.INFO)
|
logging.basicConfig(level=logging.INFO) # 设置日志级别
|
||||||
################################引入配置文件开始################################################
|
|
||||||
picdir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'pic')
|
picdir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'pic')
|
||||||
libdir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'lib')
|
libdir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'lib')
|
||||||
if os.path.exists(libdir):
|
if os.path.exists(libdir):
|
||||||
sys.path.append(libdir)#将引入文件添加到环境变量
|
sys.path.append(libdir) # 将引入文件添加到环境变量
|
||||||
def getWeath(city='101060111'): #天气函数,下载json天气至本地
|
|
||||||
headers = {
|
def get_area_id(city_name):
|
||||||
'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
|
"""从city.js中检索AREAID"""
|
||||||
'Referer':'http://www.weather.com.cn/'
|
url = "https://j.i8tq.com/weather2020/search/city.js"
|
||||||
}
|
try:
|
||||||
response = requests.get('http://d1.weather.com.cn/sk_2d/'+city+'.html',headers=headers)
|
response = requests.get(url)
|
||||||
response.encoding = 'utf-8'
|
response.raise_for_status() # 检查请求是否成功
|
||||||
Weath=response.text[11:]
|
# 直接打印原始数据
|
||||||
fileHandle=open('weather.json','w')
|
logging.debug("Raw data from city.js: %s", response.text)
|
||||||
fileHandle.write(str(Weath))
|
# 预处理返回的数据,去除非JSON部分
|
||||||
fileHandle.close()
|
city_data_text = response.text.strip()
|
||||||
Timer(180, getWeath).start() #定时器函数,间隔三分钟下载文件至本地
|
city_data_text = city_data_text.split('var city_data = ')[-1].rstrip(';')
|
||||||
print("天气文件更新")
|
if city_data_text:
|
||||||
|
city_data = json.loads(city_data_text)
|
||||||
|
# 遍历数据结构,查找城市名称
|
||||||
|
for province, cities in city_data.items():
|
||||||
|
for city, districts in cities.items():
|
||||||
|
for district, info in districts.items():
|
||||||
|
if info['NAMECN'] == city_name:
|
||||||
|
return info['AREAID']
|
||||||
|
logging.error("City name '%s' not found in city data", city_name)
|
||||||
|
else:
|
||||||
|
logging.error("Empty data received from city.js")
|
||||||
|
except requests.RequestException as e:
|
||||||
|
logging.error("Network error when retrieving city data: %s", e)
|
||||||
|
except json.JSONDecodeError as e:
|
||||||
|
logging.error("JSON decode error when parsing city data: %s", e)
|
||||||
|
return None
|
||||||
|
|
||||||
|
def get_current_city():
|
||||||
|
"""获取当前城市名称"""
|
||||||
|
url = "http://ip-api.com/json/?lang=zh-CN"
|
||||||
|
try:
|
||||||
|
response = requests.get(url)
|
||||||
|
response.raise_for_status() # 检查请求是否成功
|
||||||
|
data = response.json()
|
||||||
|
if data['status'] == 'success':
|
||||||
|
return data['city']
|
||||||
|
else:
|
||||||
|
logging.error("Failed to get current city: %s", data['message'])
|
||||||
|
except requests.RequestException as e:
|
||||||
|
logging.error("Network error when retrieving current city: %s", e)
|
||||||
|
except json.JSONDecodeError as e:
|
||||||
|
logging.error("JSON decode error when parsing current city data: %s", e)
|
||||||
|
return None
|
||||||
|
|
||||||
|
def getWeath(city='101060111'):
|
||||||
|
headers = {
|
||||||
|
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
|
||||||
|
'Referer': 'http://www.weather.com.cn/'
|
||||||
|
}
|
||||||
|
current_city = get_current_city()
|
||||||
|
if current_city:
|
||||||
|
area_id = get_area_id(current_city)
|
||||||
|
if area_id:
|
||||||
|
city = area_id
|
||||||
|
try:
|
||||||
|
response = requests.get('http://d1.weather.com.cn/sk_2d/'+city+'.html',headers=headers)
|
||||||
|
response.raise_for_status() # 检查请求是否成功
|
||||||
|
response.encoding = 'utf-8'
|
||||||
|
Weath = response.text[11:]
|
||||||
|
fileHandle = open('weather.json', 'w')
|
||||||
|
fileHandle.write(str(Weath))
|
||||||
|
fileHandle.close()
|
||||||
|
Timer(180, getWeath).start() # 定时器函数,间隔三分钟下载文件至本地
|
||||||
|
print("天气文件更新")
|
||||||
|
except requests.RequestException as e:
|
||||||
|
logging.error("Network error when retrieving weather data: %s", e)
|
||||||
|
except Exception as e:
|
||||||
|
logging.error("An unexpected error occurred: %s", e)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
getWeath()#天气获取函数开始运行
|
getWeath() # 天气获取函数开始运行
|
||||||
except IOError as e:
|
except IOError as e:
|
||||||
logging.info(e)
|
logging.info(e)
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
logging.info("Keyboard interrupt detected, exiting gracefully.")
|
logging.info("Keyboard interrupt detected, exiting gracefully.")
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.error("An unexpected error occurred: %s", e)
|
logging.error("An unexpected error occurred: %s", e)
|
||||||
exit()
|
exit()
|
||||||
|
|||||||
Reference in New Issue
Block a user