{"id":16237558,"url":"https://github.com/lexus2k/nixielib","last_synced_at":"2026-03-10T13:05:10.680Z","repository":{"id":108162810,"uuid":"76686533","full_name":"lexus2k/NixieLib","owner":"lexus2k","description":"Nixie Library for clock development","archived":false,"fork":false,"pushed_at":"2021-09-15T02:59:27.000Z","size":20095,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-03T04:24:59.518Z","etag":null,"topics":["arduino","atmega328p","ds3231","gl5528","htu21d","i2c-bus","lm35","nixie-clock","nixie-library","nixie-tubes","rgb-led","sht21","temperature-sensor"],"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/lexus2k.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":"2016-12-16T21:23:35.000Z","updated_at":"2023-01-28T17:26:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"623feba6-b1cc-42e8-8aca-189a6d6cc70a","html_url":"https://github.com/lexus2k/NixieLib","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/lexus2k/NixieLib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexus2k%2FNixieLib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexus2k%2FNixieLib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexus2k%2FNixieLib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexus2k%2FNixieLib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lexus2k","download_url":"https://codeload.github.com/lexus2k/NixieLib/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexus2k%2FNixieLib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30334412,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T12:41:07.687Z","status":"ssl_error","status_checked_at":"2026-03-10T12:41:06.728Z","response_time":106,"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","atmega328p","ds3231","gl5528","htu21d","i2c-bus","lm35","nixie-clock","nixie-library","nixie-tubes","rgb-led","sht21","temperature-sensor"],"created_at":"2024-10-10T13:36:08.506Z","updated_at":"2026-03-10T13:05:10.649Z","avatar_url":"https://github.com/lexus2k.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"= Nixie Library for Arduino =\n\nWith this library you can easy develop software for Nixie Clock and create\ninteresting sound and visual effects. The library contains all required\nmodules to communicate with different peripherals hardware (RTC, sensors,\ntube drivers). The library was tested on Attiny85, Attiny45, Atmega168\nand Atmega328p controllers. Nixie Library includes faster digitalWrite,\nanalogRead functions implementations (nixiePinLow, nixiePinHigh,\nnixieAnalogRead) for Atmega328p controllers. The library uses millis() and micros()\nfunctions. So, if you change TIMER0 settings, this will affect NixieLib behavior.\nIf you have questions, please contact via email.\n\nNow the library contains full-cycle example of Nixie clock with schematics, layout, full source code.\nRefer to https://github.com/lexus2k/NixieLib/tree/master/examples/nixie_clock_in14_v1\n![Image of Nixie Clock](https://github.com/lexus2k/NixieLib/blob/master/examples/nixie_clock_in14_v1/pictures/IMG_5123_preview.JPG)\n\n\nThe library supports the following devices:\n * DS3231, DS3232 RTC chips\n * Piezo buzzer audio output\n * Analog buttons\n * Nixie Tubes (any: IN-14, IN-12, etc. )\n * GL 5528 lightsensor (most popular light sensor on Arduino platforms)\n * K155ID1 nixie drivers\n * Mono-LEDs\n * RGB-LEDs (both PWM controlled and Software controlled)\n * LM35DZ temperature sensor\n\nThe library supports the following features:\n\n * Switching between states (state-machine tasks)\n * Sending and processing events\n * * System events: timers\n * * User defined events\n * Fast analog read functions (optimized for Atmega328p)\n * Fast digital write functions (optimized for Atmega328p)\n\nFor more information about this library please visit\nhttps://github.com/lexus2k/nixielib.\nIf you found any problem, please report to Issues section.\n\n== License ==\n\nCopyright (C) 2016-2017 Alexey Dynda\n\nThis file is part of Nixie Library.\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see \u003chttp://www.gnu.org/licenses/\u003e.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flexus2k%2Fnixielib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flexus2k%2Fnixielib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flexus2k%2Fnixielib/lists"}