rdz_ttgo_sonde/libraries/SondeLib/Scanner.h

25 wiersze
309 B
C
Czysty Zwykły widok Historia

2019-04-04 06:11:14 +00:00
#ifndef _SCANNER_H
#define _SCANNER_H
2019-04-04 21:46:48 +00:00
#include <stdlib.h>
#include <stdint.h>
#include <Arduino.h>
#ifndef inttypes_h
#include <inttypes.h>
#endif
2019-04-04 06:11:14 +00:00
class Scanner
{
2019-04-04 21:46:48 +00:00
private:
void fillTiles(uint8_t *row, int value);
public:
void plotResult();
2019-04-04 06:11:14 +00:00
void scan(void);
};
extern Scanner scanner;
#endif