mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
22 lines
343 B
C++
22 lines
343 B
C++
/*
|
|
* Si7210.h
|
|
*
|
|
* Created on: 5 Oct. 2020
|
|
* Author: Ralim
|
|
*/
|
|
|
|
#ifndef CORE_DRIVERS_SI7210_H_
|
|
#define CORE_DRIVERS_SI7210_H_
|
|
#include <stdint.h>
|
|
class Si7210 {
|
|
public:
|
|
//Return true if present
|
|
static bool detect();
|
|
|
|
static bool init();
|
|
static int16_t read();
|
|
private:
|
|
};
|
|
|
|
#endif /* CORE_DRIVERS_SI7210_H_ */
|