Demo for Mbed Connect Cloud board and an HTTP Python Server

Dependencies:   C12832 mbed-http

Fork of HTTP-Python-Demo by Cambridge Hackathon

Test

Committer:
Jenny Plunkett
Date:
Fri Nov 17 16:04:17 2017 -0600
Revision:
2:b91140c3c3f6
Parent:
0:c5b042cf8162
Fixed typo

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jenny Plunkett 0:c5b042cf8162 1 //----------------------------------------------------------------------------
Jenny Plunkett 0:c5b042cf8162 2 // The confidential and proprietary information contained in this file may
Jenny Plunkett 0:c5b042cf8162 3 // only be used by a person authorised under and to the extent permitted
Jenny Plunkett 0:c5b042cf8162 4 // by a subsisting licensing agreement from ARM Limited or its affiliates.
Jenny Plunkett 0:c5b042cf8162 5 //
Jenny Plunkett 0:c5b042cf8162 6 // (C) COPYRIGHT 2016 ARM Limited or its affiliates.
Jenny Plunkett 0:c5b042cf8162 7 // ALL RIGHTS RESERVED
Jenny Plunkett 0:c5b042cf8162 8 //
Jenny Plunkett 0:c5b042cf8162 9 // This entire notice must be reproduced on all copies of this file
Jenny Plunkett 0:c5b042cf8162 10 // and copies of this file may only be made by a person if such person is
Jenny Plunkett 0:c5b042cf8162 11 // permitted to do so under the terms of a subsisting license agreement
Jenny Plunkett 0:c5b042cf8162 12 // from ARM Limited or its affiliates.
Jenny Plunkett 0:c5b042cf8162 13 //----------------------------------------------------------------------------
Jenny Plunkett 0:c5b042cf8162 14 #include "mbed.h"
Jenny Plunkett 0:c5b042cf8162 15 #include "C12832.h"
Jenny Plunkett 0:c5b042cf8162 16 #include "OdinWiFiInterface.h"
Jenny Plunkett 0:c5b042cf8162 17 #include "http_request.h"
Jenny Plunkett 0:c5b042cf8162 18
Jenny Plunkett 0:c5b042cf8162 19 // GLOBAL VARIABLES HERE
Jenny Plunkett 0:c5b042cf8162 20
Jenny Plunkett 0:c5b042cf8162 21
Jenny Plunkett 2:b91140c3c3f6 22 // FUNCTION DEFINITIONS HERE
Jenny Plunkett 0:c5b042cf8162 23
Jenny Plunkett 0:c5b042cf8162 24
Jenny Plunkett 0:c5b042cf8162 25 int main() {
Jenny Plunkett 0:c5b042cf8162 26
Jenny Plunkett 0:c5b042cf8162 27 // MAIN CODE HERE
Jenny Plunkett 0:c5b042cf8162 28
Jenny Plunkett 0:c5b042cf8162 29
Jenny Plunkett 0:c5b042cf8162 30 }