Jelle Raes / Mbed 2 deprecated Projec_1_projectlab

Dependencies:   EthernetInterface LM75B mbed-rtos mbed

Fork of communication by Jelle Raes

slave.h

Committer:
JelleRaes
Date:
2018-03-14
Revision:
3:9c600fb19ed2
Parent:
1:550192b4ae8e
Child:
4:4848f847d2ce

File content as of revision 3:9c600fb19ed2:

#ifndef SLAVE_H
#define SLAVE_H
class slave{
    public:
    slave();
    void startSlave(const char *ip);   
    
    private:
    float getTemp();
    float getPot();
    void putLCD(char*);
    void putLED(char*);
    void putLED(float, float, float);
    void putBuzzer(int,int);
    char *getResponse(const char *request,const char *ip);
}; 
#endif