|
@@ -0,0 +1,722 @@
|
|
|
+#include "aem_in_out_power_screen.h"
|
|
|
+#include "app_ui.h"
|
|
|
+#include "simple_img.h"
|
|
|
+#include "aem_workout_res.h"
|
|
|
+#include "aem_sys_function_interface.h"
|
|
|
+#include "aem_bg.h"
|
|
|
+#include "aem_in_out_power.h"
|
|
|
+#include "aem_app_fwk.h"
|
|
|
+#include "text_canvas.h"
|
|
|
+#include "aem_txt.h"
|
|
|
+#include "aem_activity_id.h"
|
|
|
+
|
|
|
+#define ARC_WIDTH 54
|
|
|
+
|
|
|
+#define LV_COLOR_BLUE LV_COLOR_MAKE(0x36, 0xdc, 0xff)
|
|
|
+#define LV_COLOR_GREEN LV_COLOR_MAKE(0x88, 0xff, 0x56)
|
|
|
+#define LV_COLOR_BLACK LV_COLOR_MAKE(0x00, 0x00, 0x00)
|
|
|
+#define LV_COLOR_WHITE LV_COLOR_MAKE(0xff, 0xff, 0xff)
|
|
|
+
|
|
|
+typedef struct
|
|
|
+{
|
|
|
+ lv_obj_t *in_power_value;
|
|
|
+ lv_obj_t *in_voltage_value;
|
|
|
+ lv_obj_t *in_current_value;
|
|
|
+ bool widget_start;
|
|
|
+
|
|
|
+} input_power_scr_ui_data_t;
|
|
|
+
|
|
|
+typedef struct
|
|
|
+{
|
|
|
+ lv_obj_t *bg;
|
|
|
+ lv_obj_t *input_power_blue_chart;
|
|
|
+} aem_struct_power_point;
|
|
|
+
|
|
|
+const uint16_t in_chart_width = 360;
|
|
|
+const uint8_t in_chart_hight = 120;
|
|
|
+const uint8_t in_chart_align_y_to_up = 40;
|
|
|
+const uint16_t in_chart_point_num = 12;
|
|
|
+static uint16_t chart_range_max = 50;
|
|
|
+static uint16_t chart_range_min = 0;
|
|
|
+static uint16_t chart_range_max_pre = 50;
|
|
|
+static uint16_t chart_range_min_pre = 0;
|
|
|
+static aem_struct_power_point *s_power_point = NULL;
|
|
|
+
|
|
|
+static inline lv_color_t lv_color_blue(void)
|
|
|
+{
|
|
|
+ return lv_color_make(0x36, 0xdc, 0xff);
|
|
|
+}
|
|
|
+static inline lv_color_t lv_color_green(void)
|
|
|
+{
|
|
|
+ return lv_color_make(0x88, 0xff, 0x56);
|
|
|
+}
|
|
|
+
|
|
|
+static void *load_res()
|
|
|
+{
|
|
|
+ input_power_scr_ui_data_t *ext_data = lv_mem_alloc(sizeof(input_power_scr_ui_data_t));
|
|
|
+ if (ext_data == NULL)
|
|
|
+ {
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+ lv_memset(ext_data, 0, sizeof(input_power_scr_ui_data_t));
|
|
|
+
|
|
|
+ return ext_data;
|
|
|
+}
|
|
|
+
|
|
|
+static lv_obj_t *activity_value_item_create(lv_obj_t *par, lv_color_t value_color,
|
|
|
+ char *value, lv_coord_t hight, const lv_font_t *value_font)
|
|
|
+{
|
|
|
+ if (par == NULL)
|
|
|
+ {
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *bg = aem_bg_create(par, AEM_SIZE_HOR_FACTOR_466(360), AEM_SIZE_VER_FACTOR_466(hight), lv_color_black());
|
|
|
+ if (bg == NULL)
|
|
|
+ {
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ //lv_obj_clear_flag(bg, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+
|
|
|
+ lv_obj_t *value_label = text_canvas_create(bg);
|
|
|
+ if (value_label)
|
|
|
+ {
|
|
|
+ lv_obj_set_width(value_label, AEM_SIZE_HOR_FACTOR_466(160));
|
|
|
+ text_canvas_set_long_mode(value_label, LV_LABEL_LONG_SCROLL_CIRCULAR);
|
|
|
+ lv_obj_set_style_text_align(value_label, LV_TEXT_ALIGN_LEFT, 0);
|
|
|
+ //lv_obj_clear_flag(value_label, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_obj_set_style_text_color(value_label, value_color, 0);
|
|
|
+ lv_obj_set_style_text_font(value_label, value_font, 0);
|
|
|
+ text_canvas_set_text(value_label, value);
|
|
|
+ lv_obj_align(value_label, LV_ALIGN_CENTER, 0, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ return bg;
|
|
|
+}
|
|
|
+
|
|
|
+static void link_icon_event_cb(lv_event_t *event)
|
|
|
+{
|
|
|
+ //printk("link_icon_event_cb\n");
|
|
|
+
|
|
|
+ if (event->code == LV_EVENT_CLICKED)
|
|
|
+ {
|
|
|
+ aem_activity_run(AEM_BIND_QRCODE, NULL);
|
|
|
+ //aem_app_close(AEM_APP_ID_input_power);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void draw_event_cb(lv_event_t *e)
|
|
|
+{
|
|
|
+ /*Add the faded area before the lines are drawn*/
|
|
|
+ lv_obj_draw_part_dsc_t *dsc = lv_event_get_draw_part_dsc(e);
|
|
|
+ if (dsc && dsc->part == LV_PART_ITEMS)
|
|
|
+ {
|
|
|
+ if (!dsc->p1 || !dsc->p2)
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ #if 0
|
|
|
+ dsc->rect_dsc->bg_opa = LV_OPA_TRANSP;
|
|
|
+ dsc->rect_dsc->bg_color = lv_color_black();
|
|
|
+
|
|
|
+ dsc->rect_dsc->border_opa = LV_OPA_TRANSP;
|
|
|
+ dsc->rect_dsc->border_color = lv_color_black();
|
|
|
+ dsc->rect_dsc->border_width = 6;
|
|
|
+
|
|
|
+ if (e->user_data == 0)
|
|
|
+ {
|
|
|
+ dsc->rect_dsc->outline_color = lv_color_blue();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ dsc->rect_dsc->outline_color = lv_color_green();
|
|
|
+ }
|
|
|
+
|
|
|
+ dsc->rect_dsc->outline_opa = LV_OPA_COVER;
|
|
|
+ //dsc->rect_dsc->outline_color = lv_color_blue();
|
|
|
+ dsc->rect_dsc->outline_width = 6;
|
|
|
+ dsc->rect_dsc->radius = LV_RADIUS_CIRCLE;
|
|
|
+ static lv_area_t a = { 0 };
|
|
|
+ a.x1 = dsc->draw_area->x1;// -5;
|
|
|
+ a.x2 = dsc->draw_area->x2;// +5;
|
|
|
+ a.y1 = dsc->draw_area->y1;// -5;
|
|
|
+ a.y2 = dsc->draw_area->y2;// +5;
|
|
|
+ lv_draw_rect(dsc->draw_ctx, dsc->rect_dsc, &a);
|
|
|
+ #else
|
|
|
+ lv_draw_img_dsc_t img_dsc;
|
|
|
+ lv_draw_img_dsc_init(&img_dsc);
|
|
|
+ img_dsc.opa = LV_OPA_COVER;
|
|
|
+ lv_area_t a = { 0 };
|
|
|
+ a.x1 = dsc->draw_area->x1 - (IMG_SCENE_IN_OUT_POWER_PIC_POINT_IN.header.w / 2);
|
|
|
+ a.x2 = dsc->draw_area->x1 + (IMG_SCENE_IN_OUT_POWER_PIC_POINT_IN.header.w / 2) - 1;
|
|
|
+ a.y1 = dsc->draw_area->y1 - (IMG_SCENE_IN_OUT_POWER_PIC_POINT_IN.header.h / 2);
|
|
|
+ a.y2 = dsc->draw_area->y1 + (IMG_SCENE_IN_OUT_POWER_PIC_POINT_IN.header.h / 2) - 1;
|
|
|
+ lv_draw_img(dsc->draw_ctx, &img_dsc, &a, &IMG_SCENE_IN_OUT_POWER_PIC_POINT_IN);
|
|
|
+
|
|
|
+ #endif
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#define VOLT_CURR_WIDTH 180
|
|
|
+#define POWER_STYLE_WIDTH 180
|
|
|
+#ifndef CONFIG_SIMULATOR
|
|
|
+#define BG_ICON1_IMG_OPA LV_OPA_40//250
|
|
|
+#define BG_ICON2_IMG_OPA 20//LV_OPA_10
|
|
|
+#define BG_ICON3_IMG_OPA 20//20
|
|
|
+#define BG_ICON4_IMG_OPA 20//15
|
|
|
+#define BG_ICON5_IMG_OPA 20//10
|
|
|
+#define BG_ICON6_IMG_OPA 20//5
|
|
|
+#else
|
|
|
+#define BG_ICON1_IMG_OPA LV_OPA_COVER
|
|
|
+#define BG_ICON2_IMG_OPA LV_OPA_COVER
|
|
|
+#define BG_ICON3_IMG_OPA LV_OPA_COVER
|
|
|
+#define BG_ICON4_IMG_OPA LV_OPA_COVER
|
|
|
+#define BG_ICON5_IMG_OPA LV_OPA_COVER
|
|
|
+#define BG_ICON6_IMG_OPA LV_OPA_COVER
|
|
|
+#endif
|
|
|
+static lv_obj_t *aem_input_power_arc_show_create(lv_obj_t *par)
|
|
|
+{
|
|
|
+ input_power_scr_ui_data_t *activity_ui_data = lv_obj_get_user_data(par);
|
|
|
+ activity_day_data_t day_data = get_today_training_day_data();
|
|
|
+
|
|
|
+ char *in_power_data = aem_auto_release_txt_fmt("%d", day_data.steps);
|
|
|
+ lv_obj_t *in_power_item = activity_value_item_create(par, (lv_color_t)LV_COLOR_BLACK, in_power_data, 70, aem_font_def());
|
|
|
+ lv_obj_set_style_bg_color(in_power_item, (lv_color_t)LV_COLOR_BLUE, 0);
|
|
|
+ lv_obj_set_style_radius(in_power_item, AEM_SIZE_FACTOR_466(10), 0);
|
|
|
+ lv_obj_set_style_width(in_power_item, AEM_SIZE_FACTOR_466(POWER_STYLE_WIDTH), 0);
|
|
|
+
|
|
|
+ if (in_power_item)
|
|
|
+ {
|
|
|
+ activity_ui_data->in_power_value = lv_obj_get_child(in_power_item, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ char *in_voltage_data = aem_auto_release_txt_fmt("%d", day_data.calories);
|
|
|
+ lv_obj_t *in_voltage_item = activity_value_item_create(par, (lv_color_t)LV_COLOR_BLUE, in_voltage_data, 50, aem_font_sub());
|
|
|
+ //lv_obj_set_style_bg_color(in_voltage_item, (lv_color_t)LV_COLOR_WHITE, 0);
|
|
|
+ lv_obj_set_style_align(in_voltage_item, LV_ALIGN_LEFT_MID, 0);
|
|
|
+ lv_obj_set_style_width(in_voltage_item, AEM_SIZE_FACTOR_466(VOLT_CURR_WIDTH), 0);
|
|
|
+
|
|
|
+ if (in_voltage_item)
|
|
|
+ {
|
|
|
+ activity_ui_data->in_voltage_value = lv_obj_get_child(in_voltage_item, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ char *in_current_data = aem_auto_release_txt_fmt("%d", day_data.durmin);
|
|
|
+ lv_obj_t *in_current_item = activity_value_item_create(par, (lv_color_t)LV_COLOR_BLUE, in_current_data, 50, aem_font_sub());
|
|
|
+ //lv_obj_set_style_bg_color(in_current_item, (lv_color_t)LV_COLOR_WHITE, 0);
|
|
|
+ lv_obj_set_style_align(in_current_item, LV_ALIGN_LEFT_MID, 0);
|
|
|
+ lv_obj_set_style_width(in_current_item, AEM_SIZE_FACTOR_466(VOLT_CURR_WIDTH), 0);
|
|
|
+
|
|
|
+ if (in_current_item)
|
|
|
+ {
|
|
|
+ activity_ui_data->in_current_value = lv_obj_get_child(in_current_item, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_align(in_power_item, LV_ALIGN_CENTER, AEM_SIZE_HOR_FACTOR_466(0), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_align_to(in_voltage_item, in_power_item, LV_ALIGN_OUT_BOTTOM_MID, AEM_SIZE_HOR_FACTOR_466(28), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_align_to(in_current_item, in_voltage_item, LV_ALIGN_OUT_BOTTOM_MID, 0, 0);
|
|
|
+
|
|
|
+ lv_obj_t *in_power_unit_label = text_canvas_create(in_power_item);
|
|
|
+ if (in_power_unit_label)
|
|
|
+ {
|
|
|
+ lv_obj_set_style_text_font(in_power_unit_label, aem_font_small(), 0);
|
|
|
+ text_canvas_set_text(in_power_unit_label, "W");
|
|
|
+ lv_obj_set_style_text_color(in_power_unit_label, (lv_color_t)LV_COLOR_BLACK, 0);
|
|
|
+ lv_obj_align(in_power_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(58), AEM_SIZE_VER_FACTOR_466(30));
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *in_voltage_unit_label = text_canvas_create(in_voltage_item);
|
|
|
+ if (in_voltage_unit_label)
|
|
|
+ {
|
|
|
+ lv_obj_set_style_text_font(in_voltage_unit_label, aem_font_small(), 0);
|
|
|
+ text_canvas_set_text(in_voltage_unit_label, "V");
|
|
|
+ lv_obj_set_style_text_color(in_voltage_unit_label, (lv_color_t)LV_COLOR_BLUE, 0);
|
|
|
+ lv_obj_align(in_voltage_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(26), AEM_SIZE_VER_FACTOR_466(16));
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *in_current_unit_label = text_canvas_create(in_current_item);
|
|
|
+ if (in_current_unit_label)
|
|
|
+ {
|
|
|
+ lv_obj_set_style_text_font(in_current_unit_label, aem_font_small(), 0);
|
|
|
+ text_canvas_set_text(in_current_unit_label, "A");
|
|
|
+ lv_obj_set_style_text_color(in_current_unit_label, (lv_color_t)LV_COLOR_BLUE, 0);
|
|
|
+ lv_obj_align(in_current_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(26), AEM_SIZE_VER_FACTOR_466(16));
|
|
|
+ }
|
|
|
+
|
|
|
+ // Arcs
|
|
|
+ lv_obj_t *arc_bg = aem_bg_create(par, DEF_UI_WIDTH, DEF_UI_HEIGHT, lv_color_black());
|
|
|
+ if (arc_bg)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(arc_bg, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_obj_set_style_bg_opa(arc_bg, LV_OPA_TRANSP, 0);
|
|
|
+ lv_obj_set_style_transform_pivot_x(arc_bg, DEF_UI_WIDTH / 2, 0);
|
|
|
+ lv_obj_set_style_transform_pivot_y(arc_bg, DEF_UI_HEIGHT / 2, 0);
|
|
|
+
|
|
|
+ //lv_obj_t *point_line_icon = lv_img_create(arc_bg);
|
|
|
+ //if (point_line_icon)
|
|
|
+ //{
|
|
|
+ // //lv_obj_clear_flag(point_line_icon, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ // lv_img_set_src(point_line_icon, &IMG_SCENE_IN_OUT_POWER_PIC_POINT_LINE);
|
|
|
+ // lv_obj_align(point_line_icon, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(0), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ //}
|
|
|
+
|
|
|
+ lv_obj_t *in_icon = lv_img_create(arc_bg);
|
|
|
+ if (in_icon)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(in_icon, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(in_icon, &IMG_SCENE_IN_OUT_POWER_PIC_IN);
|
|
|
+ lv_obj_align(in_icon, LV_ALIGN_LEFT_MID, AEM_SIZE_HOR_FACTOR_466(75), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *voltage_icon = lv_img_create(arc_bg);
|
|
|
+ if (voltage_icon)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(voltage_icon, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(voltage_icon, &IMG_SCENE_IN_OUT_POWER_PIC_VOLTAGE_ICON);
|
|
|
+ lv_obj_align(voltage_icon, LV_ALIGN_LEFT_MID, AEM_SIZE_HOR_FACTOR_466(150), AEM_SIZE_VER_FACTOR_466(60));
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *current_icon = lv_img_create(arc_bg);
|
|
|
+ if (current_icon)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(current_icon, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(current_icon, &IMG_SCENE_IN_OUT_POWER_PIC_CURRENT_ICON);
|
|
|
+ lv_obj_align(current_icon, LV_ALIGN_LEFT_MID, AEM_SIZE_HOR_FACTOR_466(150), AEM_SIZE_VER_FACTOR_466(110));
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *in_bg_icon1 = lv_img_create(arc_bg);
|
|
|
+ if (in_bg_icon1)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(in_icon, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(in_bg_icon1, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPBLUE_ARROW);
|
|
|
+ lv_obj_align(in_bg_icon1, LV_ALIGN_LEFT_MID, AEM_SIZE_HOR_FACTOR_466(145), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_set_style_img_opa(in_bg_icon1, BG_ICON1_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *in_bg_icon2 = lv_img_create(in_bg_icon1);
|
|
|
+ if (in_bg_icon2)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(in_icon, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(in_bg_icon2, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPBLUE_ARROW);
|
|
|
+ lv_obj_align_to(in_bg_icon2, in_bg_icon1, LV_ALIGN_OUT_RIGHT_MID, AEM_SIZE_HOR_FACTOR_466(0), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_set_style_img_opa(in_bg_icon2, BG_ICON2_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *in_bg_icon3 = lv_img_create(in_bg_icon2);
|
|
|
+ if (in_bg_icon3)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(in_icon, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(in_bg_icon3, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPBLUE_ARROW);
|
|
|
+ lv_obj_align_to(in_bg_icon3, in_bg_icon2, LV_ALIGN_OUT_RIGHT_MID, AEM_SIZE_HOR_FACTOR_466(0), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_set_style_img_opa(in_bg_icon3, BG_ICON3_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *in_bg_icon4 = lv_img_create(in_bg_icon3);
|
|
|
+ if (in_bg_icon4)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(in_icon, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(in_bg_icon4, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPBLUE_ARROW);
|
|
|
+ lv_obj_align_to(in_bg_icon4, in_bg_icon3, LV_ALIGN_OUT_RIGHT_MID, AEM_SIZE_HOR_FACTOR_466(0), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_set_style_img_opa(in_bg_icon4, BG_ICON4_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *in_bg_icon5 = lv_img_create(in_bg_icon4);
|
|
|
+ if (in_bg_icon5)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(in_icon, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(in_bg_icon5, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPBLUE_ARROW);
|
|
|
+ lv_obj_align_to(in_bg_icon5, in_bg_icon4, LV_ALIGN_OUT_RIGHT_MID, AEM_SIZE_HOR_FACTOR_466(0), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_set_style_img_opa(in_bg_icon5, BG_ICON5_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *in_bg_icon6 = lv_img_create(in_bg_icon5);
|
|
|
+ if (in_bg_icon6)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(in_icon, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(in_bg_icon6, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPBLUE_ARROW);
|
|
|
+ lv_obj_align_to(in_bg_icon6, in_bg_icon5, LV_ALIGN_OUT_RIGHT_MID, AEM_SIZE_HOR_FACTOR_466(0), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_set_style_img_opa(in_bg_icon6, BG_ICON6_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+ //==========================================================================================//
|
|
|
+
|
|
|
+ lv_obj_t *link_icon = lv_img_create(arc_bg);
|
|
|
+ if (link_icon)
|
|
|
+ {
|
|
|
+ lv_img_set_src(link_icon, &IMG_SCENE_IN_OUT_POWER_PIC_LINK);
|
|
|
+ lv_obj_align(link_icon, LV_ALIGN_BOTTOM_MID, AEM_SIZE_HOR_FACTOR_466(0), AEM_SIZE_VER_FACTOR_466(-15));
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *link_bg = aem_bg_create(arc_bg, AEM_SIZE_HOR_FACTOR_466(120), AEM_SIZE_VER_FACTOR_466(80), lv_color_white());
|
|
|
+ if (link_bg)
|
|
|
+ {
|
|
|
+ lv_obj_set_style_bg_opa(link_bg, LV_OPA_TRANSP, 0);
|
|
|
+ lv_obj_add_flag(link_bg, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_obj_align(link_bg, LV_ALIGN_BOTTOM_MID, AEM_SIZE_HOR_FACTOR_466(0), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_add_event_cb(link_bg, link_icon_event_cb, LV_EVENT_CLICKED, NULL);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return par;
|
|
|
+}
|
|
|
+
|
|
|
+static lv_obj_t *arc_bg_create(lv_obj_t *par)
|
|
|
+{
|
|
|
+ lv_obj_t *bg = lv_arc_create(par);
|
|
|
+ if (bg == NULL)
|
|
|
+ {
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ //lv_obj_set_style_arc_color(bg, lv_color_hex(0x001831), LV_PART_MAIN);
|
|
|
+ //lv_obj_set_style_arc_width(bg, AEM_SIZE_FACTOR_466(35), LV_PART_MAIN);
|
|
|
+ lv_obj_set_size(bg, AEM_SIZE_HOR_FACTOR_466(460), AEM_SIZE_VER_FACTOR_466(in_chart_hight + in_chart_align_y_to_up));
|
|
|
+ //lv_arc_set_bg_angles(bg, 0, 360);
|
|
|
+ //lv_arc_set_angles(bg, 0, 0);
|
|
|
+ lv_obj_remove_style(bg, NULL, LV_PART_KNOB);
|
|
|
+ lv_obj_clear_flag(bg, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_obj_add_flag(bg, LV_OBJ_FLAG_EVENT_BUBBLE | LV_OBJ_FLAG_GESTURE_BUBBLE | LV_OBJ_FLAG_SCROLL_CHAIN);
|
|
|
+ return bg;
|
|
|
+}
|
|
|
+
|
|
|
+static lv_obj_t *create_chart(lv_obj_t *par, int type)
|
|
|
+{
|
|
|
+ // 创建图表对象,并将其添加到指定的父对象中
|
|
|
+ lv_obj_t *chart = lv_chart_create(par);
|
|
|
+ if (chart == NULL)
|
|
|
+ {
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 设置图表对象的大小为 360x120
|
|
|
+ lv_obj_set_size(chart, AEM_SIZE_HOR_FACTOR_466(in_chart_width), AEM_SIZE_VER_FACTOR_466(in_chart_hight));
|
|
|
+ // 设置图表对象的内边距为0
|
|
|
+ lv_obj_set_style_pad_all(chart, 0, LV_PART_MAIN);
|
|
|
+ // 设置图表对象的间隙为0
|
|
|
+ lv_obj_set_style_pad_gap(chart, 0, LV_PART_MAIN);
|
|
|
+ // 设置图表对象的背景颜色为白色
|
|
|
+ lv_obj_set_style_bg_color(chart, lv_color_white(), LV_PART_MAIN);
|
|
|
+ // 设置图表对象的背景透明度为完全透明
|
|
|
+ lv_obj_set_style_bg_opa(chart, LV_OPA_TRANSP, LV_PART_MAIN);
|
|
|
+ // 设置图表对象的边框宽度为0,使边框不可见
|
|
|
+ lv_obj_set_style_border_width(chart, 0, LV_PART_MAIN);
|
|
|
+ // 设置图表对象的边框透明度为完全透明
|
|
|
+ lv_obj_set_style_border_opa(chart, LV_OPA_TRANSP, LV_PART_MAIN);
|
|
|
+ // 设置图表对象的轮廓宽度为0,使轮廓不可见
|
|
|
+ lv_obj_set_style_outline_width(chart, 0, LV_PART_MAIN);
|
|
|
+ // 设置图表对象的轮廓透明度为完全透明
|
|
|
+ lv_obj_set_style_outline_opa(chart, LV_OPA_TRANSP, LV_PART_MAIN);
|
|
|
+ // 设置图表对象的阴影宽度为0,使阴影不可见
|
|
|
+ lv_obj_set_style_shadow_width(chart, 0, LV_PART_MAIN);
|
|
|
+ // 设置图表对象的阴影透明度为完全透明
|
|
|
+ lv_obj_set_style_shadow_opa(chart, LV_OPA_TRANSP, LV_PART_MAIN);
|
|
|
+ // 设置图表数据点的线条宽度为3
|
|
|
+ lv_obj_set_style_line_width(chart, AEM_SIZE_FACTOR_466(3), LV_PART_ITEMS);
|
|
|
+ // 设置图表数据点的线条透明度为完全覆盖
|
|
|
+ lv_obj_set_style_line_opa(chart, LV_OPA_COVER, LV_PART_ITEMS);
|
|
|
+ // 设置图表数据点的线条颜色为蓝色
|
|
|
+ lv_obj_set_style_line_color(chart, lv_color_hex(0x36DCFF), LV_PART_ITEMS);
|
|
|
+ // 将图表对象水平居中对齐
|
|
|
+ lv_obj_align(chart, LV_ALIGN_TOP_MID, 0, AEM_SIZE_VER_FACTOR_466(in_chart_align_y_to_up));
|
|
|
+ // 将图表对象的类型设置为线图表,即用线连接数据点
|
|
|
+ lv_chart_set_type(chart, LV_CHART_TYPE_LINE);
|
|
|
+ // 设置图表对象的数据点数量为24
|
|
|
+ lv_chart_set_point_count(chart, in_chart_point_num);
|
|
|
+ // 设置图表对象的Y轴范围,最小值为chart_range_min,最大值为chart_range_max
|
|
|
+ lv_chart_set_range(chart, LV_CHART_AXIS_PRIMARY_Y, chart_range_min, chart_range_max);
|
|
|
+
|
|
|
+ lv_chart_set_div_line_count(chart, 0, 0); // 设置背景分界线
|
|
|
+ lv_obj_add_event_cb(chart, draw_event_cb, LV_EVENT_DRAW_PART_BEGIN, (void *)type);
|
|
|
+
|
|
|
+ lv_chart_series_t *series;
|
|
|
+ series = lv_chart_add_series(chart, lv_color_hex(0x36DCFF), LV_CHART_AXIS_PRIMARY_Y);
|
|
|
+
|
|
|
+ int value = 0;
|
|
|
+ // 将数据点添加到图表对象中
|
|
|
+ for (int i = 0; i < in_chart_point_num; i++)
|
|
|
+ {
|
|
|
+ aem_power_point_item_t *info = aem_get_baro_items_data();
|
|
|
+
|
|
|
+ value = info->input_power_blue_chart[i];
|
|
|
+
|
|
|
+ lv_chart_set_value_by_id(chart, series, i, value);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_chart_set_update_mode(chart, LV_CHART_UPDATE_MODE_SHIFT);
|
|
|
+ // lv_chart_refresh(chart);
|
|
|
+
|
|
|
+ return chart;
|
|
|
+}
|
|
|
+
|
|
|
+static void aem_create_input_point_page(lv_obj_t *par)
|
|
|
+{
|
|
|
+ s_power_point = (aem_struct_power_point *)lv_mem_alloc(sizeof(aem_struct_power_point));
|
|
|
+ if(s_power_point == NULL)
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ lv_memset(s_power_point, 0x00, sizeof(aem_struct_power_point));
|
|
|
+
|
|
|
+ s_power_point->bg = arc_bg_create(par);
|
|
|
+ if (s_power_point->bg)
|
|
|
+ {
|
|
|
+ s_power_point->input_power_blue_chart = create_chart(par, 0);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+lv_obj_t *aem_input_power_screen_create(lv_obj_t *par, bool widget_start)
|
|
|
+{
|
|
|
+ input_power_scr_ui_data_t *ext_data = load_res();
|
|
|
+ if (ext_data == NULL)
|
|
|
+ {
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ ext_data->widget_start = widget_start;
|
|
|
+ lv_obj_t *screen = aem_bg_create(par, DEF_UI_WIDTH, DEF_UI_HEIGHT, lv_color_black());
|
|
|
+ if (screen)
|
|
|
+ {
|
|
|
+ lv_obj_set_user_data(screen, ext_data);
|
|
|
+
|
|
|
+ aem_input_power_arc_show_create(screen);
|
|
|
+
|
|
|
+ aem_create_input_point_page(screen); // 创建点阵屏
|
|
|
+ }
|
|
|
+
|
|
|
+ return screen;
|
|
|
+}
|
|
|
+
|
|
|
+void aem_input_power_screen_del(lv_obj_t *par)
|
|
|
+{
|
|
|
+ if (par == NULL)
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ input_power_scr_ui_data_t *ext_data = lv_obj_get_user_data(par);
|
|
|
+ if (ext_data)
|
|
|
+ {
|
|
|
+ lv_mem_free(ext_data);
|
|
|
+ ext_data = NULL;
|
|
|
+ lv_obj_set_user_data(par, NULL);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#define RANGER_ONE_MIN 0
|
|
|
+#define RANGER_ONE_MAX 60
|
|
|
+#define RANGER_TWO_MIN 60
|
|
|
+#define RANGER_TWO_MAX 120
|
|
|
+#define RANGER_THREE_MIN 120
|
|
|
+#define RANGER_THREE_MAX 180
|
|
|
+#define RANGER_FOUR_MIN 180
|
|
|
+#define RANGER_FOUR_MAX 240
|
|
|
+#define RANGER_FIVE_MIN 240
|
|
|
+#define RANGER_FIVE_MAX 300
|
|
|
+#define RANGER_SIX_MIN 300
|
|
|
+#define RANGER_SIX_MAX 360
|
|
|
+#define RANGER_SEVEN_MIN 360
|
|
|
+#define RANGER_SEVEN_MAX 420
|
|
|
+#define RANGER_EIGHT_MIN 420
|
|
|
+#define RANGER_EIGHT_MAX 480
|
|
|
+#define RANGER_NINE_MIN 480
|
|
|
+#define RANGER_NINE_MAX 540
|
|
|
+#define RANGER_TEN_MIN 540
|
|
|
+#define RANGER_TEN_MAX 600
|
|
|
+
|
|
|
+#ifndef CONFIG_SIMULATOR
|
|
|
+extern float f_BusVoltage[2];
|
|
|
+extern float f_Power[2];
|
|
|
+extern float f_Current[2];
|
|
|
+#else
|
|
|
+static float f_Power[2] = {10.0, 15.0};
|
|
|
+static float f_BusVoltage[2] = {5.00, 5.00};
|
|
|
+static float f_Current[2] = {2.00, 3.00};
|
|
|
+static uint16_t chart_point_cnt = 0;
|
|
|
+static uint16_t chart_point_cnt_plus2 = 1;
|
|
|
+static uint8_t simulator_cnt = 0;
|
|
|
+#include "time.h"
|
|
|
+#endif
|
|
|
+void aem_input_power_screen_update(lv_obj_t *par)
|
|
|
+{
|
|
|
+ input_power_scr_ui_data_t *power_volt_cur_data = lv_obj_get_user_data(par);
|
|
|
+ uint16_t input_power_blue_chart_point_min = 600;
|
|
|
+ uint16_t input_power_blue_chart_point_max = 0;
|
|
|
+ bool f_Power_index;
|
|
|
+
|
|
|
+#ifdef CONFIG_SIMULATOR
|
|
|
+ // 设置随机数种子
|
|
|
+ //srand((unsigned int)time(0)); // 获取随机数
|
|
|
+
|
|
|
+ f_Current[0] = (float)(rand() % 3) + 0.04;
|
|
|
+ //f_BusVoltage[0] = (float)(rand() % 20) + 4.40;
|
|
|
+ //f_Power[0] = f_BusVoltage[0] * f_Current[0];
|
|
|
+
|
|
|
+ f_Current[1] = (float)(rand() % 3) + 0.04;
|
|
|
+ //f_BusVoltage[1] = (float)(rand() % 20) + 4.40;
|
|
|
+ //f_Power[1] = f_BusVoltage[1] * f_Current[1];
|
|
|
+
|
|
|
+ f_BusVoltage[0] = (float)(rand() % 20) + 0.50;
|
|
|
+ simulator_cnt++;
|
|
|
+ if (simulator_cnt < 13)
|
|
|
+ {
|
|
|
+ f_BusVoltage[1] = (float)(rand() % 2) + 0.50;
|
|
|
+ }
|
|
|
+ else if (simulator_cnt < 26)
|
|
|
+ {
|
|
|
+ f_BusVoltage[1] = (float)(rand() % 20) + 4.50;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ simulator_cnt = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ chart_point_cnt++;
|
|
|
+ if (chart_point_cnt > in_chart_point_num)
|
|
|
+ {
|
|
|
+ chart_point_cnt = 0;
|
|
|
+ chart_point_cnt_plus2++;
|
|
|
+ if (chart_point_cnt_plus2 > 11)
|
|
|
+ {
|
|
|
+ chart_point_cnt_plus2 = 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ f_Power[0] = (float)(rand() % (5 * chart_point_cnt_plus2)) + (5 * (chart_point_cnt_plus2 - 1));
|
|
|
+ f_Power[1] = (float)(rand() % (5 * chart_point_cnt_plus2)) + (5 * (chart_point_cnt_plus2 - 1));
|
|
|
+
|
|
|
+#endif
|
|
|
+
|
|
|
+ if (power_volt_cur_data)
|
|
|
+ {
|
|
|
+ f_Power_index = f_Power[0] > f_Power[1] ? 0 : 1;
|
|
|
+
|
|
|
+ if (s_power_point)
|
|
|
+ {
|
|
|
+ aem_power_point_item_t *info = aem_get_baro_items_data();
|
|
|
+
|
|
|
+ for (int i = in_chart_point_num - 1; i > 0; i--)
|
|
|
+ {
|
|
|
+ info->input_power_blue_chart[i] = info->input_power_blue_chart[i - 1];
|
|
|
+ }
|
|
|
+
|
|
|
+ info->input_power_blue_chart[0] = f_Power[f_Power_index] * 10.00;//rand() % 59 + 1;
|
|
|
+
|
|
|
+ for (int i = 0; i < in_chart_point_num; i++)
|
|
|
+ {
|
|
|
+ lv_chart_series_t *series = lv_chart_get_series_next(s_power_point->input_power_blue_chart, NULL);
|
|
|
+
|
|
|
+ lv_chart_set_value_by_id(s_power_point->input_power_blue_chart, series, i, info->input_power_blue_chart[i]);
|
|
|
+
|
|
|
+ if (info->input_power_blue_chart[i] < input_power_blue_chart_point_min)
|
|
|
+ {
|
|
|
+ input_power_blue_chart_point_min = info->input_power_blue_chart[i];
|
|
|
+ }
|
|
|
+ if (info->input_power_blue_chart[i] > input_power_blue_chart_point_max)
|
|
|
+ {
|
|
|
+ input_power_blue_chart_point_max = info->input_power_blue_chart[i];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (input_power_blue_chart_point_min <= RANGER_ONE_MAX)
|
|
|
+ {
|
|
|
+ chart_range_min = RANGER_ONE_MIN;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_min <= RANGER_TWO_MAX)
|
|
|
+ {
|
|
|
+ chart_range_min = RANGER_TWO_MIN;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_min <= RANGER_THREE_MAX)
|
|
|
+ {
|
|
|
+ chart_range_min = RANGER_THREE_MIN;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_min <= RANGER_FOUR_MAX)
|
|
|
+ {
|
|
|
+ chart_range_min = RANGER_FOUR_MIN;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_min <= RANGER_FIVE_MAX)
|
|
|
+ {
|
|
|
+ chart_range_min = RANGER_FIVE_MIN;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_min <= RANGER_SIX_MAX)
|
|
|
+ {
|
|
|
+ chart_range_min = RANGER_SIX_MIN;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_min <= RANGER_SEVEN_MAX)
|
|
|
+ {
|
|
|
+ chart_range_min = RANGER_SEVEN_MIN;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_min <= RANGER_EIGHT_MAX)
|
|
|
+ {
|
|
|
+ chart_range_min = RANGER_EIGHT_MIN;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_min <= RANGER_NINE_MAX)
|
|
|
+ {
|
|
|
+ chart_range_min = RANGER_NINE_MIN;
|
|
|
+ }
|
|
|
+ else //if (input_power_blue_chart_point_min <= RANGER_TEN_MAX)
|
|
|
+ {
|
|
|
+ chart_range_min = RANGER_TEN_MIN;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (input_power_blue_chart_point_max >= RANGER_TEN_MIN)
|
|
|
+ {
|
|
|
+ chart_range_max = RANGER_TEN_MAX;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_max >= RANGER_NINE_MIN)
|
|
|
+ {
|
|
|
+ chart_range_max = RANGER_NINE_MAX;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_max >= RANGER_EIGHT_MIN)
|
|
|
+ {
|
|
|
+ chart_range_max = RANGER_EIGHT_MAX;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_max >= RANGER_SEVEN_MIN)
|
|
|
+ {
|
|
|
+ chart_range_max = RANGER_SEVEN_MAX;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_max >= RANGER_SIX_MIN)
|
|
|
+ {
|
|
|
+ chart_range_max = RANGER_SIX_MAX;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_max >= RANGER_FIVE_MIN)
|
|
|
+ {
|
|
|
+ chart_range_max = RANGER_FIVE_MAX;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_max >= RANGER_FOUR_MIN)
|
|
|
+ {
|
|
|
+ chart_range_max = RANGER_FOUR_MAX;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_max >= RANGER_THREE_MIN)
|
|
|
+ {
|
|
|
+ chart_range_max = RANGER_THREE_MAX;
|
|
|
+ }
|
|
|
+ else if (input_power_blue_chart_point_max >= RANGER_TWO_MIN)
|
|
|
+ {
|
|
|
+ chart_range_max = RANGER_TWO_MAX;
|
|
|
+ }
|
|
|
+ else //if (input_power_blue_chart_point_max >= RANGER_ONE_MIN)
|
|
|
+ {
|
|
|
+ chart_range_max = RANGER_ONE_MAX;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (chart_range_max != chart_range_max_pre || chart_range_min != chart_range_min_pre)
|
|
|
+ {
|
|
|
+ chart_range_max_pre = chart_range_max;
|
|
|
+ chart_range_min_pre = chart_range_min;
|
|
|
+ lv_chart_set_range(s_power_point->input_power_blue_chart, LV_CHART_AXIS_PRIMARY_Y, chart_range_min, chart_range_max);
|
|
|
+ }
|
|
|
+ //=================================================================================//
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ char str_data[32] = {0};
|
|
|
+ sprintf(str_data, "%6.3f", f_Power[f_Power_index]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->in_power_value, str_data);
|
|
|
+
|
|
|
+ sprintf(str_data, "%6.3f", f_BusVoltage[f_Power_index]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->in_voltage_value, str_data);
|
|
|
+
|
|
|
+ sprintf(str_data, "%6.3f", f_Current[f_Power_index]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->in_current_value, str_data);
|
|
|
+ }
|
|
|
+}
|