Smart coffee machine with facial recognition and remote control

Dependencies:   Camera_LS_Y201 EthernetInterface EthernetNetIf HTTPClient SRF05 TextLCD mbed-rtos mbed-src

Committer:
projetmacintel
Date:
Wed Jan 15 11:09:52 2014 +0000
Revision:
0:43669f623d43
dep?t final PAO Macintel

Who changed what in which revision?

UserRevisionLine numberNew contents of line
projetmacintel 0:43669f623d43 1 #ifndef ETHERNET_H
projetmacintel 0:43669f623d43 2 #define ETHERNET_H
projetmacintel 0:43669f623d43 3
projetmacintel 0:43669f623d43 4 #include "mbed.h"
projetmacintel 0:43669f623d43 5 #include "rtos.h"
projetmacintel 0:43669f623d43 6 #include "led.h"
projetmacintel 0:43669f623d43 7 #include "ecran_lcd.h"
projetmacintel 0:43669f623d43 8 #include "EthernetInterface.h"
projetmacintel 0:43669f623d43 9 #include "HTTPClient.h"
projetmacintel 0:43669f623d43 10
projetmacintel 0:43669f623d43 11 bool preparationEthernet();
projetmacintel 0:43669f623d43 12 bool connexionSocket();
projetmacintel 0:43669f623d43 13 void deconnexionEthernet();
projetmacintel 0:43669f623d43 14 void deconnexionSocket();
projetmacintel 0:43669f623d43 15 bool envoyerRequete(char complement_url[200]);
projetmacintel 0:43669f623d43 16 bool envoyerRequete(char complement_url[200], char *reponse, int longueur_reponse);
projetmacintel 0:43669f623d43 17 void envoyerChaineSocket(char *chaine, int taille_chaine, char *reponse, int longueur_max_reponse);
projetmacintel 0:43669f623d43 18
projetmacintel 0:43669f623d43 19 #endif