mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.3.1 SHT31_SW
This commit is contained in:
parent
3336a0dced
commit
ee4497e49a
@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
|
||||
## [0.3.1] - 2024-09-21
|
||||
- add dependency, fixes part of #14
|
||||
- minor edits
|
||||
|
||||
## [0.3.0] - 2024-05-31
|
||||
- add buffers to SW I2C, see issue #12, should fix the SW I2C on AVR.
|
||||
- verified with SHT31 on AVR UNO
|
||||
|
@ -1,7 +1,7 @@
|
||||
//
|
||||
// FILE: SHT31_SW.cpp
|
||||
// AUTHOR: Rob Tillaart, Gunter Haug
|
||||
// VERSION: 0.3.0
|
||||
// VERSION: 0.3.1
|
||||
// DATE: 2019-02-08 (base SHT31 lib)
|
||||
// PURPOSE: Arduino library for the SHT31 temperature and humidity sensor
|
||||
// to be used with the SoftWire library instead of (hardware) Wire.
|
||||
|
@ -2,7 +2,7 @@
|
||||
//
|
||||
// FILE: SHT31_SW.h
|
||||
// AUTHOR: Rob Tillaart, Gunter Haug
|
||||
// VERSION: 0.3.0
|
||||
// VERSION: 0.3.1
|
||||
// DATE: 2019-02-08 (base SHT31 lib)
|
||||
// PURPOSE: Arduino library for the SHT31 temperature and humidity sensor
|
||||
// to be used with the SoftWire library instead of (hardware) Wire.
|
||||
@ -12,7 +12,7 @@
|
||||
// https://github.com/RobTillaart/SHT31
|
||||
|
||||
|
||||
#define SHT31_SW_LIB_VERSION (F("0.3.0"))
|
||||
#define SHT31_SW_LIB_VERSION (F("0.3.1"))
|
||||
|
||||
|
||||
#include "Arduino.h"
|
||||
|
@ -1,5 +1,6 @@
|
||||
# Syntax Colouring Map For SHT31_SW temperature and humidity sensor
|
||||
|
||||
#
|
||||
# same as SHT31
|
||||
|
||||
# Data types (KEYWORD1)
|
||||
SHT31_SW KEYWORD1
|
||||
|
@ -29,9 +29,14 @@
|
||||
"owner": "Steve Marple",
|
||||
"name": "AsyncDelay",
|
||||
"version": "^1.1.2"
|
||||
},
|
||||
{
|
||||
"owner": "RobTillaart",
|
||||
"name": "SHT31",
|
||||
"version": "^0.3.8"
|
||||
}
|
||||
],
|
||||
"version": "0.3.0",
|
||||
"version": "0.3.1",
|
||||
"license": "MIT",
|
||||
"frameworks": "arduino",
|
||||
"platforms": "*",
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=SHT31_SW
|
||||
version=0.3.0
|
||||
version=0.3.1
|
||||
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
|
||||
@ -8,5 +8,5 @@ category=Sensors
|
||||
url=https://github.com/RobTillaart/SHT31_SW
|
||||
architectures=*
|
||||
includes=SHT31_SW.h
|
||||
depends=SoftWire,AsyncDelay
|
||||
depends=AsyncDelay,SoftWire,SHT31
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user