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.
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
Generated on Fri Jul 22 2022 17:31:31 by
1.7.2