├── LICENSE.md ├── README.md ├── RestClient.cpp ├── RestClient.h └── examples ├── full_test_suite └── full_test_suite.ino ├── simple_GET └── simple_GET.ino └── simple_POST └── simple_POST.ino /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csquared/arduino-restclient/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csquared/arduino-restclient/HEAD/README.md -------------------------------------------------------------------------------- /RestClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csquared/arduino-restclient/HEAD/RestClient.cpp -------------------------------------------------------------------------------- /RestClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csquared/arduino-restclient/HEAD/RestClient.h -------------------------------------------------------------------------------- /examples/full_test_suite/full_test_suite.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csquared/arduino-restclient/HEAD/examples/full_test_suite/full_test_suite.ino -------------------------------------------------------------------------------- /examples/simple_GET/simple_GET.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csquared/arduino-restclient/HEAD/examples/simple_GET/simple_GET.ino -------------------------------------------------------------------------------- /examples/simple_POST/simple_POST.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csquared/arduino-restclient/HEAD/examples/simple_POST/simple_POST.ino --------------------------------------------------------------------------------