BLUETOOTH POSTURE CORRECTOR FOR $20. The code.
This program couldn't be made without open source code found on the internet. I assume anyone could find the libraries used or similar ones just by looking for keywords. //################################################################################################################################################################# //LIBRARIES: #include <MPU6050.h> // Library needed to read the accelerometer and giroscope module MPU6050. #include <I2Cdev.h> // Library needed to get I2C comms between MPU6050 and Arduino Pro Mini. #include <Wire.h> // Library I2Cdev.h needs library Wire.h by default. #include <LowPower.h> // This library might be useful in the future in case we need to save power (instead of changing the battery) #include "SingleEMAFilterLib.h" // Library used for getting extra low pass filtering, I couldn´t managed tweaking just wit...