{"id":22547199,"url":"https://github.com/digitalcircuit/actinic","last_synced_at":"2025-06-16T16:09:01.002Z","repository":{"id":55418375,"uuid":"43589466","full_name":"digitalcircuit/actinic","owner":"digitalcircuit","description":"Control strands of LED lights in various flashy or useful ways","archived":false,"fork":false,"pushed_at":"2025-02-12T00:07:33.000Z","size":417,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-23T18:54:21.236Z","etag":null,"topics":["actinic","led-controller"],"latest_commit_sha":null,"homepage":null,"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/digitalcircuit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","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":"2015-10-03T05:52:58.000Z","updated_at":"2025-02-12T00:07:36.000Z","dependencies_parsed_at":"2025-02-02T09:31:18.830Z","dependency_job_id":"5112345d-9227-4b16-a085-5e7c2766d24f","html_url":"https://github.com/digitalcircuit/actinic","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digitalcircuit%2Factinic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digitalcircuit%2Factinic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digitalcircuit%2Factinic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digitalcircuit%2Factinic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/digitalcircuit","download_url":"https://codeload.github.com/digitalcircuit/actinic/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248073027,"owners_count":21043354,"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","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":["actinic","led-controller"],"created_at":"2024-12-07T15:10:45.309Z","updated_at":"2025-04-09T16:51:37.894Z","avatar_url":"https://github.com/digitalcircuit.png","language":"C#","readme":"Actinic [![Build Status](https://github.com/digitalcircuit/actinic/actions/workflows/main.yml/badge.svg)][ci-status-page]\n===============\n\nActinic interfaces with strands of LED lights to control them in various flashy or useful ways according to music, time of day, and multiple types of animations.  Currently supports an [Arduino-based LED controller firmware][arduino-firmware], but support can be easily added for other systems.\n\n## Downloads\n\n* [Download for Windows](https://nightly.link/digitalcircuit/actinic/workflows/main/main/Actinic-Windows.zip )\n* [Download for Linux (includes PulseAudio component)](https://nightly.link/digitalcircuit/actinic/workflows/main/main/Actinic-Linux.zip )\n\nMore details at [the nightly.link page](https://nightly.link/digitalcircuit/actinic/workflows/main/main ), by `oprypin`.  Or, if you are logged in to GitHub, pick any build from the [GitHub Actions tab][ci-status-page].\n\n## Building\n\nTools needed:\n* MonoDevelop (preferably 4.0 or higher)\n* Mono runtime, including System.Drawing and System.Core\n* Development headers for [FFTW library version 3](https://fftw.org) and [PulseAudio](https://wiki.freedesktop.org/www/Software/PulseAudio/)\n* Make, a C++ compiler, and friends\n\nFor an Ubuntu system, apt-get install the following packages\n```sh\nlibmono-system-core4.0-ci\t\t# Mono runtime, System.Linq interface\nlibmono-system-drawing4.0-ci\t# Bitmap parsing\nmake libpulse-dev libfftw3-dev\t# Tools to compile Impulse audio processing library\n```\n\nThe project will automatically attempt to build the Impulse library upon compiling the solution in MonoDevelop.  Should anything go wrong, a file named `README-impulse-failed-to-build` will be put in the `bin/Debug` build directory.\n\nTo manually compile, run [`prepare-audio-processing.sh`](https://github.com/digitalcircuit/actinic/blob/main/Actinic/Audio/prepare-audio-processing.sh) included in the `Actinic/Audio` folder.\n\n*If using the [Arduino LED controller][arduino-firmware], don't forget to change permissions on the USB device to allow access without root.*\n\n## Usage\n\n* Connect and power on your lighting controller and lights (*for the [Arduino LED controller][arduino-firmware], plug it into power, then into a USB port*)\n* In the output directory, run `mono Actinic.exe`\n* *To be done - expand this list?*\n\nTo list commands, type `help`.  For help on a particular command, type it without providing any parameters, e.g. `vu run`.\n\n## Credits\n\n* [Impulse Python module](https://launchpad.net/impulse.bzr) for audio processing; some information on [GNOME Look](http://gnome-look.org/content/show.php/Impulse+-+PulseAudio+visualizer?content=99383)\n* [LinearColorInterpolator.cs](https://stackoverflow.com/questions/2307726/how-to-calculate-color-based-on-a-range-of-values-in-c) by [Mark Byers](https://stackoverflow.com/users/61974/mark-byers)\n* [ReflectiveEnumerator.cs](https://stackoverflow.com/questions/5411694/get-all-inherited-classes-of-an-abstract-class) by [Repo Man](https://stackoverflow.com/users/140126/repo-man)\n* *If you're missing, let me know, and I'll fix it as soon as I can!*\n\n[arduino-firmware]: https://github.com/digitalcircuit/ActinicArduino\n[ci-status-page]: https://github.com/digitalcircuit/actinic/actions?query=branch%3Amain\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigitalcircuit%2Factinic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdigitalcircuit%2Factinic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigitalcircuit%2Factinic/lists"}