13 lines
278 B
C
13 lines
278 B
C
|
#pragma once
|
||
|
#include "render/Color.h"
|
||
|
#include <stddef.h>
|
||
|
|
||
|
namespace Serial
|
||
|
{
|
||
|
void wait();
|
||
|
void write(const char* string, size_t size);
|
||
|
void print(const char* string);
|
||
|
void println(const char* string);
|
||
|
void set_color(Color& color);
|
||
|
void reset_color();
|
||
|
}
|