mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-09-29 05:23:17 +08:00
15 lines
210 B
C
Executable File
15 lines
210 B
C
Executable File
/*
|
|
BlinkM.h
|
|
Library header file for BlinkM library
|
|
*/
|
|
#if (ARDUINO >= 100)
|
|
# include "Arduino.h"
|
|
#else
|
|
# include "WProgram.h"
|
|
#endif
|
|
|
|
#include "Wire.h"
|
|
|
|
void SendColors(byte red, byte grn, byte blu);
|
|
|