1
0
forked from me/IronOS

Simplify I2C initalisation

This commit is contained in:
Ben V. Brown
2020-09-18 19:50:50 +10:00
parent 65ae7c8b13
commit f374787564
8 changed files with 120 additions and 84 deletions

View File

@@ -0,0 +1,18 @@
/*
* 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) {
}