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.
Dependencies: EthernetInterface LM75B mbed-rtos mbed
Fork of communication by
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
