-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathwebclient.h
36 lines (30 loc) · 1.28 KB
/
webclient.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// **********************************************************************************
// Remora WEB Client include source code
// **********************************************************************************
// Creative Commons Attrib Share-Alike License
// You are free to use/extend this library but please abide with the CC-BY-SA license:
// Attribution-NonCommercial-ShareAlike 4.0 International License
// http://creativecommons.org/licenses/by-nc-sa/4.0/
//
// This program works with the Remora board
// see schematic here https://github.com/thibdct/programmateur-fil-pilote-wifi
//
// Written by Charles-Henri Hallard (http://hallard.me)
//
// History 2016-01-04 - Creation
//
// All text above must be included in any redistribution.
//
// **********************************************************************************
#ifndef WEBCLIENT_H
#define WEBCLIENT_H
// Include main project include file
#include "remora.h"
// Exported variables/object instancied in main sketch
// ===================================================
// declared exported function from route.cpp
// ===================================================
boolean httpPost(const char * host, const uint16_t port, const char * url, const uint8_t fingerprint[]);
boolean emoncmsPost(void);
boolean jeedomPost(void);
#endif