mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-13 08:32:08 +00:00

* Add __has_include blocks for sensors * Put BMP and BME back in the right sensors * Split environmental_base to environmental_extra, to compile the working sensor libs for Native * Remove hard-coded checks for ARCH_PORTDUINO * Un-clobber bmx160 * Move BusIO to environmental_extra due to Armv7 compile error * Move to forked BusIO for the moment * Switch to Meshtastic ICM-20948 lib for Portduino support * Use 20948 for compass direction * Compass is more than just RAK4631 * Cleanup for 20948 compass * use Meshtastic branch of 20948 lib * Check for HAS_SCREEN for showing calibration screen * No accelerometerThread on STM32
92 lines
2.4 KiB
C++
Executable File
92 lines
2.4 KiB
C++
Executable File
#pragma once
|
|
#ifndef _MOTION_SENSOR_H_
|
|
#define _MOTION_SENSOR_H_
|
|
|
|
#define MOTION_SENSOR_CHECK_INTERVAL_MS 100
|
|
#define MOTION_SENSOR_CLICK_THRESHOLD 40
|
|
|
|
#include "../configuration.h"
|
|
|
|
#if !defined(ARCH_STM32WL) && !MESHTASTIC_EXCLUDE_I2C
|
|
|
|
#include "../PowerFSM.h"
|
|
#include "../detect/ScanI2C.h"
|
|
#include "../graphics/Screen.h"
|
|
#include "../graphics/ScreenFonts.h"
|
|
#include "../power.h"
|
|
#include "Wire.h"
|
|
|
|
// Base class for motion processing
|
|
class MotionSensor
|
|
{
|
|
public:
|
|
explicit MotionSensor(ScanI2C::FoundDevice foundDevice);
|
|
virtual ~MotionSensor(){};
|
|
|
|
// Get the device type
|
|
ScanI2C::DeviceType deviceType();
|
|
|
|
// Get the device address
|
|
uint8_t deviceAddress();
|
|
|
|
// Get the device port
|
|
ScanI2C::I2CPort devicePort();
|
|
|
|
// Initialise the motion sensor
|
|
inline virtual bool init() { return false; };
|
|
|
|
// The method that will be called each time our sensor gets a chance to run
|
|
// Returns the desired period for next invocation (or RUN_SAME for no change)
|
|
// Refer to /src/concurrency/OSThread.h for more information
|
|
inline virtual int32_t runOnce() { return MOTION_SENSOR_CHECK_INTERVAL_MS; };
|
|
|
|
virtual void calibrate(uint16_t forSeconds){};
|
|
|
|
protected:
|
|
// Turn on the screen when a tap or motion is detected
|
|
virtual void wakeScreen();
|
|
|
|
// Register a button press when a double-tap is detected
|
|
virtual void buttonPress();
|
|
|
|
#if !defined(MESHTASTIC_EXCLUDE_SCREEN) && HAS_SCREEN
|
|
// draw an OLED frame (currently only used by the RAK4631 BMX160 sensor)
|
|
static void drawFrameCalibration(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
|
|
#endif
|
|
|
|
ScanI2C::FoundDevice device;
|
|
|
|
// Do calibration if true
|
|
bool doCalibration = false;
|
|
uint32_t endCalibrationAt = 0;
|
|
};
|
|
|
|
namespace MotionSensorI2C
|
|
{
|
|
|
|
static inline int readRegister(uint8_t address, uint8_t reg, uint8_t *data, uint8_t len)
|
|
{
|
|
Wire.beginTransmission(address);
|
|
Wire.write(reg);
|
|
Wire.endTransmission();
|
|
Wire.requestFrom((uint8_t)address, (uint8_t)len);
|
|
uint8_t i = 0;
|
|
while (Wire.available()) {
|
|
data[i++] = Wire.read();
|
|
}
|
|
return 0; // Pass
|
|
}
|
|
|
|
static inline int writeRegister(uint8_t address, uint8_t reg, uint8_t *data, uint8_t len)
|
|
{
|
|
Wire.beginTransmission(address);
|
|
Wire.write(reg);
|
|
Wire.write(data, len);
|
|
return (0 != Wire.endTransmission());
|
|
}
|
|
|
|
} // namespace MotionSensorI2C
|
|
|
|
#endif
|
|
|
|
#endif |