mirror of
https://github.com/digistump/DigistumpArduino.git
synced 2025-04-28 15:49:02 -07:00
14 lines
270 B
C
14 lines
270 B
C
/*
|
|
DigisparkPWM.h - Library for pwm on PB2 on ATTINY85.
|
|
Created by Digistump
|
|
Released into the public domain.
|
|
*/
|
|
#ifndef DigisparkRGB_h
|
|
#define DigisparkRGB_h
|
|
|
|
|
|
void DigisparkRGBBegin();
|
|
void DigisparkRGBDelay(int ms);
|
|
void DigisparkRGB(int pin,int value);
|
|
|
|
#endif |