Skip to content

Commit d77bddf

Browse files
committed
Basic rust implementation
1 parent eae80ef commit d77bddf

File tree

6 files changed

+1201
-1
lines changed

6 files changed

+1201
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ examples/raspberry-pi/sensirion_i2c_hal.*
77
examples/raspberry-pi/sgp41_i2c.*
88
examples/raspberry-pi/sht4x_i2c.*
99
examples/raspberry-pi/sensirion_config.h
10+
sensirion-gas-index-algorithm-rs/target/
1011
.idea
11-

sensirion-gas-index-algorithm-rs/Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[package]
2+
name = "sensirion-gas-index-algorithm-rs"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[dependencies]
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
mod sensirion_gas_index_algorithm;
2+
#[cfg(test)]
3+
mod tests;
4+
5+
pub use sensirion_gas_index_algorithm::GasIndexAlgorithm;

0 commit comments

Comments
 (0)