Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
More Progress
Added SSDP to find the printer IP Fix weird JSON struct returned from get_device_ips Remove unused constants Added ip to device struct Misc Cleanup ran cargo fix and cargo format
- Loading branch information
Showing
14 changed files
with
390 additions
and
246 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
fn main() { | ||
tauri_build::build() | ||
tauri_build::build() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,2 @@ | ||
pub static BAMBU_API_URL: &str = "https://api.bambulab.com"; | ||
pub static BAMBU_AUDIENCE: &str = "account"; | ||
pub static BAMBU_LOGIN_URL: &str = "https://bambulab.com/api/sign-in/form"; | ||
pub static BAMBU_MQTT_URL: &str = "mqtts://us.mqtt.bambulab.com:8883"; | ||
pub static BAMBU_MQTT_INIT_PAYLOAD: &str = | ||
r#"{ "pushing": { "sequence_id": "0", "command": "pushall" } }"#; |
Oops, something went wrong.