
PIC to Mbed errors
ubidots.h
- Committer:
- dan_cuspi
- Date:
- 2017-09-01
- Revision:
- 0:b329a09583fb
File content as of revision 0:b329a09583fb:
#ifndef UBIDOTS_H #define UBIDOTS_H #include <stdio.h> #include <string.h> #include <stdint.h> #define UBIDOTS_SERVER "things.ubidots.com" #define SIZE_HTTP_BODY 100 #define SIZE_BUFFER_POST 200 #define TOKEN "DihroZdscJDt6ZIBX8TMBr84QZDTM7" #define VARIABLE_ID "59977324c03M973c345e0527" #define VALUE "\"value\": 1.0" //const char* ubidotsPOST( const char* token, const char* variable_id, float value); uint8_t* ubidotsGET(uint8_t* token, uint8_t* variable_id ); #endif