Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 3 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ The STCC4 is Sensirion's next generation miniature CO2 sensor for indoor air qua

The default I²C address of [STCC4](https://sensirion.com/products/catalog/STCC4) is **0x64**.

> [!NOTE]
> The SEK-STCC4 board from Sensirion includes a STCC4 and a SHT4x for temperature and humidity compensation, which is controlled by the STCC4 through the integrated I2C controller interface. The provided examples are designed considering this sensor configuration.


## Connect the sensor

Expand All @@ -43,27 +42,12 @@ For special setups you find the sensor pinout in the section below.
## Documentation & Quickstart

See the [documentation page](https://sensirion.github.io/python-i2c-stcc4) for an API description and a
[quickstart](https://sensirion.github.io/python-i2c-stcc4/execute-measurements.html) example.
[quickstart](https://sensirion.github.io/python-i2c-stcc4/quickstart.html) example.


## Contributing

### Check coding style

The coding style can be checked with [`flake8`](http://flake8.pycqa.org/):

```bash
pip install -e .[test] # Install requirements
flake8 # Run style check
```

In addition, we check the formatting of files with
[`editorconfig-checker`](https://editorconfig-checker.github.io/):

```bash
pip install editorconfig-checker==2.0.3 # Install requirements
editorconfig-checker # Run check
```
In case you want to contribute to this project, please read the [contribution guidelines]((https://sensirion.github.io/python-i2c-stcc4/contributing.html)).

## License

Expand Down
26 changes: 0 additions & 26 deletions ci/checkin_doc.sh

This file was deleted.

16 changes: 0 additions & 16 deletions ci/set_git_config.sh

This file was deleted.

14 changes: 7 additions & 7 deletions metadata.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# driver generation metadata
generator_version: 1.6.1
model_version: 3.5.1
dg_status: released
is_manually_modified: false
first_generated: '2025-02-24 11:47'
last_generated: '2026-04-30 12:17'
# driver generation metadata
generator_version: 1.9.1
model_version: 3.5.1
dg_status: released
is_manually_modified: false
first_generated: '2025-02-24 11:47'
last_generated: '2026-09-15 17:08'
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ description = "I2C driver for the Sensirion STCC4 sensor family"

readme = "README.md"
version = "1.1.0"
requires-python = ">=3.8,<4.0"

requires-python = ">=3.8.4,<4.0"

authors = [
{ name = "Sensirion", email = "info@sensirion.com" },
Expand Down Expand Up @@ -45,8 +46,10 @@ dependencies = [
docs=[
"jinja2~=3.1.6",
"sphinx-rtd-theme==3.0.2",
"sphinx==8.2.3",
"sphinx>=7.0,<8.0;python_version < '3.11'",
"sphinx==8.2.3;python_version >= '3.11'",
"lazy-object-proxy ~=1.7.1",
"sphinx-tabs~=3.5.0",
"sphinx-autoapi~=3.0.0",
]

Expand Down
Loading