Sample program of SAKURA Internet IoT Communication Module

Dependencies:   SakuraIO mbed

View the Github repository.

Committer:
chibiegg
Date:
Sun Feb 25 04:42:27 2018 +0900
Revision:
13:2befc704b349
Parent:
4:59d500069fed
Merge pull request #5 from sakuraio/feat/travisci

Travis CI

Who changed what in which revision?

UserRevisionLine numberNew contents of line
chibiegg 4:59d500069fed 1 # Maintenance
chibiegg 4:59d500069fed 2
chibiegg 4:59d500069fed 3 ## Sync with github.com
chibiegg 4:59d500069fed 4
chibiegg 4:59d500069fed 5 ### Setup hg-git
chibiegg 4:59d500069fed 6
chibiegg 4:59d500069fed 7 ```bash
chibiegg 4:59d500069fed 8 pip install mercurial hg-git
chibiegg 4:59d500069fed 9 ```
chibiegg 4:59d500069fed 10
chibiegg 4:59d500069fed 11 #### ~/.hgrc
chibiegg 4:59d500069fed 12
chibiegg 4:59d500069fed 13 ```
chibiegg 4:59d500069fed 14 [extensions]
chibiegg 4:59d500069fed 15 hggit =
chibiegg 4:59d500069fed 16 ```
chibiegg 4:59d500069fed 17
chibiegg 4:59d500069fed 18 ### mbed.org to github.com
chibiegg 4:59d500069fed 19
chibiegg 4:59d500069fed 20 ```bash
chibiegg 4:59d500069fed 21 hg clone https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Standard/ SakuraIO_Standard-sync
chibiegg 4:59d500069fed 22 cd SakuraIOmbed-sync
chibiegg 4:59d500069fed 23 hg push git@github.com:sakuraio/sakuraio-mbed-standard.git
chibiegg 4:59d500069fed 24 ```
chibiegg 4:59d500069fed 25
chibiegg 4:59d500069fed 26 ### github.com to mbed.org
chibiegg 4:59d500069fed 27
chibiegg 4:59d500069fed 28 ```bash
chibiegg 4:59d500069fed 29 hg pull git@github.com:sakuraio/sakuraio-mbed-standard.git
chibiegg 4:59d500069fed 30 hg outgoing https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Standard/ # check diff
chibiegg 4:59d500069fed 31 hg push https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Standard/
chibiegg 4:59d500069fed 32 ```