{"id":20823065,"url":"https://github.com/madskjeldgaard/launchpadx-sc","last_synced_at":"2026-02-20T19:32:48.355Z","repository":{"id":180792500,"uuid":"665543314","full_name":"madskjeldgaard/launchpadx-sc","owner":"madskjeldgaard","description":"A Simple SuperCollider interface for the Novation LaunchpadX controller","archived":false,"fork":false,"pushed_at":"2023-07-12T19:35:11.000Z","size":20,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-16T13:43:54.148Z","etag":null,"topics":["launchpad","launchpad-x"],"latest_commit_sha":null,"homepage":"","language":"SuperCollider","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/madskjeldgaard.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-07-12T12:43:23.000Z","updated_at":"2024-05-05T07:02:18.000Z","dependencies_parsed_at":"2023-07-12T21:40:02.845Z","dependency_job_id":null,"html_url":"https://github.com/madskjeldgaard/launchpadx-sc","commit_stats":null,"previous_names":["madskjeldgaard/launchpadx-sc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/madskjeldgaard/launchpadx-sc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madskjeldgaard%2Flaunchpadx-sc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madskjeldgaard%2Flaunchpadx-sc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madskjeldgaard%2Flaunchpadx-sc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madskjeldgaard%2Flaunchpadx-sc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/madskjeldgaard","download_url":"https://codeload.github.com/madskjeldgaard/launchpadx-sc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madskjeldgaard%2Flaunchpadx-sc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29661604,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T16:33:43.953Z","status":"ssl_error","status_checked_at":"2026-02-20T16:33:43.598Z","response_time":59,"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":["launchpad","launchpad-x"],"created_at":"2024-11-17T22:17:14.678Z","updated_at":"2026-02-20T19:32:48.336Z","avatar_url":"https://github.com/madskjeldgaard.png","language":"SuperCollider","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LaunchpadX\n\n[See it in action](https://www.youtube.com/watch?v=TCKBnxeUJGI)\n\n## A simple interface for the Novation Launchpad X controller\n\nA simple interface for the Novation Launchpad X controller, mostly for changing layouts and writing things on the RGB led's.\n\nFor more info on the interface exposed by Novation: [click here](https://fael-downloads-prod.focusrite.com/customer/prod/s3fs-public/downloads/Launchpad%20X%20-%20Programmers%20Reference%20Manual.pdf).\n\n## Installation\n\nOpen up SuperCollider and evaluate the following line of code:\n`Quarks.install(\"https://github.com/madskjeldgaard/launchpadx-sc\")`\n\n## Example\n\n```supercollider\n(\n// Setup and connect\nMIDIClient.init();\nl = LaunchpadX.new();\nl.connect();\n)\n\n// Write some scrolling text\nl.textScroll(\"Hello World!\", loop:0, speed: rrand(1,20), colourspec: rrand(0,100))\n\n// If looping text scroll, disable it\nl.disableTextScroll();\n\n// Select a layout\nl.selectLayout(4);\n\n// Activate programmer mode (set to 0 to return to live mode)\nl.setLiveModeSwitch(1);\n\n// You can render arbitrary 8x8 images on it\n(\nvar image = Image.new(8, 8);\n\nimage.pixels_(\n    Int32Array.fill(image.width * image.height, {\n        Image.colorToPixel(Color.new255(255.rand,127.rand,255.rand,255))\n    })\n);\n\nl.renderPixelGrid(image, type: 2);\n)\n\n// Render one static char\nl.renderChar($M, 2, 30);\n\n// Go back to live mode\nl.setLiveModeSwitch(0);\n\n// Select a layout\nl.selectLayout(3);\n\n// Sleep (turn off LEDS)\nl.setSleepMode(0);\n\n// Unsleep\nl.setSleepMode(1);\n\n// Silly example: Display latest code you evaluated on the Launchpad X\n// See the Interpreter help file for more info on using the preprocessor\n(\nthis.preProcessor = {|text| \n    l.textScroll(text, loop:0, speed: rrand(1,20), colourspec: rrand(0,100))\n}\n)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmadskjeldgaard%2Flaunchpadx-sc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmadskjeldgaard%2Flaunchpadx-sc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmadskjeldgaard%2Flaunchpadx-sc/lists"}