mirror of
https://github.com/a2633063/zTC1.git
synced 2025-12-08 12:58:15 +08:00
16 lines
296 B
C
16 lines
296 B
C
|
|
#ifndef __USER_KEY_H_
|
|
#define __USER_KEY_H_
|
|
|
|
|
|
#include "mico.h"
|
|
#include "MiCOKit_EXT.h"
|
|
|
|
extern void user_led_set(char x);
|
|
extern void key_init(void);
|
|
extern void user_relay_set(unsigned char x,unsigned char y );
|
|
extern void user_relay_set_all( char y );
|
|
extern bool relay_out( void );
|
|
|
|
#endif
|