vault backup: 2026-01-05 14:26:17

This commit is contained in:
windyboy
2026-01-05 14:26:17 +08:00
parent be7c6cdcc9
commit 40f3fe3eb8
290 changed files with 1947 additions and 282 deletions
+26
View File
@@ -0,0 +1,26 @@
login by wexin qrcode
login id generate:
```python
def generate_qr_login_id():
"""
Generate a unique id for qr code login
word-by-word copied from js code
"""
rand_str = f"{int(time.time() * 1000)}{random.random()}"
return md5(rand_str.encode()).hexdigest()
```
generated:
```id
607d21bf2f06142e52d2057de49eed8d
```
+230
View File
@@ -0,0 +1,230 @@
```
type: vertical-stack
cards:
- type: horizontal-stack
title: 用电状态
cards:
- type: sensor
entity: sensor.0800041935246530_this_month_total_usage
name: 本月用电
icon: mdi:home-lightning-bolt-outline
- hours_to_show: 24
graph: none
type: sensor
entity: sensor.0800041935246530_latest_day_kwh
name: 昨天用电
icon: mdi:home-lightning-bolt-outline
detail: 1
- hours_to_show: 24
graph: none
type: sensor
entity: sensor.0800041935246530_arrears
detail: 1
icon: mdi:currency-jpy
unit: 元
name: 应交电费
- type: horizontal-stack
cards:
- type: sensor
entity: sensor.0800041935246530_last_month_total_usage
name: 上月用电
icon: mdi:home-lightning-bolt-outline
- hours_to_show: 24
graph: none
type: sensor
entity: sensor.airpowerheatertemperature
name: 上月电费
detail: 1
icon: mdi:currency-jpy
unit: 元
- type: horizontal-stack
cards:
- type: sensor
entity: sensor.0800041935246530_this_year_total_usage
name: 本年用电
icon: mdi:home-lightning-bolt-outline
- hours_to_show: 24
graph: none
type: sensor
entity: sensor.0800041935246530_this_year_total_cost
name: 本年电费
detail: 1
icon: mdi:currency-jpy
unit: 元
- type: horizontal-stack
cards:
- type: sensor
entity: sensor.0800041935246530_last_year_total_usage
icon: mdi:home-lightning-bolt-outline
name: 上年用电
- hours_to_show: 24
graph: none
type: sensor
entity: sensor.0800041935246530_last_year_total_cost
name: 上年电费
detail: 1
icon: mdi:currency-jpy
unit: 元
- type: horizontal-stack
cards:
- type: custom:apexcharts-card
header:
show: true
title: 30天用电与费用趋势图
graph_span: 30d
span:
start: day
offset: '-30d'
series:
- entity: sensor.history_day
type: column
name: 用电功率
color: rgb(51,153,255)
attribute: history_day_value
data_generator: |
return entity.attributes.history_day_value.map(entry => {
return {
x: entry.date,
y: entry.kwh
};
});
- entity: sensor.history_day
name: 用电费用
color: rgb(255,153,0)
attribute: history_day_value
data_generator: |
return entity.attributes.history_day_value.map(entry => {
return {
x: entry.date,
y: entry.kwh*0.65886875
};
});
```
```
type: grid
cards:
- type: vertical-stack
cards:
- type: horizontal-stack
title: 用电状态
cards:
- graph: none
type: sensor
entity: sensor.0800041935246530_this_month_total_usage
name: 本月用电
icon: mdi:home-lightning-bolt-outline
hours_to_show: 24
detail: 1
- type: sensor
entity: sensor.0800041935246530_latest_day_kwh
name: 昨天用电
icon: mdi:home-lightning-bolt-outline
detail: 1
hours_to_show: 24
graph: none
- type: sensor
entity: sensor.0800041935246530_arrears
detail: 1
icon: mdi:currency-jpy
unit: 元
name: 应交电费
grid_options:
columns: 12
rows: 4
- type: horizontal-stack
cards:
- type: sensor
entity: sensor.0800041935246530_last_month_total_usage
name: 上月用电
icon: mdi:home-lightning-bolt-outline
hours_to_show: 24
graph: none
- type: sensor
entity: sensor.airpowerheatertemperature
name: 上月电费
detail: 1
icon: mdi:currency-jpy
unit: 元
grid_options:
columns: 12
rows: 2
- type: horizontal-stack
cards:
- type: sensor
entity: sensor.0800041935246530_this_year_total_usage
name: 本年用电
icon: mdi:home-lightning-bolt-outline
hours_to_show: 24
graph: none
- type: sensor
entity: sensor.0800041935246530_this_year_total_cost
name: 本年电费
detail: 1
icon: mdi:currency-jpy
unit: 元
grid_options:
columns: 12
rows: 2
- type: horizontal-stack
cards:
- type: sensor
entity: sensor.0800041935246530_last_year_total_usage
icon: mdi:home-lightning-bolt-outline
name: 上年用电
hours_to_show: 24
graph: none
- type: sensor
entity: sensor.0800041935246530_last_year_total_cost
name: 上年电费
detail: 1
icon: mdi:currency-jpy
unit: 元
grid_options:
columns: 12
rows: 2
- type: horizontal-stack
cards:
- type: custom:apexcharts-card
header:
show: true
title: 30天用电与费用趋势图
graph_span: 30d
span:
start: day
offset: "-30d"
series:
- entity: sensor.history_day
type: column
name: 用电功率
color: rgb(51,153,255)
attribute: history_day_value
data_generator: |
return entity.attributes.history_day_value.map(entry => {
return {
x: entry.date,
y: entry.kwh
};
});
- entity: sensor.history_day
name: 用电费用
color: rgb(255,153,0)
attribute: history_day_value
data_generator: |
return entity.attributes.history_day_value.map(entry => {
return {
x: entry.date,
y: entry.kwh*0.65886875
};
});
grid_options:
columns: 12
rows: 5
column_span: 1
```
File diff suppressed because it is too large Load Diff