Seeed
Published

A Trophy That Blinks

The trophy is customized to reward the outstanding employees and teams with the shape of 10 to celebrate the 10th anniversary of Seeed.

IntermediateFull instructions provided5 hours605

Things used in this project

Hardware components

Wio Link
Seeed Studio Wio Link
×1
Seeed Studio Grove - RGB LED Ring (20 WS2813 Mini)
×1
Seeed Studio Grove - RGB LED Stick (10 WS2813 Mini)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

CNC Milling Machine
Laser cutter (generic)
Laser cutter (generic)

Story

Read more

Custom parts and enclosures

Seeed10 Trophy Laser Cutting Parts in CAD

Seeed10 Trophy Laser Cutting Parts in dxf

Seeed10 Trophy 3D Design & Milling Files

Code

Seeed10 Trophy.ino

Arduino
#include "grove_led_ws2812.h"

// 10 leds
GroveLedWs2812 led_ring(12);
// 20 leds
GroveLedWs2812 led_stick(13);

void setup() {
    pinMode(PIN_GROVE_POWER, OUTPUT);
    digitalWrite(PIN_GROVE_POWER, 1);
    led_ring.write_start_rainbow_flow(20, 100, 5);
    led_stick.write_start_rainbow_flow(10, 100, 5);

}

void loop() {
    
}

Credits

Seeed

Seeed

101 projects • 159 followers
Seeed R&D Team
Thanks to Lily Li.

Comments