New project

Dependencies:   mbed TextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Switch.h Source File

Switch.h

00001 #ifndef SWITCH_H
00002 #define SWITCH_H
00003 #include "Track.h"
00004 
00005 class Switch : public Track
00006 {
00007     public:
00008         Switch(const unsigned int newaddress, const unsigned int newinst);
00009         virtual ~Switch();
00010         void switchOn(); 
00011         void switchOff();
00012         
00013 
00014     protected:
00015 
00016     private:
00017     int nrPacket;
00018 };
00019 
00020 #endif // SWITCH_H