basic reading and printing works

This commit is contained in:
2019-04-07 20:35:05 +02:00
parent ba31b296eb
commit d8bdcc3eed
10 changed files with 174 additions and 62 deletions

13
analogin.h Normal file
View File

@@ -0,0 +1,13 @@
#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