mirror of
https://github.com/oopuuu/zTC1.git
synced 2025-12-12 21:18:13 +08:00
18 lines
343 B
C
18 lines
343 B
C
|
|
#ifndef __USER_KEY_H_
|
|
#define __USER_KEY_H_
|
|
|
|
|
|
#include "mico.h"
|
|
#include "micokit_ext.h"
|
|
|
|
void user_led_set(char x);
|
|
void key_init(void);
|
|
void user_relay_set(unsigned char x,unsigned char y);
|
|
void user_relay_set_all(char y);
|
|
bool relay_out(void);
|
|
const unsigned char* get_socket_status();
|
|
void set_socket_status(char* socket_status);
|
|
|
|
#endif
|