You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#ifndef _NOTAUS_H_
|
|
#define _NOTAUS_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define POWER_ON 2
|
|
#define ARMED 1
|
|
#define POWER_OFF 0
|
|
|
|
extern uint8_t notaus_state;
|
|
|
|
void do_notaus(void);
|
|
|
|
#endif
|