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 INTELLIGENCE_H
projetmacintel 0:43669f623d43 2 #define INTELLIGENCE_H
projetmacintel 0:43669f623d43 3
projetmacintel 0:43669f623d43 4 #include "mbed.h"
projetmacintel 0:43669f623d43 5 #include "rtos.h"
projetmacintel 0:43669f623d43 6 #include "eau.h"
projetmacintel 0:43669f623d43 7
projetmacintel 0:43669f623d43 8 // Threads :
projetmacintel 0:43669f623d43 9 void thread_detection_visage(void const *args);
projetmacintel 0:43669f623d43 10 void thread_check(void const *args);
projetmacintel 0:43669f623d43 11 void thread_prendreEtEnvoyerPhotosEnContinu(void const *args);
projetmacintel 0:43669f623d43 12
projetmacintel 0:43669f623d43 13 //bool detecterUtilisateur();
projetmacintel 0:43669f623d43 14 void async_desactiverDetectionVisage();
projetmacintel 0:43669f623d43 15 void async_activerDetectionVisage();
projetmacintel 0:43669f623d43 16 bool async_visageDetecte();
projetmacintel 0:43669f623d43 17 void communiquerAuServeurEmissionsPhotos();
projetmacintel 0:43669f623d43 18 void communiquerAuServeurFinEmissionPhotos();
projetmacintel 0:43669f623d43 19 bool communiquerAuServeurPreferencesUtilisateur(int preference_intensite, int preference_longueur);
projetmacintel 0:43669f623d43 20 void async_lancerPriseEtEnvoiPhotosEnContinu();
projetmacintel 0:43669f623d43 21 void async_stopperPriseEtEnvoiPhotosEnContinu();
projetmacintel 0:43669f623d43 22
projetmacintel 0:43669f623d43 23 #endif