0.1.5 TSL235R

This commit is contained in:
Rob Tillaart 2023-11-23 14:06:30 +01:00
parent ee4287d9aa
commit bba6e3954d
6 changed files with 22 additions and 6 deletions

View File

@ -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.1.5] - 2023-11-23
- update readme.md
## [0.1.4] - 2023-02-18
- updated cf value in **calculateFactor()**
- add **#define TSL235_DEFAULT_VOLTAGE** to allow set voltage from command line.
@ -15,7 +19,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- update license 2023
- minor edits
## [0.1.3] - 2022-11-26
- Add RP2040 support to build-CI.
- Add CHANGELOG.md

View File

@ -2,8 +2,11 @@
[![Arduino CI](https://github.com/RobTillaart/TSL235R/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
[![Arduino-lint](https://github.com/RobTillaart/TSL235R/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/TSL235R/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/TSL235R/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/TSL235R/actions/workflows/jsoncheck.yml)
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/TSL235R.svg)](https://github.com/RobTillaart/TSL235R/issues)
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/TSL235R/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/TSL235R.svg?maxAge=3600)](https://github.com/RobTillaart/TSL235R/releases)
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/TSL235R.svg)](https://registry.platformio.org/libraries/robtillaart/TSL235R)
# TSL235R
@ -37,6 +40,7 @@ The library provides two **irradiance()** functions to do that for you.
- https://github.com/RobTillaart/TSL260R analog IR irradiance variant.
- https://github.com/RobTillaart/AnalogUVSensor
- https://github.com/RobTillaart/ML8511 UV sensor
- https://github.com/RobTillaart/BH1750FVI_RT lux sensor
## Connection
@ -117,3 +121,12 @@ See examples for typical usage.
- makes irradiance(Hz) obsolete.
- performance is less!
## 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,

View File

@ -1,7 +1,7 @@
//
// FILE: TSL235R.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.1.4
// VERSION: 0.1.5
// DATE: 2020-05-29
// PURPOSE: library for the TSL235R light to frequency convertor
// URL: https://github.com/RobTillaart/TSL235R

View File

@ -2,13 +2,13 @@
//
// FILE: TSL235R.h
// AUTHOR: Rob Tillaart
// VERSION: 0.1.4
// VERSION: 0.1.5
// DATE: 2020-05-29
// PURPOSE: library for the TSL235R light to frequency convertor
// URL: https://github.com/RobTillaart/TSL235R
#define TSL235R_LIB_VERSION (F("0.1.4"))
#define TSL235R_LIB_VERSION (F("0.1.5"))
#include "Arduino.h"

View File

@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/RobTillaart/TSL235R.git"
},
"version": "0.1.4",
"version": "0.1.5",
"license": "MIT",
"frameworks": "*",
"platforms": "*",

View File

@ -1,5 +1,5 @@
name=TSL235R
version=0.1.4
version=0.1.5
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Library for the TSL235R light to frequency convertor.