{"id":26470480,"url":"https://github.com/junon10/saa1057","last_synced_at":"2026-03-07T05:32:14.915Z","repository":{"id":244658823,"uuid":"815886026","full_name":"junon10/saa1057","owner":"junon10","description":"SAA1057 PLL Controller Arduino Library","archived":false,"fork":false,"pushed_at":"2025-03-05T12:37:56.000Z","size":40,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-05T10:11:22.303Z","etag":null,"topics":["arduino-library","arduino-nano","arduino-uno","esp32-arduino","fm","fm-synthesizer","fm-transmitter","pll","pll-controller","radio","transmitter-circuit"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/junon10.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-06-16T12:29:48.000Z","updated_at":"2025-03-05T12:38:00.000Z","dependencies_parsed_at":"2024-06-16T14:00:51.247Z","dependency_job_id":"ac9827ea-e446-4f2f-8c93-3d34f3d5eabe","html_url":"https://github.com/junon10/saa1057","commit_stats":null,"previous_names":["junon10/saa1057"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/junon10/saa1057","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junon10%2Fsaa1057","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junon10%2Fsaa1057/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junon10%2Fsaa1057/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junon10%2Fsaa1057/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/junon10","download_url":"https://codeload.github.com/junon10/saa1057/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junon10%2Fsaa1057/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30208731,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"last_error":"SSL_read: 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":["arduino-library","arduino-nano","arduino-uno","esp32-arduino","fm","fm-synthesizer","fm-transmitter","pll","pll-controller","radio","transmitter-circuit"],"created_at":"2025-03-19T18:56:42.487Z","updated_at":"2026-03-07T05:32:14.890Z","avatar_url":"https://github.com/junon10.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SAA1057 PLL Controller Library\n\n## Description\n\nA library for Arduino that provides functions to configure and operate the SAA1057 PLL integrated circuit. This library enables control over various aspects of the PLL's operation.\n\n## Features\n\n- **Arduino Compatibility**: Works with most Arduino boards.\n- **PLL Control Functions**: Functions to set frequency shifts, data configuration, and more.\n- **Configuration**: Easy-to-use API for setting up pins and operating modes.\n- **DIP Switch Integration**: Support for configuring pins via DIP switches.\n\n## Requirements\n\n- **Arduino IDE**: To install the library.\n- **Hardware**: SAA1057 PLL circuit integrated into your project.\n- **Board Compatibility**: Most Arduino-compatible boards supported.\n\n## Installation\n\nTo install the library:\n\n1. Download the repository from GitHub:\n   [https://github.com/junon10/saa1057](https://github.com/junon10/saa1057)\n\n2. In Arduino IDE, go to Sketch \u003e Include Library \u003e Add ZIP File...\n\n3. Select the downloaded zip file.\n\n## Usage\n\n```c++\n#include \u003cSAA1057.h\u003e\n\n// Declare an instance of the SAA1057 PLL\nSAA1057 pll;\n\n// Configure the PLL pins\npll.begin(clock_pin, data_pin, dlen_pin);\n\n// DIP Switch configuration example (b7 to b0)\npll.setDipSwPinout(b7, b6, b5, b4, b3, b2, b1, b0);\n\n// Force data bits to 1 and send to WordB\npll.set(data, shiftLeft);\n\n// Clear data bits (force to 0)\npll.clear(data, shiftLeft);\n\n// Example of setting a specific configuration\npll.setDefaultConfig();\n\n// Configure the operating frequency and lock speed\npll.setFrequency(108.0, CP_007); // Frequency in MHz, Lock Filter Speed (current)\n// or\npll.setFrequencyByDipSw(CP_007);\n\n// Commit changes\npll.commitConfig();\n```\n\n## Limitations\n\n- For detailed technical specifications, refer to the SAA1057 datasheet.\n- Function parameters and return values may vary based on hardware configuration.\n\n## Author\n\n- **Junon M.**  \n  Contact: [junon10@tutamail.com](mailto:junon10@tutamail.com)\n\n## Contributing\n\nContributions are welcome! Please fork the repository and send a pull request.\n\n## Repository\n\n- [https://github.com/junon10/saa1057](https://github.com/junon10/saa1057)\n\n## References\n\n- SAA1057 Datasheet\n- Arduino Documentation\n\n## Changelog\n\n- **v1.0.6 (2024/06/15)**: Initial commit.\n- **v1.0.7 (2025/01/09)**: Frequency configuration By DipSwitch integrated.\n- **v1.0.8 (2025/01/13)**: Fixed bug in DipSwitch decoding.\n\n## License\n\n- GPLv3\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunon10%2Fsaa1057","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjunon10%2Fsaa1057","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunon10%2Fsaa1057/lists"}