Api wrapper to communicate with EVRYTHNG's Engine.

Dependencies:   EthernetInterface mbed-rtos

Dependents:   EvrythngApiExample

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers evry_error.h Source File

evry_error.h

00001 /*
00002  * (c) Copyright 2012 EVRYTHNG Ltd London / Zurich
00003  * www.evrythng.com
00004  *
00005  * --- DISCLAIMER ---
00006  *
00007  * EVRYTHNG provides this source code "as is" and without warranty of any kind,
00008  * and hereby disclaims all express or implied warranties, including without
00009  * limitation warranties of merchantability, fitness for a particular purpose,
00010  * performance, accuracy, reliability, and non-infringement.
00011  *
00012  * Author: Michel Yerly
00013  *
00014  */
00015 #ifndef EVRY_ERROR_H
00016 #define EVRY_ERROR_H
00017 
00018 #define EVRY_ERR_OK 0
00019 #define EVRY_ERR_UNKNOWN 1
00020 #define EVRY_ERR_CANTCONNECT 2
00021 #define EVRY_ERR_CANTSEND 3
00022 #define EVRY_ERR_UNSUPPORTED 4
00023 #define EVRY_ERR_UNEXPECTEDHTTPSTATUS 5
00024 
00025 #endif