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.
 
 
 
 

24 lines
701 B

#ifndef __OZONE_WORK_H__
#define __OZONE_WORK_H__
#include <stdbool.h> //¶¨Òå²¼¶û
#include <stdint.h>
#include "port.h"
#include "timer.h"
#include "systick.h"
void gears_led_on(uint8_t led_number);
void timing_led_on(uint8_t led_number);
void set_ozen_gears(int ozen_gears);
void ozone_work_mode(int mode);
void set_ozone_work_time(void);
void timing_ozone_work_over(void);
void is_ozone_work_time_over(void);
void is_ozone_interva_time_over(void);
void set_interval_time(void);
static void ozone_interval_begin(void);
static void close_ozone_work(void);
bool get_ozone_starting_up_state(void);
void process_switch_key(void);
void power_on_ozone_work_state(void);
#endif