Skip to content

Commit

Permalink
* Fix api version inconsistency (see issue #34)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrivers committed Sep 14, 2024
1 parent d32f887 commit c5b78f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/hue/api/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ impl DeviceProductData {
model_id: "BSB002".to_string(),
product_archetype: DeviceArchetype::BridgeV2,
product_name: "Hue Bridge".to_string(),
software_version: "1.60.1960149090".to_string(),
software_version: "1.66.1966060010".to_string(),
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/hue/legacy_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub struct ApiShortConfig {
impl Default for ApiShortConfig {
fn default() -> Self {
Self {
apiversion: "1.65.0".to_string(),
apiversion: "1.66.0".to_string(),
bridgeid: "0000000000000000".to_string(),
datastoreversion: "163".to_string(),
factorynew: false,
Expand All @@ -53,7 +53,7 @@ impl Default for ApiShortConfig {
name: "Bifrost Bridge".to_string(),
replacesbridgeid: None,
starterkitid: String::new(),
swversion: "1965111030".to_string(),
swversion: "1966060010".to_string(),
}
}
}
Expand Down

0 comments on commit c5b78f9

Please sign in to comment.