19 lines
225 B
C
Executable File
19 lines
225 B
C
Executable File
#ifndef _ir_h_
|
|
#define _ir_h_
|
|
|
|
#include "msp.h"
|
|
#include "util.h"
|
|
#include <stdint.h>
|
|
|
|
void ir_init(void);
|
|
|
|
void ir_read_ready(void);
|
|
|
|
void ir_read_value(uint8_t *value);
|
|
|
|
void ir_read_off(void);
|
|
|
|
void test_ir(void);
|
|
|
|
#endif
|