Sensos Module Updated
Fork of Middleware by
Initial.h
- Committer:
- Jorge_Beltran
- Date:
- 2015-12-10
- Revision:
- 3:1704050210b5
- Parent:
- 1:fd355dc296b1
File content as of revision 3:1704050210b5:
/* Initial.h Only to improve the clarity of main .cpp This don't have any new classes Initial Configuration for Smart Room project is here Last update by RoHe 16/11/2015 */ #ifndef INITIAL_H_ #define INITIAL_H_ #include "mbed.h" #include "EthernetInterface.h" #include "StringManager.h" static Serial pc(USBTX, USBRX); static DigitalOut ledRED(LED1); static DigitalOut ledGREEN(LED2); static DigitalOut ledBLUE(LED3); static InterruptIn sw2(SW2); static EthernetInterface eth; static TCPSocketServer serverTCP; static TCPSocketConnection socketTCP1; static TCPSocketConnection socketTCP2; static UDPSocket socketUDP; static StringManager stringManager; static char *cad; static char *s_myIP; static char *s_end="\n\r"; static bool bo_somethingWrong=false; #endif