LSM303

1.0.0

LSM303 Accelerometer access through Swift on Raspberry Pi
flx/LSM303

What's New

Working Version 1.0

2019-01-27T16:29:25Z

LSM303

A Swift driver for the LSM303DLHC controller over I2C, using SwiftyGPIO. The code has been tested with the FLORA sensor sold by Adafruit (https://www.adafruit.com/product/1247).

import Foundation
import LSM303

print("start")
let lsm303 = LSM303(for: .RaspberryPi3)
lsm303.setAccScale(scale: .G2)
lsm303.setMagGain(gain: .GAIN_1_3)

while (true) {
        lsm303.read()
        print("accel \(lsm303.accel.x) \(lsm303.accel.y) \(lsm303.accel.z) mag \(lsm303.mag.x) \(lsm303.mag.y) \(lsm303.mag.z)")
}

Description

  • Swift Tools 4.0.0
View More Packages from this Author

Dependencies

Last updated: Tue Mar 19 2024 21:58:58 GMT-0900 (Hawaii-Aleutian Daylight Time)