Weather casting with Machine Learning (SVM and SRNN).

Dependencies:   EthernetInterface GraphicHandler NTPClient SRNN SVM SensorModule mbed-rtos mbed

share.hpp

Committer:
yukari_hinata
Date:
2015-02-15
Revision:
0:f6cdb984f638
Child:
1:8538381cae81

File content as of revision 0:f6cdb984f638:

#ifndef SHARE_H_INCLUDED
#define SHARE_H_INCLUDED

// 天候を表す列挙型
typedef enum {
    SHINY  = 0,  // 晴れ
    CLOUDY = 1,  // 曇
    RAINY  = 2,  // 雨
    SNOWY  = 3,  // 雪
} WEATHER_STATUS;

#endif /* SHARE_H_INCLUDED */