/*----------------------------------------------------------------------------*/ /* Copyright (c) 2008-2019 FIRST. All Rights Reserved. */ /* Open Source Software - may be modified and shared by FRC teams. The code */ /* must be accompanied by the FIRST BSD license file in the root directory of */ /* the project. */ /*----------------------------------------------------------------------------*/ #include "frc/ADXL345_I2C.h" #include #include "frc/smartdashboard/SendableBuilder.h" #include "frc/smartdashboard/SendableRegistry.h" using namespace frc; ADXL345_I2C::ADXL345_I2C(I2C::Port port, Range range, int deviceAddress) : m_i2c(port, deviceAddress), m_simDevice("ADXL345_I2C", port, deviceAddress) { if (m_simDevice) { m_simRange = m_simDevice.CreateEnum("Range", true, {"2G", "4G", "8G", "16G"}, 0); m_simX = m_simDevice.CreateDouble("X Accel", false, 0.0); m_simX = m_simDevice.CreateDouble("Y Accel", false, 0.0); m_simZ = m_simDevice.CreateDouble("Z Accel", false, 0.0); } // Turn on the measurements m_i2c.Write(kPowerCtlRegister, kPowerCtl_Measure); // Specify the data format to read SetRange(range); HAL_Report(HALUsageReporting::kResourceType_ADXL345, HALUsageReporting::kADXL345_I2C, 0); SendableRegistry::GetInstance().AddLW(this, "ADXL345_I2C", port); } void ADXL345_I2C::SetRange(Range range) { m_i2c.Write(kDataFormatRegister, kDataFormat_FullRes | static_cast(range)); } double ADXL345_I2C::GetX() { return GetAcceleration(kAxis_X); } double ADXL345_I2C::GetY() { return GetAcceleration(kAxis_Y); } double ADXL345_I2C::GetZ() { return GetAcceleration(kAxis_Z); } double ADXL345_I2C::GetAcceleration(ADXL345_I2C::Axes axis) { if (axis == kAxis_X && m_simX) return m_simX.Get(); if (axis == kAxis_Y && m_simY) return m_simY.Get(); if (axis == kAxis_Z && m_simZ) return m_simZ.Get(); int16_t rawAccel = 0; m_i2c.Read(kDataRegister + static_cast(axis), sizeof(rawAccel), reinterpret_cast(&rawAccel)); return rawAccel * kGsPerLSB; } ADXL345_I2C::AllAxes ADXL345_I2C::GetAccelerations() { AllAxes data; if (m_simX && m_simY && m_simZ) { data.XAxis = m_simX.Get(); data.YAxis = m_simY.Get(); data.ZAxis = m_simZ.Get(); return data; } int16_t rawData[3]; m_i2c.Read(kDataRegister, sizeof(rawData), reinterpret_cast(rawData)); data.XAxis = rawData[0] * kGsPerLSB; data.YAxis = rawData[1] * kGsPerLSB; data.ZAxis = rawData[2] * kGsPerLSB; return data; } void ADXL345_I2C::InitSendable(SendableBuilder& builder) { builder.SetSmartDashboardType("3AxisAccelerometer"); auto x = builder.GetEntry("X").GetHandle(); auto y = builder.GetEntry("Y").GetHandle(); auto z = builder.GetEntry("Z").GetHandle(); builder.SetUpdateTable([=]() { auto data = GetAccelerations(); nt::NetworkTableEntry(x).SetDouble(data.XAxis); nt::NetworkTableEntry(y).SetDouble(data.YAxis); nt::NetworkTableEntry(z).SetDouble(data.ZAxis); }); }