{"id":26871232,"url":"https://github.com/codeadamca/arduino-neopixel-ring","last_synced_at":"2026-05-19T05:34:02.575Z","repository":{"id":115326613,"uuid":"301603138","full_name":"codeadamca/arduino-neopixel-ring","owner":"codeadamca","description":"A basic example of controlling a NeoPixel ring using an Arduino.","archived":false,"fork":false,"pushed_at":"2025-01-26T22:04:50.000Z","size":103,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-26T23:18:06.227Z","etag":null,"topics":["arduino","cplusplus","neopixel-ring"],"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-06T03:26:00.000Z","updated_at":"2025-01-26T22:04:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"3ab96313-d08a-4bc7-af86-f185e4a359c9","html_url":"https://github.com/codeadamca/arduino-neopixel-ring","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/codeadamca%2Farduino-neopixel-ring","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Farduino-neopixel-ring/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Farduino-neopixel-ring/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Farduino-neopixel-ring/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeadamca","download_url":"https://codeload.github.com/codeadamca/arduino-neopixel-ring/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246429486,"owners_count":20775809,"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":["arduino","cplusplus","neopixel-ring"],"created_at":"2025-03-31T07:18:50.337Z","updated_at":"2025-10-20T02:43:40.245Z","avatar_url":"https://github.com/codeadamca.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Arduino and a Neopixel Ring\n\nA basic example of controlling a NeoPixel ring 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 \u003cAdafruit_NeoPixel.h\u003e\n\n#define PIN 6\n\n#define NUMPIXELS 16\n\nAdafruit_NeoPixel pixels = Adafruit_NeoPixel(\n  NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);\n\nint delayLength = 100;\n\nvoid setup() {\n\n  pixels.begin();\n  pixels.show();\n\n}\n\nvoid loop() {\n\n  for(int i=0; i\u003cNUMPIXELS;i++) {\n\n    pixels.setPixelColor(i,pixels.Color(20,0,0));\n    pixels.show();\n\n    delay(delayLength);\n\n  }\n\n  for(int i=0; i\u003cNUMPIXELS;i++) {\n\n    pixels.setPixelColor(i,pixels.Color(0,0,20));\n    pixels.show();\n\n    delay(delayLength);\n\n  }\n\n}\n```\n\n\u003e [View the Arduino code on Arduino Create](https://create.arduino.cc/editor/professoradam/457c1bce-ed38-41cc-b448-c60ab2faad93/preview)\n\nYou will need to setup the following circuit using your Arduino:\n\n![Tinkercad Circuit](_readme/tinkercad-neopixel-ring.png)\n\n\u003e [View the Circuit on Tinkercad](https://www.tinkercad.com/things/aJU4HME0WBN)\n\n\u003e Full tutorial URL:  \n\u003e https://codeadam.ca/learning/arduino-neopixel-ring.html\n\n---\n\n## Repo Resources\n\n- [Visual Studio Code](https://code.visualstudio.com/)\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-neopixel-ring","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeadamca%2Farduino-neopixel-ring","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeadamca%2Farduino-neopixel-ring/lists"}