Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc updates #131

Merged
merged 4 commits into from
Feb 14, 2024
Merged
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased](https://github.com/quartiq/thermostat-eem/compare/v0.1.0...master)
## [v0.2.0](https://github.com/quartiq/thermostat-eem/compare/v0.1.0...v0.2.0)

### Changed
* A DNS name for the MQTT broker of `mqtt` is now used instead of a hard-coded IP address.
* A static IP can be assigned to Thermostat using the `STATIC_IP` environment variable at build
time. If one is not specified, DHCP is used automatically.
* Miniconf versions have been updated to v0.9.0
* Configuration is now done in terms of PID parameters
* Settings tree has changed its layout

### Added

* Application metadata is now published to the `<prefix>/meta` topic on MQTT connections
* Data streaming
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/hardware/adc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ pub struct AdcPins {
#[derive(Clone, Copy, Debug)]
pub struct AdcConfig {
/// Configuration for all ADC inputs. Four ADCs with four inputs each.
/// Some(([AdcInput], [AdcInput])) positive and negative channel inputs or None to disable the channel.
/// `Some(([AdcInput], [AdcInput]))` positive and negative channel inputs or None to disable the channel.
pub input_config: [[Option<(ad7172::Mux, ad7172::Mux)>; 4]; 4],
}

Expand Down
Loading