-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate SCD4x driver from SCD4x model version 1.0
- Loading branch information
Driver Generator 2
committed
Jan 29, 2025
1 parent
229d854
commit cb36ee7
Showing
18 changed files
with
2,148 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
name: Quality check | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
push: | ||
pull_request: | ||
branches: | ||
- master | ||
- main | ||
|
||
jobs: | ||
arduino-quality: | ||
uses: sensirion/.github/.github/workflows/driver.arduino.check.yml@main | ||
with: | ||
expect-arduino-examples: true | ||
lint-lib-manager-check: update | ||
# change to "update" once you published the driver on Arduino library registry | ||
lint-lib-manager-check: submit | ||
|
||
code-generation-check: | ||
uses: sensirion/.github/.github/workflows/driver.generated.metadata_check.yml@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,22 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
# CHANGELOG | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## Unreleased | ||
|
||
## [0.4.0] - 2023-03-06 | ||
|
||
### Added | ||
- Methods for ASC (Automatic Self Calibration) | ||
|
||
### Breaking changes | ||
- Renamed getDataReadyStatus to getDataReadyFlag | ||
|
||
### Fixed | ||
- RH/T conversion now uses correct constant: `2^16 - 1` | ||
- Fixed a few comments | ||
- Initializing the output variables to zero | ||
|
||
## [0.3.1] - 2021-04-30 | ||
|
||
### Changed | ||
## [Unreleased] | ||
|
||
* Increase timing for single shot from 1350ms to 5000ms | ||
* Increase timing for self test from 5500ms to 10000ms | ||
|
||
|
||
## [0.3.0] - 2021-03-01 | ||
## [1.0.0] - 2025-1-30 | ||
|
||
### Added | ||
- Convenience interfaces taking care of unit conversion to and from ticks. | ||
|
||
### Fixed | ||
- wake-up interface handles missing ACK from sensor on wake up. | ||
|
||
|
||
## [0.2.0] - 2021-02-10 | ||
|
||
### Changed | ||
|
||
* Updated Sensirion Core library version from 0.4.0 to 0.4.2. This includes the | ||
renaming of the library header file from `SensirionCoreArduinoLibrary.h` to | ||
`SensirionCore.h`. | ||
* Define `SCD4X_I2C_ADDRESS` as hex instead of dec (unchanged value). | ||
- All commands according to data sheet | ||
## [0.1.0] - 2021-2-1 | ||
|
||
### Added | ||
|
||
* Added warning about limited EEPROM write cycles. | ||
|
||
## [0.1.0] - 2021-02-05 | ||
|
||
Initial release | ||
- Initial version | ||
- Check latest 0.x.x version for changelog prior to version 1.0.0 | ||
|
||
[0.3.1]: https://github.com/Sensirion/arduino-i2c-scd4x/compare/0.3.0...0.3.1 | ||
[0.3.0]: https://github.com/Sensirion/arduino-i2c-scd4x/compare/0.2.0...0.3.0 | ||
[0.2.0]: https://github.com/Sensirion/arduino-i2c-scd4x/compare/0.1.0...0.2.0 | ||
[0.1.0]: https://github.com/Sensirion/arduino-i2c-scd4x/releases/tag/0.1.0 | ||
[Unreleased]: https://github.com/Sensirion/arduino-i2c-scd4x/compare/1.0.0...HEAD | ||
[1.0.0]: https://github.com/Sensirion/arduino-i2c-scd4x/compare/0.1.0...1.0.0 | ||
[0.1.0]: https://github.com/Sensirion/arduino-i2c-scd4x/releases/tag/0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.