initial commit

This commit is contained in:
2025-03-21 09:59:09 +01:00
parent 59637f4fa8
commit f690d03c57
355 changed files with 297020 additions and 0 deletions
@@ -0,0 +1,158 @@
/**
*
* @license MIT License
*
* Copyright (c) 2023 lewis he
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* @file CM32181_LightSensorInterrupt.ino
* @author Lewis He (lewishe@outlook.com)
* @date 2023-09-13
*
*/
#include <Wire.h>
#include <SPI.h>
#include <Arduino.h>
#include "SensorCM32181.hpp"
#ifndef SENSOR_SDA
#define SENSOR_SDA 39
#endif
#ifndef SENSOR_SCL
#define SENSOR_SCL 40
#endif
#ifndef SENSOR_IRQ
#define SENSOR_IRQ 1
#endif
SensorCM32181 light;
#ifdef ARDUINO_T_AMOLED_147
#include <XPowersAXP2101.tpp> //PMU Library https://github.com/lewisxhe/XPowersLib.git
XPowersAXP2101 power;
#endif
void beginPower()
{
// T_AMOLED_147 The PMU voltage needs to be turned on to use the sensor
#if defined(ARDUINO_T_AMOLED_147)
bool ret = power.begin(Wire, AXP2101_SLAVE_ADDRESS, SENSOR_SDA, SENSOR_SCL);
if (!ret) {
Serial.println("PMU NOT FOUND!\n");
}
power.setALDO1Voltage(1800); power.enableALDO1();
power.setALDO3Voltage(3300); power.enableALDO3();
power.setBLDO1Voltage(1800); power.enableBLDO1();
#endif
}
#include "SensorWireHelper.h"
void setup()
{
Serial.begin(115200);
while (!Serial);
beginPower();
SensorWireHelper::dumpDevices(Wire);
pinMode(SENSOR_IRQ, INPUT_PULLUP);
if (!light.begin(Wire, CM32181_ADDR_PRIMARY, SENSOR_SDA, SENSOR_SCL)) {
Serial.println("Failed to find CM32181 - check your wiring!");
while (1) {
delay(1000);
}
}
Serial.println("Init CM32181 Sensor success!");
int id = light.getChipID();
Serial.print("CM32181 ID = "); Serial.println(id);
/*
Sensitivity mode selection
SAMPLING_X1
SAMPLING_X2
SAMPLING_X1_8
SAMPLING_X1_4
*/
light.setSampling(SensorCM32181::SAMPLING_X2,
SensorCM32181::INTEGRATION_TIME_400MS
);
// Set high and low thresholds. If the threshold is higher or lower than the set threshold, an interrupt will be triggered.
uint16_t lowThresholdRaw = 100;
uint16_t highThresholdRaw = 250;
light.setIntThreshold(lowThresholdRaw, highThresholdRaw);
//Power On sensor
light.powerOn();
// Turn on interrupt
light.enableINT();
}
void loop()
{
int pinVal = digitalRead(SENSOR_IRQ) ;
if (pinVal == LOW) {
// After triggering the interrupt, the interrupt status must be read
SensorCM32181::InterruptEvent event = light.getIrqStatus();
// Turn off interrupts
light.disableINT();
// Get Status
switch (event) {
case SensorCM32181::ALS_EVENT_LOW_TRIGGER:
Serial.println("Low interrupt event");
break;
case SensorCM32181::ALS_EVENT_HIGH_TRIGGER:
Serial.println("High interrupt event");
break;
default:
Serial.println("This is an impossible place to reach");
break;
}
// Get raw data
uint16_t raw = light.getRaw();
// Get conversion data , The manual does not provide information on how to obtain the
// calibration value, now use the calibration value 0.28 provided by the manual
float lux = light.getLux();
Serial.print(" IRQ:"); Serial.print(pinVal);
Serial.print(" RAW:"); Serial.print(raw);
Serial.print(" Lux:"); Serial.println(lux);
// Turn on interrupts
light.enableINT();
}
delay(800);
}