Marlin_Firmware/Marlin/BlinkM.cpp

23 lines
473 B
C++
Raw Normal View History

2013-09-10 04:18:29 -05:00
/*
BlinkM.cpp - Library for controlling a BlinkM over i2c
Created by Tim Koster, August 21 2013.
*/
2013-10-20 03:06:02 -05:00
#include "Marlin.h"
2013-10-20 02:55:15 -05:00
#ifdef BLINKM
2013-09-10 04:18:29 -05:00
#include "BlinkM.h"
void SendColors(byte red, byte grn, byte blu) {
2013-09-10 04:18:29 -05:00
Wire.begin();
Wire.beginTransmission(0x09);
Wire.write('o'); //to disable ongoing script, only needs to be used once
Wire.write('n');
Wire.write(red);
Wire.write(grn);
Wire.write(blu);
Wire.endTransmission();
}
2013-10-20 02:55:15 -05:00
#endif //BLINKM