{"id":37095327,"url":"https://github.com/redtoad/go-dcled","last_synced_at":"2026-01-14T11:45:03.533Z","repository":{"id":45169159,"uuid":"191239208","full_name":"redtoad/go-dcled","owner":"redtoad","description":"Golang library for interacting with Dream Cheeky LED Message Board","archived":false,"fork":false,"pushed_at":"2022-03-09T17:19:25.000Z","size":4155,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-22T17:09:46.514Z","etag":null,"topics":["dcled","dreamcheeky","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/redtoad.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}},"created_at":"2019-06-10T20:16:31.000Z","updated_at":"2022-03-24T19:31:39.000Z","dependencies_parsed_at":"2022-08-25T10:11:16.771Z","dependency_job_id":null,"html_url":"https://github.com/redtoad/go-dcled","commit_stats":null,"previous_names":["redtoad/go-dcmb"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/redtoad/go-dcled","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redtoad%2Fgo-dcled","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redtoad%2Fgo-dcled/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redtoad%2Fgo-dcled/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redtoad%2Fgo-dcled/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/redtoad","download_url":"https://codeload.github.com/redtoad/go-dcled/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redtoad%2Fgo-dcled/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28419257,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:47:48.104Z","status":"ssl_error","status_checked_at":"2026-01-14T10:46:19.031Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["dcled","dreamcheeky","golang"],"created_at":"2026-01-14T11:45:02.864Z","updated_at":"2026-01-14T11:45:03.528Z","avatar_url":"https://github.com/redtoad.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# go-dcled\n\nGo library for interacting with Dream Cheeky Message Board\n\n![](examples/canvas/result.gif)\n\n## Usage\n\nYou can load images (best: 21x7px like ![](dc-logo.png) or ![](go-logo.png)) and display them on the LED message board. Any pixel (R: 255 G: 0 B: 0) will cause a LED to be *on*.\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"image/png\"\n\t\"os\"\n\t\"time\"\n\n\t\"github.com/karalabe/hid\"\n\t\"github.com/redtoad/go-dcled\"\n)\n\nfunc main() {\n\tvar list = hid.Enumerate(0x1D34, 0x0013)\n\tvar device, err = list[0].Open() // Use first device\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tprintln(fmt.Sprintf(\"Connected to %s %s\", device.Manufacturer, device.Product))\n\n\t// load image from file\n\tf, err := os.Open(\"go-logo.png\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tdefer f.Close()\n\n\timg, err := png.Decode(f)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\t// display image on device\n\tfor {\n\t\tdcled.DisplayCanvas(img, device)\n\t\ttime.Sleep(dcled.MinimumRefreshRate)\n\t}\n}\n``` \n\nSee `examples/` for more information.\n\nBased on code by [MylesIsCool](https://gist.github.com/FormallyMyles/227a64a679fb0fc8432fe1c342f526dd). \nVery helpful: [The Last Outpost ](https://www.last-outpost.com/~malakai/dcled/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredtoad%2Fgo-dcled","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fredtoad%2Fgo-dcled","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredtoad%2Fgo-dcled/lists"}