Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: CC3000Spi/DigitalClass.h
- Revision:
- 0:6ad60d78b315
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/CC3000Spi/DigitalClass.h Sat Sep 14 17:38:41 2013 +0000
@@ -0,0 +1,27 @@
+
+#ifndef DigitalClass_H
+#define DigitalClass_H
+
+
+class DigitalClass
+{
+
+public:
+
+/**
+ * Constructor.
+ *
+ * @param pin_IRQ CC3000 irq pin.
+ * @param pin pin_EN power enable for CC3000.
+ */
+
+DigitalClass(PinName Pin_IRQ, PinName Pin_EN);
+
+
+DigitalOut WLAN_EN;
+DigitalIn WLAN_IRQ;
+
+
+};
+
+#endif
\ No newline at end of file