mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
70 lines
1.3 KiB
C++
70 lines
1.3 KiB
C++
//
|
|
// FILE: max44009_setAutomaticMode.ino
|
|
// AUTHOR: Rob Tillaart
|
|
// VERSION: 0.1.0
|
|
// PURPOSE: demo of max44009 library
|
|
// DATE: 2020-01-30
|
|
//
|
|
// Released to the public domain
|
|
//
|
|
|
|
|
|
#include "Wire.h"
|
|
#include "Max44009.h"
|
|
|
|
Max44009 myLux(0x4A);
|
|
|
|
uint32_t lastDisplay = 0;
|
|
|
|
|
|
void setup()
|
|
{
|
|
Serial.begin(115200);
|
|
Serial.print("\nStart max44009_setAutomaticMode : ");
|
|
Serial.println(MAX44009_LIB_VERSION);
|
|
|
|
Wire.begin();
|
|
|
|
myLux.setAutomaticMode();
|
|
}
|
|
|
|
|
|
void loop()
|
|
{
|
|
uint32_t interval = 100;
|
|
if (millis() - lastDisplay >= interval)
|
|
{
|
|
lastDisplay += interval;
|
|
float lux = myLux.getLux();
|
|
int err = myLux.getError();
|
|
|
|
// in automatic mode TIM & CDR are automatic generated
|
|
// and read only (in manual mode they are set by the user
|
|
int conf = myLux.getConfiguration();
|
|
int CDR = (conf & 0x80) >> 3;
|
|
int TIM = (conf & 0x07);
|
|
int integrationTime = myLux.getIntegrationTime();
|
|
|
|
if (err != 0)
|
|
{
|
|
Serial.print("Error:\t");
|
|
Serial.println(err);
|
|
}
|
|
else
|
|
{
|
|
Serial.print("lux:\t");
|
|
Serial.print(lux);
|
|
Serial.print("\tCDR:\t");
|
|
Serial.print(CDR);
|
|
Serial.print("\tTIM:\t");
|
|
Serial.print(TIM);
|
|
Serial.print("\t");
|
|
Serial.print(integrationTime);
|
|
Serial.print(" ms");
|
|
Serial.println();
|
|
}
|
|
}
|
|
}
|
|
|
|
// END OF FILE
|