Swiftpack.co - samco182/SwiftySHT20 as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by samco182.
samco182/SwiftySHT20 2.0.0-beta1
:zap: A Swift library for the I2C SHT20 Humidity and Temperature Sensor.
⭐️ 20
🕓 4 years ago
.package(url: "https://github.com/samco182/SwiftySHT20.git", from: "2.0.0-beta1")

SwiftySHT20

A Swift library for the I2C SHT20 Humidity and Temperature Sensor.

Summary

This is a SwiftyGPIO based library for controlling the SHT20 Humidity and Temperature sensor.

You will be able to read via I2C the sensor's humidity and temperatures values, its internal User Register data, write different configuration to the User Register, and soft reset the device.

For more information regarding the sensor's functionality, you can consult its datasheet.

Hardware Details

The sensor should be powered using 3.3 V.

The I2C pins on the RaspberryPi (pin 3 SDA, pin 5 SCL) need to be enabled via raspi-config before you can use them (restart required), and by enabling the I2C pins you will lose the ability to use the pins as standard GPIOs.

Supported Boards

Every board supported by SwiftyGPIO: RaspberryPis, BeagleBones, C.H.I.P., etc...

To use this library, you'll need a Linux ARM board running Swift 4.x 🚗.

The example below will use a Raspberry Pi 3B+ board, but you can easily modify the example to use one of the other supported boards. A full working demo project for the RaspberryPi3B+ is available in the Example directory.

Installation

First of all, makes sure your board is running Swift 4.x ⚠️!

Since Swift 4.x supports Swift Package Manager, you only need to add SwiftySHT20 as a dependency in your project's Package.swift file:

let package = Package(
    name: "MyProject",
    dependencies: [
        .package(url: "https://github.com/samco182/SwiftySHT20", from: "1.0.0"),
    ]
    targets: [
        .target(
            name: "MyProject", 
            dependencies: ["SwiftySHT20"]),
    ]
)

Then run swift package update to install the dependency.

Usage

The first thing is to initialize an instance of SwiftySHT20. Once you have your sht20 object, you can obtain the sensor's humidity and temperature readings:

import SwiftySHT20

// You can also initialize the object with SwiftySHT20() which defaults to .RaspberryPi3
let sht20 = SwiftySHT20(for: .RaspberryPi3) 

if sht20.isDeviceReachable() {
    let temperature = sht20.readTemperature()
    let humidity = sht20.readHumidity()

    print(String(format: "Temperature: %.2f °C, ", temperature.cValue))
    print(String(format: "Humidity: %.2f", humidity.value)+"%\n\n")
}

If you want to read the sensor's User Register or modify any of its configurable values, you can easily do it by using the following functions:

// Reading User Register
func readUserRegister() -> UserRegister

// Modifying User Register
func setResolution(_ resolution: UserRegisterMask.Resolution)
func enableOnChipHeater(_ isEnabled: Bool)
func activateEndOfBatteryAlert(_ isActive: Bool)

If by any chance you want to reset the sensor, you can easily do it by running the following function without removing the power source:

func softReset()

Note 🔍

If you encounter some problems connecting to the sensor, or sht20.isDeviceReachable() keeps returning false you could follow this i2c debugging guide.

GitHub

link
Stars: 20
Last commit: 4 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Dependencies

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics