{"id":16619180,"url":"https://github.com/ssnover/borealis","last_synced_at":"2026-04-21T15:02:06.558Z","repository":{"id":115692716,"uuid":"262603655","full_name":"ssnover/borealis","owner":"ssnover","description":"Crate for controlling Nanoleaf Aurora light panels.","archived":false,"fork":false,"pushed_at":"2022-06-18T14:45:09.000Z","size":71,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-14T20:17:25.851Z","etag":null,"topics":["iot","nanoleaf-aurora"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ssnover.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-09T15:44:09.000Z","updated_at":"2022-12-08T23:53:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"4f3587e3-0fcc-49de-9430-03eaad5264ca","html_url":"https://github.com/ssnover/borealis","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ssnover/borealis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssnover%2Fborealis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssnover%2Fborealis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssnover%2Fborealis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssnover%2Fborealis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ssnover","download_url":"https://codeload.github.com/ssnover/borealis/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssnover%2Fborealis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32097173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["iot","nanoleaf-aurora"],"created_at":"2024-10-12T02:23:10.014Z","updated_at":"2026-04-21T15:02:06.539Z","avatar_url":"https://github.com/ssnover.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# borealis\n\nBorealis is a thin interface for interacting with the Nanoleaf Aurora in order\nto control your light panels programmatically from Rust. A binary `borealis-query` \nis provided which queries for the IP address of the panels on your local network,\ncommunicates with the Aurora gateway to create a new authorization token for using\nthe API, and stores the resulting data in a configuration file for reading the\nconfiguration out for using the library client later.\n\n```rust\nuse borealis::Aurora;\nuse std::env;\nuse std::net::Ipv4Addr;\n\n#[tokio::main]\npub async fn main() {\n    let effect_name: String = env::args()\n        .skip(1)\n        .next()\n        .expect(\"Must specify effect name to display.\");\n\n    let aurora = Aurora::new(\n        Ipv4Addr::new(192, 168, 1, 12),   // IP Address\n        None,                             // Port\n        \u0026\"YourAuthTokenHere\".to_string(), // Auth Token\n    );\n\n    tokio::spawn(async move {\n        println!(\"Setting Aurora to display {}\", effect_name);\n        aurora.turn_on().await.unwrap();\n        aurora.set_effect(\u0026effect_name).await.unwrap();\n    })\n    .await\n    .unwrap();\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssnover%2Fborealis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fssnover%2Fborealis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssnover%2Fborealis/lists"}