A Port of TI's Webserver for the CC3000

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DigitalClass.h Source File

DigitalClass.h

00001 
00002 #ifndef DigitalClass_H
00003 #define DigitalClass_H
00004 
00005 
00006 class DigitalClass 
00007 {
00008 
00009 public:
00010 
00011 /**
00012      * Constructor.
00013      *
00014      * @param pin_IRQ CC3000 irq pin.
00015      * @param pin pin_EN power enable for CC3000.
00016      */
00017 
00018 DigitalClass(PinName Pin_IRQ, PinName Pin_EN);
00019 
00020 
00021 DigitalOut WLAN_EN;
00022 DigitalIn WLAN_IRQ;
00023 
00024 
00025 };
00026 
00027 #endif