{"id":26470491,"url":"https://github.com/junon10/mc145158","last_synced_at":"2026-04-21T09:32:36.354Z","repository":{"id":276306074,"uuid":"928878828","full_name":"junon10/mc145158","owner":"junon10","description":"MC145158 PLL Controller Arduino Library","archived":false,"fork":false,"pushed_at":"2026-03-26T09:52:07.000Z","size":690,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-26T16:07:20.018Z","etag":null,"topics":["arduino-library","fm-synthesizer","fm-transmitter","mc145158","pll","pll-controller"],"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,"zenodo":null}},"created_at":"2025-02-07T12:02:49.000Z","updated_at":"2026-03-26T09:49:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"59d40fe6-df2a-4f44-82b4-79c0a2477221","html_url":"https://github.com/junon10/mc145158","commit_stats":null,"previous_names":["junon10/mc145158"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/junon10/mc145158","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junon10%2Fmc145158","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junon10%2Fmc145158/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junon10%2Fmc145158/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junon10%2Fmc145158/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/junon10","download_url":"https://codeload.github.com/junon10/mc145158/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junon10%2Fmc145158/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32085475,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T06:27:27.065Z","status":"ssl_error","status_checked_at":"2026-04-21T06:27:21.250Z","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":["arduino-library","fm-synthesizer","fm-transmitter","mc145158","pll","pll-controller"],"created_at":"2025-03-19T18:56:45.494Z","updated_at":"2026-04-21T09:32:36.340Z","avatar_url":"https://github.com/junon10.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MC145158 PLL Controller Arduino Library\n\n## Description\n\nA library for Arduino that provides functions to configure and operate the MC145158 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**: MC145158 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/mc145158](https://github.com/junon10/mc145158)\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 \u003cMC145158.h\u003e\n\n// Declare an instance of the MC145158 PLL\nMC145158 pll;\n\n// Configure the PLL pins\npll.begin(clock_pin, data_pin, dlen_pin);\n\n// DIP Switch configuration example (Arduino Digital Pins 7 to 0)\npll.setDipSwitchPins(7, 6, 5, 4, 3, 2, 1, 0);\n\n// Configure the operating frequency\npll.setFrequency(108000); // Frequency in KHz\n// or\npll.setFrequencyFromDipSwitch();\n\n```\n\n## Limitations\n\n- Warning: Code tested with logic analyzer, not yet tested in hardware!\n- For detailed technical specifications, refer to the MC145158 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/mc145158](https://github.com/junon10/mc145158)\n\n## References\n\n- MC145158 Datasheet\n- Arduino Documentation\n\n## Changelog\n\n| Version | Date        | Changes Made               |\n|---------|-------------|---------------------------|\n| 1.0.0.0 | 2024/06/18 | Initial commit. |\n| 1.0.0.1 | 2024/06/18 | function name fix. |\n| 1.0.0.2 | 2024/06/22 | bug fix. |\n| 1.0.0.3 | 2025/02/07 | DipSW support. |\n| 1.0.0.4 | 2025/07/23 | minor bug fix. |\n| 1.0.0.5 | 2026/02/03 | fix registers N and A. |\n| 1.0.0.7 | 2026/02/03 | improvements. |\n| 1.0.0.8 | 2026/02/25 | Update Readme. |\n| 1.0.0.9 | 2026/03/21 | Refactor. |\n| 1.0.0.10 | 2026/03/22 | Msg Format Improvements. |\n| 1.0.0.11 | 2026/03/24 | function name fix. |\n\n## License\n\n- GPLv3\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunon10%2Fmc145158","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjunon10%2Fmc145158","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunon10%2Fmc145158/lists"}