{"id":30824177,"url":"https://github.com/implferris/ds3231-rtc","last_synced_at":"2026-01-20T17:35:36.799Z","repository":{"id":311931148,"uuid":"1045688520","full_name":"ImplFerris/ds3231-rtc","owner":"ImplFerris","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-05T17:23:19.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-05T19:28:53.803Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ImplFerris.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-MIT","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,"zenodo":null}},"created_at":"2025-08-27T15:06:20.000Z","updated_at":"2025-09-05T17:23:22.000Z","dependencies_parsed_at":"2025-08-27T23:29:01.923Z","dependency_job_id":"f721ef97-2df6-4fe6-8570-fffcccee57f3","html_url":"https://github.com/ImplFerris/ds3231-rtc","commit_stats":null,"previous_names":["implferris/ds3231-rtc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ImplFerris/ds3231-rtc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImplFerris%2Fds3231-rtc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImplFerris%2Fds3231-rtc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImplFerris%2Fds3231-rtc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImplFerris%2Fds3231-rtc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ImplFerris","download_url":"https://codeload.github.com/ImplFerris/ds3231-rtc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImplFerris%2Fds3231-rtc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273899839,"owners_count":25187737,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-06T02:00:13.247Z","response_time":2576,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-09-06T11:51:51.161Z","updated_at":"2026-01-20T17:35:36.784Z","avatar_url":"https://github.com/ImplFerris.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DS3231 RTC Driver\n\nA Rust driver for the DS3231 Real-Time Clock (RTC) chip, implementing the embedded-hal and rtc-hal traits for integration with embedded Rust projects.\n\n## Features\n\n- Read and set date/time\n\n## Basic usage\n\n```rust\nuse ds3231_rtc::Ds3231;\nuse rtc_hal::rtc::Rtc;  // rtc_hal trait required to be imported to be used\nuse rtc_hal::datetime::DateTime;\n\n// Set up I2C (depends on your board)\nlet i2c = /* your I2C setup */;\n\n// Create the driver\nlet mut rtc = Ds3231::new(i2c);\n\n// Set time to August 21, 2025 at 2:30 PM\nlet time = DateTime::new(2025, 8, 21, 14, 30, 0).unwrap();\nrtc.set_datetime(\u0026time).unwrap();\n\n// Read current time\nlet now = rtc.get_datetime().unwrap();\n```\n\n## Examples\n\nExample projects are available in the separate [ds3231-examples](https://github.com/implferris/ds3231-examples) repository to help you get started.\n\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimplferris%2Fds3231-rtc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimplferris%2Fds3231-rtc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimplferris%2Fds3231-rtc/lists"}