aboutsummaryrefslogtreecommitdiffstats
path: root/wirish/io.h
diff options
context:
space:
mode:
Diffstat (limited to 'wirish/io.h')
-rw-r--r--wirish/io.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/wirish/io.h b/wirish/io.h
index 50e748f..0cb9c04 100644
--- a/wirish/io.h
+++ b/wirish/io.h
@@ -33,10 +33,9 @@
#ifndef _IO_H_
#define _IO_H_
-#include "gpio.h"
-#include "adc.h"
+#include "libmaple_types.h"
-#include "wirish_time.h"
+#include "boards.h"
/**
* Specifies a GPIO pin behavior.
@@ -112,6 +111,9 @@ typedef enum WiringPinMode {
*/
void pinMode(uint8 pin, WiringPinMode mode);
+#define HIGH 0x1
+#define LOW 0x0
+
/**
* Writes a (digital) value to a pin. The pin must have its
* mode set to OUTPUT or OUTPUT_OPEN_DRAIN.
@@ -219,4 +221,3 @@ uint8 waitForButtonPress(uint32 timeout_millis=0);
void shiftOut(uint8 dataPin, uint8 clockPin, uint8 bitOrder, uint8 value);
#endif
-