This is an example of BLE GATT Client, which receives broadcast data from BLE_Server_BME280 ( a GATT server) , then transfers values up to mbed Device Connector (cloud).

Please refer details about BLEClient_mbedDevConn below. https://github.com/soramame21/BLEClient_mbedDevConn

The location of required BLE GATT server, BLE_Server_BME280, is at here. https://developer.mbed.org/users/edamame22/code/BLE_Server_BME280/

Committer:
edamame22
Date:
Thu Apr 13 04:48:11 2017 +0000
Revision:
0:29983394c6b6
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
edamame22 0:29983394c6b6 1 .tabs, .tabs2, .tabs3 {
edamame22 0:29983394c6b6 2 background-image: url('tab_b.png');
edamame22 0:29983394c6b6 3 width: 100%;
edamame22 0:29983394c6b6 4 z-index: 101;
edamame22 0:29983394c6b6 5 font-size: 13px;
edamame22 0:29983394c6b6 6 font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif;
edamame22 0:29983394c6b6 7 }
edamame22 0:29983394c6b6 8
edamame22 0:29983394c6b6 9 .tabs2 {
edamame22 0:29983394c6b6 10 font-size: 10px;
edamame22 0:29983394c6b6 11 }
edamame22 0:29983394c6b6 12 .tabs3 {
edamame22 0:29983394c6b6 13 font-size: 9px;
edamame22 0:29983394c6b6 14 }
edamame22 0:29983394c6b6 15
edamame22 0:29983394c6b6 16 .tablist {
edamame22 0:29983394c6b6 17 margin: 0;
edamame22 0:29983394c6b6 18 padding: 0;
edamame22 0:29983394c6b6 19 display: table;
edamame22 0:29983394c6b6 20 }
edamame22 0:29983394c6b6 21
edamame22 0:29983394c6b6 22 .tablist li {
edamame22 0:29983394c6b6 23 float: left;
edamame22 0:29983394c6b6 24 display: table-cell;
edamame22 0:29983394c6b6 25 background-image: url('tab_b.png');
edamame22 0:29983394c6b6 26 line-height: 36px;
edamame22 0:29983394c6b6 27 list-style: none;
edamame22 0:29983394c6b6 28 }
edamame22 0:29983394c6b6 29
edamame22 0:29983394c6b6 30 .tablist a {
edamame22 0:29983394c6b6 31 display: block;
edamame22 0:29983394c6b6 32 padding: 0 20px;
edamame22 0:29983394c6b6 33 font-weight: bold;
edamame22 0:29983394c6b6 34 background-image:url('tab_s.png');
edamame22 0:29983394c6b6 35 background-repeat:no-repeat;
edamame22 0:29983394c6b6 36 background-position:right;
edamame22 0:29983394c6b6 37 color: #283A5D;
edamame22 0:29983394c6b6 38 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
edamame22 0:29983394c6b6 39 text-decoration: none;
edamame22 0:29983394c6b6 40 outline: none;
edamame22 0:29983394c6b6 41 }
edamame22 0:29983394c6b6 42
edamame22 0:29983394c6b6 43 .tabs3 .tablist a {
edamame22 0:29983394c6b6 44 padding: 0 10px;
edamame22 0:29983394c6b6 45 }
edamame22 0:29983394c6b6 46
edamame22 0:29983394c6b6 47 .tablist a:hover {
edamame22 0:29983394c6b6 48 background-image: url('tab_h.png');
edamame22 0:29983394c6b6 49 background-repeat:repeat-x;
edamame22 0:29983394c6b6 50 color: #fff;
edamame22 0:29983394c6b6 51 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
edamame22 0:29983394c6b6 52 text-decoration: none;
edamame22 0:29983394c6b6 53 }
edamame22 0:29983394c6b6 54
edamame22 0:29983394c6b6 55 .tablist li.current a {
edamame22 0:29983394c6b6 56 background-image: url('tab_a.png');
edamame22 0:29983394c6b6 57 background-repeat:repeat-x;
edamame22 0:29983394c6b6 58 color: #fff;
edamame22 0:29983394c6b6 59 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
edamame22 0:29983394c6b6 60 }