{"id":18148297,"url":"https://github.com/tesa-klebeband/easydmx","last_synced_at":"2025-04-24T03:32:51.083Z","repository":{"id":259753041,"uuid":"861405600","full_name":"tesa-klebeband/EasyDMX","owner":"tesa-klebeband","description":"EasyDMX is a library designed for sending and receiving DMX512 with an ESP32, aimed at providing simplicity and ease of use","archived":false,"fork":false,"pushed_at":"2025-04-11T16:20:32.000Z","size":46,"stargazers_count":11,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-11T17:27:22.013Z","etag":null,"topics":["dmx512","esp32","esp32-arduino","lighting-controller","stage-lighting"],"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/tesa-klebeband.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":"2024-09-22T19:55:41.000Z","updated_at":"2025-04-11T16:12:10.000Z","dependencies_parsed_at":"2024-10-27T20:40:26.842Z","dependency_job_id":"9b417bb7-5037-4307-a529-7fb3005a372f","html_url":"https://github.com/tesa-klebeband/EasyDMX","commit_stats":null,"previous_names":["tesa-klebeband/easydmx"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tesa-klebeband%2FEasyDMX","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tesa-klebeband%2FEasyDMX/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tesa-klebeband%2FEasyDMX/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tesa-klebeband%2FEasyDMX/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tesa-klebeband","download_url":"https://codeload.github.com/tesa-klebeband/EasyDMX/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250557325,"owners_count":21450161,"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":["dmx512","esp32","esp32-arduino","lighting-controller","stage-lighting"],"created_at":"2024-11-01T23:07:54.779Z","updated_at":"2025-04-24T03:32:51.063Z","avatar_url":"https://github.com/tesa-klebeband.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EasyDMX\n[![PlatformIO Registry](https://badges.registry.platformio.org/packages/tesa-klebeband/library/EasyDMX.svg)](https://registry.platformio.org/libraries/tesa-klebeband/EasyDMX)\n![GitHub Issues or Pull Requests](https://img.shields.io/github/issues/tesa-klebeband/EasyDMX)\n![GitHub License](https://img.shields.io/github/license/tesa-klebeband/EasyDMX)\n![GitHub Repo stars](https://img.shields.io/github/stars/tesa-klebeband/EasyDMX?style=flat)\n![GitHub forks](https://img.shields.io/github/forks/tesa-klebeband/EasyDMX?style=flat)\n![image](https://github.com/user-attachments/assets/2e123411-b053-4351-9662-d673952ae8de)\n\nEasyDMX is a library designed for sending and receiving DMX512 with an ESP32, aimed at providing simplicity and ease of use\n\n## Features\n- Easily send and receive DMX512 with an ESP32 and MAX485 (it takes just one line to get everything set up)\n- Operate a transmitter and receiver at the same time\n- Ability to transmit the received DMX data automatically\n\n## Installation\nCreate a new PlatformIO project and add the following to your `platformio.ini` file (append to the existing `lib_deps` if it already exists by creating a new line with the same indentation):\n```ini\nlib_deps =\n    https://github.com/tesa-klebeband/EasyDMX\n```\n\n## Using EasyDMX\nExamples on different operating modes are provided in the `examples` folder. To use EasyDMX in your project, include the library and create an instance of the `EasyDMX` class. The following example demonstrates how to set up a simple dmx receiver that logs the received channels to the serial monitor:\n```cpp\n#include \u003ceasydmx.h\u003e\n\nEasyDMX dmx;\n\nvoid setup() {\n    Serial.begin(115200);\n    dmx.begin(DMXMode::Receive, DMXPin::Serial2Rx, DMXPin::NoTx);\n}\n\nvoid loop() {\n    for (int i = 1; i \u003c= 512; i++) {\n        Serial.print(dmx.getChannel(i));\n        Serial.print(\" \");\n    }\n    Serial.println();\n    delay(1000);\n}\n```\n\n## License\nAll files within this repo are released under the GNU GPL V3 License as per the LICENSE file stored in the root of this repo.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftesa-klebeband%2Feasydmx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftesa-klebeband%2Feasydmx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftesa-klebeband%2Feasydmx/lists"}