mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.1.4 TSL260R
This commit is contained in:
parent
bba6e3954d
commit
9b91d277fc
@ -6,17 +6,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
|
||||
## [0.1.3] - 2023-02-18
|
||||
## [0.1.4] - 2023-11-23
|
||||
- update readme.md
|
||||
|
||||
|
||||
## [0.1.3] - 2023-02-18
|
||||
- refactor constructor
|
||||
- update readme.md
|
||||
- update GitHub actions
|
||||
- update license 2023
|
||||
- minor edits
|
||||
|
||||
|
||||
## [0.1.2] - 2022-11-27
|
||||
|
||||
- add getter / setter for \_aa and \_bb
|
||||
- add unit tests for get/set above
|
||||
- update comments
|
||||
@ -25,7 +26,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
- fix space in .cpp name
|
||||
|
||||
## [0.1.1] - 2022-11-27
|
||||
|
||||
- update documentation
|
||||
- add analogRead Constructor
|
||||
- add irradiance() for internal analogRead()
|
||||
@ -35,7 +35,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
- add keywords.txt
|
||||
|
||||
## [0.1.0] - 2022-11-25
|
||||
|
||||
- initial version - written on datasheet only
|
||||
Need to buy hardware for testing.
|
||||
|
||||
|
@ -2,8 +2,11 @@
|
||||
[![Arduino CI](https://github.com/RobTillaart/TSL260R/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
|
||||
[![Arduino-lint](https://github.com/RobTillaart/TSL260R/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/TSL260R/actions/workflows/arduino-lint.yml)
|
||||
[![JSON check](https://github.com/RobTillaart/TSL260R/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/TSL260R/actions/workflows/jsoncheck.yml)
|
||||
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/TSL260R.svg)](https://github.com/RobTillaart/TSL260R/issues)
|
||||
|
||||
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/TSL260R/blob/master/LICENSE)
|
||||
[![GitHub release](https://img.shields.io/github/release/RobTillaart/TSL260R.svg?maxAge=3600)](https://github.com/RobTillaart/TSL260R/releases)
|
||||
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/TSL260R.svg)](https://registry.platformio.org/libraries/robtillaart/TSL260R)
|
||||
|
||||
|
||||
# TSL260R
|
||||
@ -149,7 +152,6 @@ See examples.
|
||||
- fix the dependency of **irradiance()**
|
||||
- derived class?
|
||||
- optimize code
|
||||
-
|
||||
|
||||
#### Could
|
||||
|
||||
@ -157,8 +159,15 @@ See examples.
|
||||
- Normalized Output Voltage vs Angular Displacement correction
|
||||
- figure 11
|
||||
- temperature correction
|
||||
-
|
||||
|
||||
|
||||
#### 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: TSL260R.cpp
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.1.3
|
||||
// VERSION: 0.1.4
|
||||
// DATE: 2022-11-25
|
||||
// PURPOSE: library for the TSL260R IR to voltage convertor
|
||||
// URL: https://github.com/RobTillaart/TSL260R
|
||||
|
@ -2,13 +2,13 @@
|
||||
//
|
||||
// FILE: TSL260R.h
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.1.3
|
||||
// VERSION: 0.1.4
|
||||
// DATE: 2022-11-25
|
||||
// PURPOSE: library for the TSL260R IR to voltage convertor
|
||||
// URL: https://github.com/RobTillaart/TSL260R
|
||||
|
||||
|
||||
#define TSL260R_LIB_VERSION (F("0.1.3"))
|
||||
#define TSL260R_LIB_VERSION (F("0.1.4"))
|
||||
|
||||
#include "Arduino.h"
|
||||
|
||||
@ -79,6 +79,6 @@ public:
|
||||
};
|
||||
|
||||
|
||||
// -- END OF FILE --
|
||||
// -- END OF FILE --
|
||||
|
||||
|
||||
|
@ -8,8 +8,10 @@ TSL262R KEYWORD1
|
||||
|
||||
# Methods and Functions (KEYWORD2)
|
||||
irradiance KEYWORD2
|
||||
|
||||
setWavelength KEYWORD2
|
||||
getWavelength KEYWORD2
|
||||
|
||||
getWaveLengthFactor KEYWORD2
|
||||
calculateWaveLengthFactor KEYWORD2
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/RobTillaart/TSL260R.git"
|
||||
},
|
||||
"version": "0.1.3",
|
||||
"version": "0.1.4",
|
||||
"license": "MIT",
|
||||
"frameworks": "*",
|
||||
"platforms": "*",
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=TSL260R
|
||||
version=0.1.3
|
||||
version=0.1.4
|
||||
author=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
sentence=Arduino library for the TSL260R, TSL261R and TSL262R infrared to voltage convertor.
|
||||
|
Loading…
x
Reference in New Issue
Block a user