diff --git a/Cargo.lock b/Cargo.lock index 0b96066..e489f08 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,7 +89,7 @@ dependencies = [ [[package]] name = "bme680-json" -version = "1.0.3" +version = "1.0.4" dependencies = [ "anyhow", "bme680", diff --git a/Cargo.toml b/Cargo.toml index f57fa08..4637005 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bme680-json" -version = "1.0.3" +version = "1.0.4" edition = "2021" [dependencies] diff --git a/readme.md b/readme.md index 044aaeb..bf39e31 100644 --- a/readme.md +++ b/readme.md @@ -12,5 +12,5 @@ Then run: ```bash bme680-json -{"temperature":32.66,"pressure":622.29,"humidity":100.0,"gas_resistance":802874} +{"temperature":23.55,"pressure":991.04,"humidity":60.444,"gas_resistance":1443025} ``` \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index efd6d45..26ab549 100644 --- a/src/main.rs +++ b/src/main.rs @@ -24,7 +24,7 @@ struct Args { i2c_address: String, /// Delay reading by the specified amount in milliseconds. - #[arg(long, default_value_t = 1000)] + #[arg(long, default_value_t = 2000)] delay: u32 }