19 lines
189 B
C++
19 lines
189 B
C++
|
/*
|
||
|
* ws2801.cpp
|
||
|
*
|
||
|
* Created: 26-12-16 21:56:18
|
||
|
* Author : Adrien
|
||
|
*/
|
||
|
|
||
|
#include <avr/io.h>
|
||
|
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
/* Replace with your application code */
|
||
|
while (1)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|