https://github.com/codeadamca/arduino-neopixel-ring
A basic example of controlling a NeoPixel ring using an Arduino.
https://github.com/codeadamca/arduino-neopixel-ring
arduino cplusplus neopixel-ring
Last synced: about 2 months ago
JSON representation
A basic example of controlling a NeoPixel ring using an Arduino.
- Host: GitHub
- URL: https://github.com/codeadamca/arduino-neopixel-ring
- Owner: codeadamca
- Created: 2020-10-06T03:26:00.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-01-26T22:04:50.000Z (11 months ago)
- Last Synced: 2025-01-26T23:18:06.227Z (11 months ago)
- Topics: arduino, cplusplus, neopixel-ring
- Language: C++
- Homepage:
- Size: 101 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Arduino and a Neopixel Ring
A basic example of controlling a NeoPixel ring using an Arduino.
## Arduino Code
Open up [Arduino Create](https://create.arduino.cc/editor/) and add the following code:
```csharp
#include
#define PIN 6
#define NUMPIXELS 16
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(
NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);
int delayLength = 100;
void setup() {
pixels.begin();
pixels.show();
}
void loop() {
for(int i=0; i [View the Arduino code on Arduino Create](https://create.arduino.cc/editor/professoradam/457c1bce-ed38-41cc-b448-c60ab2faad93/preview)
You will need to setup the following circuit using your Arduino:

> [View the Circuit on Tinkercad](https://www.tinkercad.com/things/aJU4HME0WBN)
> Full tutorial URL:
> https://codeadam.ca/learning/arduino-neopixel-ring.html
---
## Repo Resources
- [Visual Studio Code](https://code.visualstudio.com/)
- [Arduino Create](https://create.arduino.cc/editor)