Compare commits
3 Commits
bugfix/ws-
...
41e0a6b81d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
41e0a6b81d | ||
|
|
e4da3687b4 | ||
|
|
05cd085b89 |
@@ -215,7 +215,7 @@ static void create_top_bar(lv_obj_t *parent)
|
|||||||
/* Battery positive terminal nub */
|
/* Battery positive terminal nub */
|
||||||
lv_obj_t *batt_nub = lv_obj_create(bar_cont);
|
lv_obj_t *batt_nub = lv_obj_create(bar_cont);
|
||||||
lv_obj_set_size(batt_nub, 2, 4);
|
lv_obj_set_size(batt_nub, 2, 4);
|
||||||
lv_obj_align(batt_nub, LV_ALIGN_RIGHT_MID, -37, 0);
|
lv_obj_align(batt_nub, LV_ALIGN_RIGHT_MID, -38, 0);
|
||||||
lv_obj_set_style_bg_color(batt_nub, lv_color_white(), 0);
|
lv_obj_set_style_bg_color(batt_nub, lv_color_white(), 0);
|
||||||
lv_obj_set_style_bg_opa(batt_nub, LV_OPA_COVER, 0);
|
lv_obj_set_style_bg_opa(batt_nub, LV_OPA_COVER, 0);
|
||||||
lv_obj_set_style_border_width(batt_nub, 0, 0);
|
lv_obj_set_style_border_width(batt_nub, 0, 0);
|
||||||
@@ -284,7 +284,7 @@ static void create_main_section(lv_obj_t *parent)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Timer for each shift of 1/8 line's height */
|
/* Timer for each shift of 1/8 line's height */
|
||||||
s_scroll_timer = lv_timer_create(scroll_timer_cb, 200, NULL);
|
s_scroll_timer = lv_timer_create(scroll_timer_cb, 120, NULL);
|
||||||
|
|
||||||
/* === Left column: Pi Vitals (below services) === */
|
/* === Left column: Pi Vitals (below services) === */
|
||||||
int rx = 0;
|
int rx = 0;
|
||||||
@@ -338,7 +338,7 @@ static void create_bottom_bar(lv_obj_t *parent)
|
|||||||
lv_obj_t *bot_cont = lv_obj_create(parent);
|
lv_obj_t *bot_cont = lv_obj_create(parent);
|
||||||
lv_obj_set_pos(bot_cont, 0, y0);
|
lv_obj_set_pos(bot_cont, 0, y0);
|
||||||
lv_obj_set_size(bot_cont, SCREEN_W, BOT_H);
|
lv_obj_set_size(bot_cont, SCREEN_W, BOT_H);
|
||||||
lv_obj_set_style_bg_color(bot_cont, lv_color_white(), 0);
|
lv_obj_set_style_bg_color(bot_cont, lv_color_black(), 0);
|
||||||
lv_obj_set_style_bg_opa(bot_cont, LV_OPA_COVER, 0);
|
lv_obj_set_style_bg_opa(bot_cont, LV_OPA_COVER, 0);
|
||||||
lv_obj_set_style_border_color(bot_cont, lv_color_black(), 0);
|
lv_obj_set_style_border_color(bot_cont, lv_color_black(), 0);
|
||||||
lv_obj_set_style_border_width(bot_cont, 1, 0);
|
lv_obj_set_style_border_width(bot_cont, 1, 0);
|
||||||
@@ -349,14 +349,14 @@ static void create_bottom_bar(lv_obj_t *parent)
|
|||||||
|
|
||||||
lbl_net = lv_label_create(bot_cont);
|
lbl_net = lv_label_create(bot_cont);
|
||||||
lv_obj_set_style_text_font(lbl_net, &InziuIosevka_Slab_CC_12px, 0);
|
lv_obj_set_style_text_font(lbl_net, &InziuIosevka_Slab_CC_12px, 0);
|
||||||
lv_obj_set_style_text_color(lbl_net, lv_color_black(), 0);
|
lv_obj_set_style_text_color(lbl_net, lv_color_white(), 0);
|
||||||
lv_obj_align(lbl_net, LV_ALIGN_LEFT_MID, 0, 0);
|
lv_obj_align(lbl_net, LV_ALIGN_LEFT_MID, 0, 0);
|
||||||
lv_label_set_text(lbl_net, "NETWORK DOWN: ---- kBps / UP: ---- kBps");
|
lv_label_set_text(lbl_net, "NETWORK DOWN: ---- kBps / UP: ---- kBps");
|
||||||
|
|
||||||
/* Local sensor readings — right-aligned */
|
/* Local sensor readings — right-aligned */
|
||||||
lbl_local = lv_label_create(bot_cont);
|
lbl_local = lv_label_create(bot_cont);
|
||||||
lv_obj_set_style_text_font(lbl_local, &InziuIosevka_Slab_CC_12px, 0);
|
lv_obj_set_style_text_font(lbl_local, &InziuIosevka_Slab_CC_12px, 0);
|
||||||
lv_obj_set_style_text_color(lbl_local, lv_color_black(), 0);
|
lv_obj_set_style_text_color(lbl_local, lv_color_white(), 0);
|
||||||
lv_obj_align(lbl_local, LV_ALIGN_RIGHT_MID, 0, 0);
|
lv_obj_align(lbl_local, LV_ALIGN_RIGHT_MID, 0, 0);
|
||||||
lv_label_set_text(lbl_local, "T: --.- H: --%");
|
lv_label_set_text(lbl_local, "T: --.- H: --%");
|
||||||
}
|
}
|
||||||
|
|||||||
4
pi/.gitignore
vendored
4
pi/.gitignore
vendored
@@ -3,3 +3,7 @@
|
|||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyo
|
*.pyo
|
||||||
*.pyc
|
*.pyc
|
||||||
|
|
||||||
|
# configs
|
||||||
|
./configs/
|
||||||
|
!configs/alarms.sample.json
|
||||||
Reference in New Issue
Block a user