|
@@ -1,8 +1,6 @@
|
|
|
-
|
|
|
-
|
|
|
-#include "aem_in_out_power_screen.h"
|
|
|
+#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"
|
|
@@ -32,6 +30,36 @@ typedef struct
|
|
|
|
|
|
} in_out_power_scr_ui_data_t;
|
|
|
|
|
|
+typedef struct
|
|
|
+{
|
|
|
+ lv_obj_t *bg;
|
|
|
+ lv_obj_t *input_power_blue_chart;
|
|
|
+ lv_obj_t *output_power_green_chart;
|
|
|
+} aem_struct_power_point;
|
|
|
+
|
|
|
+const uint16_t chart_width = 360;
|
|
|
+const uint8_t chart_hight = 120;
|
|
|
+const uint8_t chart_align_y_to_up = 40;
|
|
|
+const uint16_t chart_point_num = 12;
|
|
|
+static uint16_t chart_range_max = 50;
|
|
|
+static uint16_t chart_range_min = 0;
|
|
|
+static uint16_t output_power_green_chart_range_max = 50;
|
|
|
+static uint16_t output_power_green_chart_range_min = 0;
|
|
|
+static uint16_t chart_range_max_pre = 50;
|
|
|
+static uint16_t chart_range_min_pre = 0;
|
|
|
+static uint16_t output_power_green_chart_range_max_pre = 50;
|
|
|
+static uint16_t output_power_green_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()
|
|
|
{
|
|
|
in_out_power_scr_ui_data_t *ext_data = lv_mem_alloc(sizeof(in_out_power_scr_ui_data_t));
|
|
@@ -63,7 +91,7 @@ static lv_obj_t *activity_value_item_create(lv_obj_t *par, lv_color_t value_colo
|
|
|
lv_obj_t *value_label = text_canvas_create(bg);
|
|
|
if (value_label)
|
|
|
{
|
|
|
- lv_obj_set_width(value_label, AEM_SIZE_HOR_FACTOR_466(180));
|
|
|
+ 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);
|
|
@@ -87,7 +115,86 @@ static void link_icon_event_cb(lv_event_t *event)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+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 };
|
|
|
+ if (e->user_data == 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);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ a.x1 = dsc->draw_area->x1 - (IMG_SCENE_IN_OUT_POWER_PIC_POINT_OUT.header.w / 2);
|
|
|
+ a.x2 = dsc->draw_area->x1 + (IMG_SCENE_IN_OUT_POWER_PIC_POINT_OUT.header.w / 2) - 1;
|
|
|
+ a.y1 = dsc->draw_area->y1 - (IMG_SCENE_IN_OUT_POWER_PIC_POINT_OUT.header.h / 2);
|
|
|
+ a.y2 = dsc->draw_area->y1 + (IMG_SCENE_IN_OUT_POWER_PIC_POINT_OUT.header.h / 2) - 1;
|
|
|
+ lv_draw_img(dsc->draw_ctx, &img_dsc, &a, &IMG_SCENE_IN_OUT_POWER_PIC_POINT_OUT);
|
|
|
+ }
|
|
|
+
|
|
|
+ #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_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
{
|
|
|
in_out_power_scr_ui_data_t *activity_ui_data = lv_obj_get_user_data(par);
|
|
@@ -97,7 +204,7 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
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(200), 0);
|
|
|
+ lv_obj_set_style_width(in_power_item, AEM_SIZE_FACTOR_466(POWER_STYLE_WIDTH), 0);
|
|
|
|
|
|
if (in_power_item)
|
|
|
{
|
|
@@ -108,7 +215,7 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
lv_obj_t *out_power_item = activity_value_item_create(par, (lv_color_t)LV_COLOR_BLACK, out_power_data, 70, aem_font_def());
|
|
|
lv_obj_set_style_bg_color(out_power_item, (lv_color_t)LV_COLOR_GREEN, 0);
|
|
|
lv_obj_set_style_radius(out_power_item, AEM_SIZE_FACTOR_466(10), 0);
|
|
|
- lv_obj_set_style_width(out_power_item, AEM_SIZE_FACTOR_466(200), 0);
|
|
|
+ lv_obj_set_style_width(out_power_item, AEM_SIZE_FACTOR_466(POWER_STYLE_WIDTH), 0);
|
|
|
|
|
|
if (out_power_item)
|
|
|
{
|
|
@@ -168,10 +275,10 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
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_sub(), 0);
|
|
|
+ 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(50), AEM_SIZE_VER_FACTOR_466(18));
|
|
|
+ lv_obj_align(in_power_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(58), AEM_SIZE_VER_FACTOR_466(28));
|
|
|
}
|
|
|
|
|
|
lv_obj_t *in_voltage_unit_label = text_canvas_create(in_voltage_item);
|
|
@@ -180,7 +287,7 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
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(20), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
+ lv_obj_align(in_voltage_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(26), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
}
|
|
|
|
|
|
lv_obj_t *in_current_unit_label = text_canvas_create(in_current_item);
|
|
@@ -189,20 +296,20 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
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(20), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
+ lv_obj_align(in_current_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(26), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
}
|
|
|
|
|
|
lv_obj_align(out_power_item, LV_ALIGN_RIGHT_MID, AEM_SIZE_HOR_FACTOR_466(-10), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
- lv_obj_align_to(out_voltage_item, out_power_item, LV_ALIGN_OUT_BOTTOM_MID, AEM_SIZE_HOR_FACTOR_466(0), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_align_to(out_voltage_item, out_power_item, LV_ALIGN_OUT_BOTTOM_MID, AEM_SIZE_HOR_FACTOR_466(-15), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
lv_obj_align_to(out_current_item, out_voltage_item, LV_ALIGN_OUT_BOTTOM_MID, 0, 0);
|
|
|
|
|
|
lv_obj_t *out_power_unit_label = text_canvas_create(out_power_item);
|
|
|
if (out_power_unit_label)
|
|
|
{
|
|
|
- lv_obj_set_style_text_font(out_power_unit_label, aem_font_sub(), 0);
|
|
|
+ lv_obj_set_style_text_font(out_power_unit_label, aem_font_small(), 0);
|
|
|
text_canvas_set_text(out_power_unit_label, "W");
|
|
|
lv_obj_set_style_text_color(out_power_unit_label, (lv_color_t)LV_COLOR_BLACK, 0);
|
|
|
- lv_obj_align(out_power_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(50), AEM_SIZE_VER_FACTOR_466(18));
|
|
|
+ lv_obj_align(out_power_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(58), AEM_SIZE_VER_FACTOR_466(28));
|
|
|
}
|
|
|
|
|
|
lv_obj_t *out_voltage_unit_label = text_canvas_create(out_voltage_item);
|
|
@@ -211,7 +318,7 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
lv_obj_set_style_text_font(out_voltage_unit_label, aem_font_small(), 0);
|
|
|
text_canvas_set_text(out_voltage_unit_label, "V");
|
|
|
lv_obj_set_style_text_color(out_voltage_unit_label, (lv_color_t)LV_COLOR_GREEN, 0);
|
|
|
- lv_obj_align(out_voltage_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(20), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
+ lv_obj_align(out_voltage_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(25), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
}
|
|
|
|
|
|
lv_obj_t *out_current_unit_label = text_canvas_create(out_current_item);
|
|
@@ -220,7 +327,7 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
lv_obj_set_style_text_font(out_current_unit_label, aem_font_small(), 0);
|
|
|
text_canvas_set_text(out_current_unit_label, "A");
|
|
|
lv_obj_set_style_text_color(out_current_unit_label, (lv_color_t)LV_COLOR_GREEN, 0);
|
|
|
- lv_obj_align(out_current_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(20), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
+ lv_obj_align(out_current_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(25), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
}
|
|
|
|
|
|
// Arcs
|
|
@@ -232,13 +339,13 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
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 *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)
|
|
@@ -248,6 +355,116 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
lv_obj_align(in_icon, LV_ALIGN_LEFT_MID, AEM_SIZE_HOR_FACTOR_466(20), AEM_SIZE_VER_FACTOR_466(80));
|
|
|
}
|
|
|
|
|
|
+ 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(10), 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 *out_bg_icon1 = lv_img_create(arc_bg);
|
|
|
+ if (out_bg_icon1)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(out_bg_icon1, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(out_bg_icon1, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPGREEN_ARROW);
|
|
|
+ lv_obj_align(out_bg_icon1, LV_ALIGN_RIGHT_MID, AEM_SIZE_HOR_FACTOR_466(-10), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_set_style_img_opa(out_bg_icon1, BG_ICON1_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *out_bg_icon2 = lv_img_create(out_bg_icon1);
|
|
|
+ if (out_bg_icon2)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(out_bg_icon2, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(out_bg_icon2, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPGREEN_ARROW);
|
|
|
+ lv_obj_align_to(out_bg_icon2, out_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(out_bg_icon2, BG_ICON2_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *out_bg_icon3 = lv_img_create(out_bg_icon2);
|
|
|
+ if (out_bg_icon3)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(out_bg_icon3, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(out_bg_icon3, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPGREEN_ARROW);
|
|
|
+ lv_obj_align_to(out_bg_icon3, out_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(out_bg_icon3, BG_ICON3_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *out_bg_icon4 = lv_img_create(out_bg_icon3);
|
|
|
+ if (out_bg_icon4)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(out_bg_icon4, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(out_bg_icon4, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPGREEN_ARROW);
|
|
|
+ lv_obj_align_to(out_bg_icon4, out_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(out_bg_icon4, BG_ICON4_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *out_bg_icon5 = lv_img_create(out_bg_icon4);
|
|
|
+ if (out_bg_icon5)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(out_bg_icon5, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(out_bg_icon5, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPGREEN_ARROW);
|
|
|
+ lv_obj_align_to(out_bg_icon5, out_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(out_bg_icon5, BG_ICON5_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *out_bg_icon6 = lv_img_create(out_bg_icon5);
|
|
|
+ if (out_bg_icon6)
|
|
|
+ {
|
|
|
+ //lv_obj_clear_flag(out_bg_icon6, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_img_set_src(out_bg_icon6, &IMG_SCENE_IN_OUT_POWER_PIC_DEEPGREEN_ARROW);
|
|
|
+ lv_obj_align_to(out_bg_icon6, out_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(out_bg_icon6, BG_ICON6_IMG_OPA, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
lv_obj_t *out_icon = lv_img_create(arc_bg);
|
|
|
if (out_icon)
|
|
|
{
|
|
@@ -276,6 +493,140 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
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(chart_hight + 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(chart_width), AEM_SIZE_VER_FACTOR_466(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);
|
|
|
+ // 设置图表数据点的线条颜色为蓝色
|
|
|
+ if (type == 0) // input?output
|
|
|
+ {
|
|
|
+ lv_obj_set_style_line_color(chart, lv_color_hex(0x36DCFF), LV_PART_ITEMS);
|
|
|
+ }
|
|
|
+ else //if (type == 1)
|
|
|
+ {
|
|
|
+ lv_obj_set_style_line_color(chart, lv_color_hex(0x88FF56), LV_PART_ITEMS);
|
|
|
+ }
|
|
|
+ // 将图表对象水平居中对齐
|
|
|
+ lv_obj_align(chart, LV_ALIGN_TOP_MID, 0, AEM_SIZE_VER_FACTOR_466(chart_align_y_to_up));
|
|
|
+ // 将图表对象的类型设置为线图表,即用线连接数据点
|
|
|
+ lv_chart_set_type(chart, LV_CHART_TYPE_LINE);
|
|
|
+ // 设置图表对象的数据点数量为24
|
|
|
+ lv_chart_set_point_count(chart, chart_point_num);
|
|
|
+ //if (type == 0) // input?output
|
|
|
+ {
|
|
|
+ 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;
|
|
|
+ if (type == 0) // input?output
|
|
|
+ {
|
|
|
+ series = lv_chart_add_series(chart, lv_color_hex(0x36DCFF), LV_CHART_AXIS_PRIMARY_Y);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ series = lv_chart_add_series(chart, lv_color_hex(0x88FF56), LV_CHART_AXIS_PRIMARY_Y);
|
|
|
+ }
|
|
|
+
|
|
|
+ int value = 0;
|
|
|
+ // 将数据点添加到图表对象中
|
|
|
+ for (int i = 0; i < chart_point_num; i++)
|
|
|
+ {
|
|
|
+ aem_power_point_item_t *info = aem_get_baro_items_data();
|
|
|
+ if (type == 0)
|
|
|
+ {
|
|
|
+ value = info->input_power_blue_chart[i];
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ value = info->output_power_green_chart[i];
|
|
|
+ }
|
|
|
+
|
|
|
+ if (type == 0)
|
|
|
+ {
|
|
|
+ lv_chart_set_value_by_id(chart, series, i, value);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ 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_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);
|
|
|
+ s_power_point->output_power_green_chart = create_chart(par, 1);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
lv_obj_t *aem_in_out_power_screen_create(lv_obj_t *par, bool widget_start)
|
|
|
{
|
|
|
in_out_power_scr_ui_data_t *ext_data = load_res();
|
|
@@ -285,15 +636,17 @@ lv_obj_t *aem_in_out_power_screen_create(lv_obj_t *par, bool widget_start)
|
|
|
}
|
|
|
|
|
|
ext_data->widget_start = widget_start;
|
|
|
- lv_obj_t *screen1 = aem_bg_create(par, DEF_UI_WIDTH, DEF_UI_HEIGHT, lv_color_black());
|
|
|
- if (screen1)
|
|
|
+ lv_obj_t *screen = aem_bg_create(par, DEF_UI_WIDTH, DEF_UI_HEIGHT, lv_color_black());
|
|
|
+ if (screen)
|
|
|
{
|
|
|
- lv_obj_set_user_data(screen1, ext_data);
|
|
|
+ lv_obj_set_user_data(screen, ext_data);
|
|
|
+
|
|
|
+ aem_in_out_power_arc_show_create(screen);
|
|
|
|
|
|
- aem_in_out_power_arc_show_create(screen1);
|
|
|
+ aem_create_point_page(screen); // 创建点阵屏
|
|
|
}
|
|
|
|
|
|
- return screen1;
|
|
|
+ return screen;
|
|
|
}
|
|
|
|
|
|
void aem_in_out_power_screen_del(lv_obj_t *par)
|
|
@@ -312,28 +665,312 @@ void aem_in_out_power_screen_del(lv_obj_t *par)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+#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;
|
|
|
+#include "time.h"
|
|
|
#endif
|
|
|
void aem_in_out_power_screen_update(lv_obj_t *par)
|
|
|
{
|
|
|
in_out_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 output_power_green_chart_point_min = 600;
|
|
|
+ uint16_t input_power_blue_chart_point_max = 0;
|
|
|
+ uint16_t output_power_green_chart_point_max = 0;
|
|
|
|
|
|
#ifdef CONFIG_SIMULATOR
|
|
|
- float f_Power[2] = {10.0, 12.0};
|
|
|
- float f_BusVoltage[2] = {5.00, 4.00};
|
|
|
- float f_Current[2] = {2.00, 3.00};
|
|
|
+ // 设置随机数种子
|
|
|
+ //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];
|
|
|
+
|
|
|
+ chart_point_cnt++;
|
|
|
+ if (chart_point_cnt > 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)
|
|
|
{
|
|
|
+ if (s_power_point)
|
|
|
+ {
|
|
|
+ aem_power_point_item_t *info = aem_get_baro_items_data();
|
|
|
+
|
|
|
+ for (int i = chart_point_num - 1; i > 0; i--)
|
|
|
+ {
|
|
|
+ info->input_power_blue_chart[i] = info->input_power_blue_chart[i - 1];
|
|
|
+ info->output_power_green_chart[i] = info->output_power_green_chart[i - 1];
|
|
|
+ }
|
|
|
+
|
|
|
+ if (f_Power[0] > 0.08 && f_Power[1] < 0.08)
|
|
|
+ {
|
|
|
+ info->input_power_blue_chart[0] = f_Power[0] * 10.00;//rand() % 59 + 1;
|
|
|
+ info->output_power_green_chart[0] = f_Power[1] * 10.00;//rand() % 59 + 1;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ info->input_power_blue_chart[0] = f_Power[1] * 10.00;//rand() % 59 + 1;
|
|
|
+ info->output_power_green_chart[0] = f_Power[0] * 10.00;//rand() % 59 + 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ for (int i = 0; i < 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]);
|
|
|
+
|
|
|
+ series = lv_chart_get_series_next(s_power_point->output_power_green_chart, NULL);
|
|
|
+
|
|
|
+ lv_chart_set_value_by_id(s_power_point->output_power_green_chart, series, i, info->output_power_green_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 (info->output_power_green_chart[i] < output_power_green_chart_point_min)
|
|
|
+ {
|
|
|
+ output_power_green_chart_point_min = info->output_power_green_chart[i];
|
|
|
+ }
|
|
|
+ if (info->output_power_green_chart[i] > output_power_green_chart_point_max)
|
|
|
+ {
|
|
|
+ output_power_green_chart_point_max = info->output_power_green_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);
|
|
|
+ }
|
|
|
+ //=================================================================================//
|
|
|
+
|
|
|
+ if (output_power_green_chart_point_min <= RANGER_ONE_MAX)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_min = RANGER_ONE_MIN;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_min <= RANGER_TWO_MAX)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_min = RANGER_TWO_MIN;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_min <= RANGER_THREE_MAX)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_min = RANGER_THREE_MIN;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_min <= RANGER_FOUR_MAX)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_min = RANGER_FOUR_MIN;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_min <= RANGER_FIVE_MAX)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_min = RANGER_FIVE_MIN;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_min <= RANGER_SIX_MAX)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_min = RANGER_SIX_MIN;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_min <= RANGER_SEVEN_MAX)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_min = RANGER_SEVEN_MIN;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_min <= RANGER_EIGHT_MAX)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_min = RANGER_EIGHT_MIN;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_min <= RANGER_NINE_MAX)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_min = RANGER_NINE_MIN;
|
|
|
+ }
|
|
|
+ else //if (output_power_green_chart_point_min <= RANGER_TEN_MAX)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_min = RANGER_TEN_MIN;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (output_power_green_chart_point_max >= RANGER_TEN_MIN)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_max = RANGER_TEN_MAX;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_max >= RANGER_NINE_MIN)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_max = RANGER_NINE_MAX;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_max >= RANGER_EIGHT_MIN)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_max = RANGER_EIGHT_MAX;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_max >= RANGER_SEVEN_MIN)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_max = RANGER_SEVEN_MAX;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_max >= RANGER_SIX_MIN)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_max = RANGER_SIX_MAX;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_max >= RANGER_FIVE_MIN)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_max = RANGER_FIVE_MAX;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_max >= RANGER_FOUR_MIN)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_max = RANGER_FOUR_MAX;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_max >= RANGER_THREE_MIN)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_max = RANGER_THREE_MAX;
|
|
|
+ }
|
|
|
+ else if (output_power_green_chart_point_max >= RANGER_TWO_MIN)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_max = RANGER_TWO_MAX;
|
|
|
+ }
|
|
|
+ else //if (output_power_green_chart_point_max >= RANGER_ONE_MIN)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_max = RANGER_ONE_MAX;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (output_power_green_chart_range_max != output_power_green_chart_range_max_pre || output_power_green_chart_range_min != output_power_green_chart_range_min_pre)
|
|
|
+ {
|
|
|
+ output_power_green_chart_range_max_pre = output_power_green_chart_range_max;
|
|
|
+ output_power_green_chart_range_min_pre = output_power_green_chart_range_min;
|
|
|
+ lv_chart_set_range(s_power_point->output_power_green_chart, LV_CHART_AXIS_PRIMARY_Y, output_power_green_chart_range_min, output_power_green_chart_range_max);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
char str_data[32] = {0};
|
|
|
|
|
|
//if (power_volt_cur_data->in_power_value)
|
|
|
{
|
|
|
- if (f_Power[1] < 0.08)
|
|
|
+ if (f_Power[0] > 0.08 && f_Power[1] < 0.08)
|
|
|
{
|
|
|
sprintf(str_data, "%6.3f", f_Power[0]);
|
|
|
text_canvas_set_text(power_volt_cur_data->in_power_value, str_data);
|
|
@@ -353,7 +990,7 @@ void aem_in_out_power_screen_update(lv_obj_t *par)
|
|
|
}
|
|
|
//if (power_volt_cur_data->in_voltage_value)
|
|
|
{
|
|
|
- if (f_BusVoltage[1] < 2.5)
|
|
|
+ if (f_BusVoltage[0] > 2.5 && f_BusVoltage[1] < 2.5)
|
|
|
{
|
|
|
sprintf(str_data, "%6.3f", f_BusVoltage[0]);
|
|
|
text_canvas_set_text(power_volt_cur_data->in_voltage_value, str_data);
|
|
@@ -373,7 +1010,7 @@ void aem_in_out_power_screen_update(lv_obj_t *par)
|
|
|
}
|
|
|
//if (power_volt_cur_data->in_current_value)
|
|
|
{
|
|
|
- if (f_Current[1] < 0.03)
|
|
|
+ if (f_Current[0] > 0.03 && f_Current[1] < 0.03)
|
|
|
{
|
|
|
sprintf(str_data, "%6.3f", f_Current[0]);
|
|
|
text_canvas_set_text(power_volt_cur_data->in_current_value, str_data);
|