You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#pragma once
//
#include <stdbool.h>
#include <stdint.h>
typedef enum { kworkPage, kerrorPage, } Page_t;
void lcs_change_page(Page_t page);
/***********************************************************************************************************************
* =====================================================workPage====================================================== * ***********************************************************************************************************************/ void lcs_count_donwload_light__set_one_light_time_min(int min) {} void lcs_count_donwload_light__set_count_num(int num); void lcs_count_donwload_light__trigger_flash(int lastfortime, bool retrigger); void lcs_status_light__set_color(bool r, bool g, bool b);
/***********************************************************************************************************************
* =====================================================ErrorPage===================================================== * ***********************************************************************************************************************/ void lcs_error_light__set_error(int errorNum); void lcs_error_light__clear_error(int errorNum);
|