14 lines
176 B
C
14 lines
176 B
C
#ifndef _ANALOGIN_H_
|
|
#define _ANALOGIN_H_
|
|
|
|
#include "conf.h"
|
|
|
|
void
|
|
analogin_init(void);
|
|
|
|
extern void
|
|
on_channel_measured(unsigned char channel
|
|
, unsigned int value);
|
|
|
|
#endif
|