19 lines
244 B
C++
19 lines
244 B
C++
/*
|
|
* BMA223.cpp
|
|
*
|
|
* Created on: 18 Sep. 2020
|
|
* Author: Ralim
|
|
*/
|
|
|
|
#include <BMA223.hpp>
|
|
|
|
|
|
bool BMA223::detect() {
|
|
}
|
|
|
|
void BMA223::initalize() {
|
|
}
|
|
|
|
void BMA223::getAxisReadings(int16_t& x, int16_t& y, int16_t& z) {
|
|
}
|