You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _BH1750_H_ |
|
#define _BH1750_H_ |
|
|
|
|
|
#include <Arduino.h> |
|
|
|
#define BH1750_ADR 0x23 |
|
|
|
void BH1750_Init(void); |
|
unsigned int BH1750_ReadLux( void ); |
|
|
|
|
|
|
|
#endif
|
|
|