sggt/App/APP_WU/Inc/scr_setting_item_value.h

28 lines
676 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef _SCR_SETTING_ITEM_VALUE_H
#define _SCR_SETTING_ITEM_VALUE_H
#include "apps_gather.h"
#define LIGHT_ON HAL_GPIO_WritePin(light_GPIO_Port, light_Pin, GPIO_PIN_SET)
#define LIGHT_OFF HAL_GPIO_WritePin(light_GPIO_Port, light_Pin, GPIO_PIN_RESET)
//修改选项卡0的值
void set_item0_value(uint8_t con, int8_t step);
//修改选项卡1的值
void set_item1_value(uint8_t con, int8_t step);
//修改选项卡2的值
void set_item2_value(uint8_t con, int8_t step);
//修改选项卡3的值
void set_item3_value(uint8_t con, int8_t step);
//查看输入输出记录io -> 输入/输出page -> 指定页码
void show_IO_log(uint8_t io, uint8_t page);
#endif