Skip to content

Commit

Permalink
Fix project name
Browse files Browse the repository at this point in the history
  • Loading branch information
weiying-chen committed Mar 7, 2024
1 parent 5dc66c9 commit 9bef5b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "rust-esp32-bme280"
name = "rust-esp32c3-bme280"
version = "0.1.0"
authors = ["Wei-ying Chen <[email protected]>"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fn main() {
Ok(measurements) => {
log::info!("Relative Humidity = {:.0}%", measurements.humidity);
log::info!("Temperature = {:.0}°C", measurements.temperature);
log::info!("Pressure = {:,.0} Pa", measurements.pressure);
// log::info!("Pressure = {:,.0} Pa", measurements.pressure);
}

Err(e) => log::error!("Failed to get measurements: {:?}", e),
Expand Down

0 comments on commit 9bef5b8

Please sign in to comment.