147 lines
3.7 KiB
C++
147 lines
3.7 KiB
C++
/**
|
|
*
|
|
* @license MIT License
|
|
*
|
|
* Copyright (c) 2022 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 QMI8658_WakeOnMotionCallBack.ino
|
|
* @author Lewis He (lewishe@outlook.com)
|
|
* @date 2022-11-07
|
|
*
|
|
*/
|
|
#include <Arduino.h>
|
|
#include <Wire.h>
|
|
#include <SPI.h>
|
|
#include "SensorQMI8658.hpp"
|
|
|
|
// #define USE_WIRE
|
|
|
|
#define I2C1_SDA 17
|
|
#define I2C1_SCL 18
|
|
|
|
|
|
SensorQMI8658 qmi;
|
|
|
|
IMUdata acc;
|
|
IMUdata gyr;
|
|
|
|
|
|
bool interruptFlag = false;
|
|
|
|
void setFlag(void)
|
|
{
|
|
interruptFlag = true;
|
|
}
|
|
|
|
void wakeUp()
|
|
{
|
|
Serial.println("Awake!");
|
|
}
|
|
|
|
|
|
void setup()
|
|
{
|
|
Serial.begin(115200);
|
|
while (!Serial);
|
|
|
|
#ifdef LILYGO_TBEAM_SUPREME_V3_0
|
|
extern bool setupPower();
|
|
setupPower();
|
|
#endif
|
|
|
|
#ifdef USE_WIRE
|
|
//Using WIRE !!
|
|
if (!qmi.begin(Wire, QMI8658_L_SLAVE_ADDRESS, I2C1_SDA, I2C1_SCL)) {
|
|
Serial.println("Failed to find QMI8658 - check your wiring!");
|
|
while (1) {
|
|
delay(1000);
|
|
}
|
|
}
|
|
#else
|
|
|
|
#ifndef CONFIG_IDF_TARGET_ESP32
|
|
//Use tbeams3 defalut spi pinz
|
|
#define SPI_MOSI (35)
|
|
#define SPI_SCK (36)
|
|
#define SPI_MISO (37)
|
|
#define SPI_CS (47)
|
|
#define IMU_CS (34)
|
|
#define IMU_INT1 (33) //INTERRUPT PIN1 & PIN2 ,Use or logic to form a pin
|
|
|
|
SPI.begin(SPI_SCK, SPI_MISO, SPI_MOSI);
|
|
pinMode(SPI_CS, OUTPUT); //sdcard pin set high
|
|
digitalWrite(SPI_CS, HIGH);
|
|
if (!qmi.begin(IMU_CS, SPI_MOSI, SPI_MISO, SPI_SCK)) {
|
|
|
|
#else
|
|
//Use esp32dev module defalut spi pin
|
|
#define IMU_CS (5)
|
|
#define IMU_INT1 (15)
|
|
#define IMU_INT2 (22)
|
|
if (!qmi.begin(IMU_CS)) {
|
|
#endif
|
|
Serial.println("Failed to find QMI8658 - check your wiring!");
|
|
while (1) {
|
|
delay(1000);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
/* Get chip id*/
|
|
Serial.print("Device ID:");
|
|
Serial.println(qmi.getChipID(), HEX);
|
|
|
|
// enabling wake on motion low power mode with a threshold of 200 mg and
|
|
// an accelerometer data rate of 128 Hz.
|
|
qmi.configWakeOnMotion();
|
|
|
|
|
|
qmi.setWakeupMotionEventCallBack(wakeUp);
|
|
|
|
/*
|
|
* When the QMI8658 is configured as Wom, the interrupt level is arbitrary,
|
|
* not absolute high or low, and it is in the jump transition state
|
|
*/
|
|
pinMode(IMU_INT1, INPUT_PULLUP);
|
|
#ifdef IMU_INT2
|
|
pinMode(IMU_INT2, INPUT_PULLUP);
|
|
attachInterrupt(IMU_INT2, setFlag, CHANGE);
|
|
#else
|
|
attachInterrupt(IMU_INT1, setFlag, CHANGE);
|
|
#endif
|
|
|
|
|
|
// Print register configuration information
|
|
qmi.dumpCtrlRegister();
|
|
}
|
|
|
|
|
|
void loop()
|
|
{
|
|
|
|
if (interruptFlag) {
|
|
interruptFlag = false;
|
|
qmi.readSensorStatus();
|
|
}
|
|
}
|
|
|
|
|
|
|