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.
17 lines
441 B
17 lines
441 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);
|
|
static 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 g_ozone_work_over(void);
|
|
void is_ozone_work_time_over(void);
|
|
#endif
|
|
|