Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: EthernetInterface8 TLS_cyassl mbed-rtos mbed
Homepage
Once you launched this program on the mbed, create a small python script :
TLS client
import httplib conn = httplib.HTTPSConnection("10.2.200.35", 443) conn.request("GET", "/") r1 = conn.getresponse() print r1.status, r1.reason data = r1.read() print data
In the terminal, your mbed prints its own IP address. Replace 10.2.200.35 with the IP address of your mbed.