mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.1.2 SHT31_SWW
This commit is contained in:
parent
73c63c2db9
commit
73cbab23d9
@ -6,11 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
|
||||
## [0.1.2] - 2023-11-22
|
||||
- update readme.md
|
||||
|
||||
|
||||
## [0.1.1] - 2023-07-23
|
||||
- update documentation
|
||||
- minor edits
|
||||
|
||||
|
||||
## [0.1.0] - 2023-03-23
|
||||
- initial version, derives from SHT31 0.3.8
|
||||
- uses **SoftwareWire.h** to get SHT85 working on UNO.
|
||||
|
@ -1,9 +1,12 @@
|
||||
|
||||
[![Arduino CI](https://github.com/robtillaart/SHT31_SWW/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
|
||||
[![JSON check](https://github.com/RobTillaart/SHT31_SWW/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/SHT31_SWW/actions/workflows/jsoncheck.yml)
|
||||
[![Arduino CI](https://github.com/RobTillaart/SHT31_SWW/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
|
||||
[![Arduino-lint](https://github.com/RobTillaart/SHT31_SWW/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/SHT31_SWW/actions/workflows/arduino-lint.yml)
|
||||
[![JSON check](https://github.com/RobTillaart/SHT31_SWW/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/SHT31_SWW/actions/workflows/jsoncheck.yml)
|
||||
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/SHT31_SWW.svg)](https://github.com/RobTillaart/SHT31_SWW/issues)
|
||||
|
||||
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/SHT31_SWW/blob/master/LICENSE)
|
||||
[![GitHub release](https://img.shields.io/github/release/RobTillaart/SHT31_SWW.svg?maxAge=3600)](https://github.com/RobTillaart/SHT31_SWW/releases)
|
||||
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/SHT31_SWW.svg)](https://registry.platformio.org/libraries/robtillaart/SHT31_SWW)
|
||||
|
||||
|
||||
# SHT31_SWW
|
||||
@ -194,3 +197,12 @@ Returns false if reading fails or in case of a CRC failure.
|
||||
|
||||
#### Wont
|
||||
|
||||
|
||||
## Support
|
||||
|
||||
If you appreciate my libraries, you can support the development and maintenance.
|
||||
Improve the quality of the libraries by providing issues and Pull Requests, or
|
||||
donate through PayPal or GitHub sponsors.
|
||||
|
||||
Thank you,
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
//
|
||||
// FILE: SHT31_SWW.cpp
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.1.1
|
||||
// VERSION: 0.1.2
|
||||
// DATE: 2019-02-08 (base SHT31 lib)
|
||||
// PURPOSE: Arduino library for the SHT31 temperature and humidity sensor
|
||||
// to be used with the SoftwareWire library instead of (hardware) Wire.
|
||||
|
@ -2,7 +2,7 @@
|
||||
//
|
||||
// FILE: SHT31_SWW.h
|
||||
// AUTHOR: Rob Tillaart, Gunter Haug
|
||||
// VERSION: 0.1.1
|
||||
// VERSION: 0.1.2
|
||||
// DATE: 2019-02-08 (base SHT31 lib)
|
||||
// PURPOSE: Arduino library for the SHT31 temperature and humidity sensor
|
||||
// to be used with the SoftwareWire library instead of (hardware) Wire.
|
||||
@ -17,7 +17,7 @@
|
||||
#include "SHT31.h"
|
||||
|
||||
|
||||
#define SHT31_SWW_LIB_VERSION (F("0.1.1"))
|
||||
#define SHT31_SWW_LIB_VERSION (F("0.1.2"))
|
||||
|
||||
|
||||
class SHT31_SWW : public SHT31
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Syntax Colouring Map For SHT31 temperature and humidity sensor
|
||||
# Syntax Colouring Map For SHT31_SWW temperature and humidity sensor
|
||||
|
||||
|
||||
# Data types (KEYWORD1)
|
||||
|
@ -26,9 +26,9 @@
|
||||
"version": "^1.6.0"
|
||||
}
|
||||
],
|
||||
"version": "0.1.1",
|
||||
"version": "0.1.2",
|
||||
"license": "MIT",
|
||||
"frameworks": "arduino",
|
||||
"platforms": "*",
|
||||
"platforms": "avr",
|
||||
"headers": "SHT31_SWW.h"
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
name=SHT31_SWW
|
||||
version=0.1.1
|
||||
version=0.1.2
|
||||
author=Rob Tillaart <rob.tillaart@gmail.com>, Gunter Haug
|
||||
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
sentence=Arduino library for the I2C SHT31 temperature and humidity sensor
|
||||
paragraph=uses SoftwareWire,SHT30,SHT35,SHT85
|
||||
paragraph=uses SoftwareWire,SHT30,SHT35,SHT85. AVR only.
|
||||
category=Sensors
|
||||
url=https://github.com/RobTillaart/SHT31_SWW
|
||||
architectures=uno
|
||||
|
Loading…
x
Reference in New Issue
Block a user