mbed based IoT Gateway More details http://blog.thiseldo.co.uk/wp-filez/IoTGateway.pdf

Dependencies:   NetServices FatFileSystem csv_parser mbed MQTTClient RF12B DNSResolver SDFileSystem

Committer:
SomeRandomBloke
Date:
Tue May 01 21:43:40 2012 +0000
Revision:
4:d460406ac780
Parent:
0:a29a0225f203
Child:
5:0dbc27a7af55
Added output module for Sen.Se and emonCMS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
SomeRandomBloke 0:a29a0225f203 1 /** IoT Gateway Output definition for Pachube
SomeRandomBloke 0:a29a0225f203 2 *
SomeRandomBloke 0:a29a0225f203 3 * @author Andrew Lindsay
SomeRandomBloke 0:a29a0225f203 4 *
SomeRandomBloke 0:a29a0225f203 5 * @section LICENSE
SomeRandomBloke 0:a29a0225f203 6 *
SomeRandomBloke 0:a29a0225f203 7 * Copyright (c) 2012 Andrew Lindsay (andrew [at] thiseldo [dot] co [dot] uk)
SomeRandomBloke 0:a29a0225f203 8 *
SomeRandomBloke 0:a29a0225f203 9 * Permission is hereby granted, free of charge, to any person obtaining a copy
SomeRandomBloke 0:a29a0225f203 10 * of this software and associated documentation files (the "Software"), to deal
SomeRandomBloke 0:a29a0225f203 11 * in the Software without restriction, including without limitation the rights
SomeRandomBloke 0:a29a0225f203 12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
SomeRandomBloke 0:a29a0225f203 13 * copies of the Software, and to permit persons to whom the Software is
SomeRandomBloke 0:a29a0225f203 14 * furnished to do so, subject to the following conditions:
SomeRandomBloke 0:a29a0225f203 15
SomeRandomBloke 0:a29a0225f203 16 * The above copyright notice and this permission notice shall be included in
SomeRandomBloke 0:a29a0225f203 17 * all copies or substantial portions of the Software.
SomeRandomBloke 0:a29a0225f203 18 *
SomeRandomBloke 0:a29a0225f203 19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
SomeRandomBloke 0:a29a0225f203 20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
SomeRandomBloke 0:a29a0225f203 21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
SomeRandomBloke 0:a29a0225f203 22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
SomeRandomBloke 0:a29a0225f203 23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
SomeRandomBloke 0:a29a0225f203 24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
SomeRandomBloke 0:a29a0225f203 25 * THE SOFTWARE.
SomeRandomBloke 0:a29a0225f203 26 *
SomeRandomBloke 0:a29a0225f203 27 * @section DESCRIPTION
SomeRandomBloke 0:a29a0225f203 28 *
SomeRandomBloke 0:a29a0225f203 29 *
SomeRandomBloke 0:a29a0225f203 30 */
SomeRandomBloke 0:a29a0225f203 31
SomeRandomBloke 0:a29a0225f203 32 #ifndef _OUTPUTPACHUBE_H
SomeRandomBloke 0:a29a0225f203 33 #define _OUTPUTPACHUBE_H
SomeRandomBloke 0:a29a0225f203 34
SomeRandomBloke 0:a29a0225f203 35 #include "mbed.h"
SomeRandomBloke 0:a29a0225f203 36 #include "HTTPClient.h"
SomeRandomBloke 0:a29a0225f203 37 #include "HTTPText.h"
SomeRandomBloke 0:a29a0225f203 38
SomeRandomBloke 0:a29a0225f203 39 #define DATABUF_SIZE 128
SomeRandomBloke 0:a29a0225f203 40
SomeRandomBloke 4:d460406ac780 41 #define PACHUBE_URL "http://api.pachube.com/v2/feeds/%d.csv?_method=PUT"
SomeRandomBloke 4:d460406ac780 42
SomeRandomBloke 0:a29a0225f203 43 /** Output definition class for sending readings to Pachube
SomeRandomBloke 0:a29a0225f203 44 */
SomeRandomBloke 0:a29a0225f203 45 class OutputPachube {
SomeRandomBloke 0:a29a0225f203 46 public:
SomeRandomBloke 0:a29a0225f203 47 /** Default Constructor
SomeRandomBloke 0:a29a0225f203 48 */
SomeRandomBloke 0:a29a0225f203 49 OutputPachube();
SomeRandomBloke 4:d460406ac780 50
SomeRandomBloke 4:d460406ac780 51 /** Alternative Constructor
SomeRandomBloke 4:d460406ac780 52 *
SomeRandomBloke 4:d460406ac780 53 * @param internalBufferStart An internal buffer used to build up requests.
SomeRandomBloke 4:d460406ac780 54 * @param url Pointer to API Url
SomeRandomBloke 4:d460406ac780 55 * @param key Pointer to API key
SomeRandomBloke 4:d460406ac780 56 */
SomeRandomBloke 4:d460406ac780 57 OutputPachube( char *internalBufferStart, char *url, char *key );
SomeRandomBloke 0:a29a0225f203 58
SomeRandomBloke 0:a29a0225f203 59 /** Set the API Key to use for sending readings to Pachube
SomeRandomBloke 0:a29a0225f203 60 *
SomeRandomBloke 0:a29a0225f203 61 * @param key Pointer to API key
SomeRandomBloke 0:a29a0225f203 62 */
SomeRandomBloke 4:d460406ac780 63 // void setApiKey( char *key );
SomeRandomBloke 0:a29a0225f203 64
SomeRandomBloke 0:a29a0225f203 65 /** Initialise output definition object
SomeRandomBloke 0:a29a0225f203 66 */
SomeRandomBloke 0:a29a0225f203 67 virtual void init();
SomeRandomBloke 0:a29a0225f203 68
SomeRandomBloke 0:a29a0225f203 69 /** Add a character pointer reading to output
SomeRandomBloke 0:a29a0225f203 70 *
SomeRandomBloke 0:a29a0225f203 71 * @param dataFeed The feed to update
SomeRandomBloke 0:a29a0225f203 72 * @param dataStream The data stream within the feed to update or null if no feed
SomeRandomBloke 0:a29a0225f203 73 * @param reading The new value
SomeRandomBloke 0:a29a0225f203 74 */
SomeRandomBloke 0:a29a0225f203 75 virtual void addReading(char *dataFeed, char *dataStream, char *reading );
SomeRandomBloke 0:a29a0225f203 76
SomeRandomBloke 0:a29a0225f203 77 /** Send any collected readings to the api
SomeRandomBloke 0:a29a0225f203 78 *
SomeRandomBloke 0:a29a0225f203 79 * @returns -1 for fail, 1 for success
SomeRandomBloke 0:a29a0225f203 80 */
SomeRandomBloke 0:a29a0225f203 81 virtual int send();
SomeRandomBloke 0:a29a0225f203 82
SomeRandomBloke 0:a29a0225f203 83 protected:
SomeRandomBloke 0:a29a0225f203 84 int sendCount;
SomeRandomBloke 0:a29a0225f203 85 // Pachube config
SomeRandomBloke 4:d460406ac780 86 char *apiUrl;
SomeRandomBloke 0:a29a0225f203 87 char *apiKey;
SomeRandomBloke 4:d460406ac780 88 char *dataBuffer; // Pointer to start of databuffer
SomeRandomBloke 0:a29a0225f203 89 char *dbufPtr;
SomeRandomBloke 0:a29a0225f203 90 int currentFeed;
SomeRandomBloke 0:a29a0225f203 91 };
SomeRandomBloke 0:a29a0225f203 92
SomeRandomBloke 0:a29a0225f203 93 #endif /* _OUTPUTPACHUBE_H */