This repository was archived by the owner on Jan 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 24 files changed +2
-24
lines changed Expand file tree Collapse file tree 24 files changed +2
-24
lines changed Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
13
12
GET client with HTTP basic authentication for ArduinoHttpClient library
14
13
Connects to server once every five seconds, sends a GET request
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
13
12
Custom request header example for the ArduinoHttpClient
14
13
library. This example sends a GET and a POST request with a custom header every 5 seconds.
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
13
12
Connects to dweet.io once every ten seconds, sends a GET request and a request body. Uses SSL
14
13
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
11
+
12
12
Connects to dweet.io once every ten seconds, sends a POST request and a request body.
13
13
14
14
Shows how to use Strings to assemble path and parse content from response. dweet.io expects:
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
13
12
Uses HttpClient to control Philips Hue
14
13
For more on Hue developer API see http://developer.meethue.com
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
13
12
POST with headers client for HttpClient
14
13
Connects to server once every five seconds, sends a POST request
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
13
12
Simple DELETE client for HttpClient
14
13
Connects to server once every five seconds, sends a DELETE request
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
13
12
Simple GET client for HttpClient
14
13
Connects to server once every five seconds, sends a GET request
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
13
12
Simple example to show how to use the HttpClient library
14
13
Get's the web page given at http://<kHostname><kPath> and outputs the content to the serial port
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
13
12
Simple POST client for HttpClient
14
13
Connects to server once every five seconds, sends a POST request
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
11
+
12
12
Simple PUT client for HttpClient
13
13
Connects to server once every five seconds, sends a PUT request
14
14
and a request body
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
13
12
Simple WebSocket client for HttpClient
14
13
Connects to the WebSocket server, and sends a hello
Original file line number Diff line number Diff line change 8
8
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
9
9
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
11
- Licensed under MIT license
12
11
***************************************************************************************************************************************/
13
12
14
13
#ifndef defines_h
You can’t perform that action at this time.
0 commit comments