I just bought an ArduIMU and I'm trying to send data to an Arduino. I set up the settings, here they are.
#define BOARD_VERSION 2
#define GPS_CONNECTION 0
#define GPS_PROTOCOL 1
#define ENABLE_AIR_START 0
#define GROUNDSTART_PIN 8
#define SPEEDFILT 2
#define PRINT_DEBUG 0
#define OUTPUTMODE 1
#define PRINT_DCM 1
#define PRINT_ANALOGS 1
#define PRINT_EULER 1
#define PRINT_GPS 0
#define PRINT_BINARY 1
#define PERFORMANCE_REPORTING 0
#define MAGNETIC_DECLINATION 2.15
OK, I set the binary mode to "1" instead of ASCII ("0"). How can I read the data sent by ArduIMU to Arduino and decode it?
DECISION:
Check out my blog, I wrote an article on how to read binary data from ArduIMU on Arduino
How to read binary data from ArduIMU - Codesigns.it
source
share