How do you use the NavxMicroNavigationSensor type given by FTC to declare a new navx_device.
This is the code that we normally use to create a new navx_device and I want to find a way to replace the AHRS and instead use this new type to create a new navx_device.
private AHRS navx_device;
navx_device = AHRS.getInstance(hardwareMap.deviceInterfaceModule.get("dim2"),
NAVX_DIM_I2C_PORT,
AHRS.DeviceDataType.kProcessedData,
sensor_update_rate_hz);
This is created with Java.