10 lines
157 B
C++
10 lines
157 B
C++
|
#pragma once
|
||
|
#include "pico/stdlib.h"
|
||
|
|
||
|
#include "ws2812.hpp"
|
||
|
|
||
|
namespace plasma {
|
||
|
namespace plasma_stick {
|
||
|
const uint DAT = 15; // Used for WS2812
|
||
|
}
|
||
|
}
|