{"id":26871234,"url":"https://github.com/codeadamca/arduino-led-matrix","last_synced_at":"2026-02-16T03:32:38.408Z","repository":{"id":115326353,"uuid":"301490351","full_name":"codeadamca/arduino-led-matrix","owner":"codeadamca","description":"A basic example of animating using an 8 x 8 LED matrix.","archived":false,"fork":false,"pushed_at":"2025-01-26T22:05:06.000Z","size":227,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-07T06:38:13.789Z","etag":null,"topics":["arduino","cplusplus","led-matrix"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codeadamca.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2020-10-05T17:38:59.000Z","updated_at":"2025-01-26T22:05:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"40f63009-1ab5-4fc8-8526-227feccf92c2","html_url":"https://github.com/codeadamca/arduino-led-matrix","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codeadamca/arduino-led-matrix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Farduino-led-matrix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Farduino-led-matrix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Farduino-led-matrix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Farduino-led-matrix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeadamca","download_url":"https://codeload.github.com/codeadamca/arduino-led-matrix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Farduino-led-matrix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29499615,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T02:07:14.481Z","status":"online","status_checked_at":"2026-02-16T02:03:22.852Z","response_time":115,"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":true,"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","cplusplus","led-matrix"],"created_at":"2025-03-31T07:18:51.094Z","updated_at":"2026-02-16T03:32:38.392Z","avatar_url":"https://github.com/codeadamca.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Arduino and an LED Matrix\n\nA basic example of controlling an 8 x 8 LED matrix using an Arduino.\n\n## Arduino Code\n\nOpen up [Arduino Create](https://create.arduino.cc/editor/) and add the following code:\n\n```csharp\n#include \u003cMaxMatrix.h\u003e\n\nint DIN = 7;\nint CLK = 6;\nint CS = 5;\nint maxInUse = 1;\n\nMaxMatrix m(DIN, CS, CLK, maxInUse);\n\nchar smile01[] = {8, 8,\n  B00111100,\n  B01000010,\n  B10010101,\n  B10100001,\n  B10100001,\n  B10010101,\n  B01000010,\n  B00111100\n};\nchar smile02[] = {8, 8,\n  B00111100,\n  B01000010,\n  B10010101,\n  B10010001,\n  B10010001,\n  B10010101,\n  B01000010,\n  B00111100\n};\nchar smile03[] = {8, 8,\n  B00111100,\n  B01000010,\n  B10100101,\n  B10010001,\n  B10010001,\n  B10100101,\n  B01000010,\n  B00111100\n};\n\nvoid setup() {\n\n  m.init();\n  m.setIntensity(1);\n\n}\n\nvoid loop() {\n\n  m.writeSprite(0, 0, smile01);\n  delay( 500 );\n  m.writeSprite(0, 0, smile02);\n  delay( 500 );\n  m.writeSprite(0, 0, smile03);\n  delay( 500 );\n\n}\n```\n\n\u003e [View the Arduino code on Arduino Create](https://create.arduino.cc/editor/professoradam/3858d28f-b91f-4d77-a90e-ff8519007a8a/preview)\n\nYou will need to setup the following circuit using your Arduino:\n\n![Tinkercad Circuit](_readme/tinkercad-led-matrix.jpg)\n\n\u003e [View the Circuit on Tinkercad](https://www.tinkercad.com/things/cirt8n99Qga)\n\n\u003e Full tutorial URL:  \n\u003e https://codeadam.ca/learning/arduino-led-matrix.html\n\n***\n\n## Repo Resources\n\n- [Arduino Create](https://create.arduino.cc/editor)\n\n\u003cbr\u003e\n\u003ca href=\"https://codeadam.ca\"\u003e\n\u003cimg src=\"https://cdn.codeadam.ca/images@1.0.0/codeadam-logo-coloured-horizontal.png\" width=\"200\"\u003e\n\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeadamca%2Farduino-led-matrix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeadamca%2Farduino-led-matrix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeadamca%2Farduino-led-matrix/lists"}