Initial commit with basic C code to write to pins.

This commit is contained in:
Marvin Blum
2017-03-09 23:30:15 +01:00
commit c358ee6a05
4 changed files with 84 additions and 0 deletions

10
pins.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef PINS_H_
#define PINS_H_
extern const unsigned char LOW;
extern const unsigned char HIGH;
void digitalWrite(unsigned char, unsigned char);
void analogWrite(unsigned char, unsigned char);
#endif