Example code of sakura.io Evaluation board.

Dependencies:   AQM0802A BME280 MPU9250_SPI SakuraIO gps mbed

SakuraIo Evaluation Board Standard

Overview

This program is example code of sakura.io Evaluation board.

Functions

  • Periodic measure from onboard sensors(period is 200ms)
    • Motion sensor(gyro, accelometer, magnetometer)
    • Environment sensor(temperatur, humidity, airpressur)
    • GPS(longitude, latitude, timestamp)
  • Periodic send the measuring datas to sakura.io platform(period is 300sec)
  • Output the measured datas output to USB-Serial port
    • baudrate is 9600bps
  • Can select on / off of periodic running with switch `SW5`

Description

See the Getting Started page.

MAINTENANCE.md

Committer:
Fuminori OKUHARA
Date:
2018-08-07
Revision:
9:ac019d9b57d7
Parent:
7:b5d2aeda9628

File content as of revision 9:ac019d9b57d7:

# Maintenance

## Sync with github.com

### Setup hg-git

```bash
pip install mercurial hg-git
```

#### ~/.hgrc

```
[extensions]
hggit =
```

### mbed.org to github.com

```bash
hg clone https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Evaluation_Board_Standard/ SakuraIO_Evaluation_Board_Standard-sync
cd SakuraIO_Evaluation_Board_Standard
hg push git@github.com:sakuraio/SakuraIO_Evaluation_Board_Standard.git
```

### github.com to mbed.org

```bash
hg pull git@github.com:sakuraio/SakuraIO_Evaluation_Board_Standard.git
hg outgoing https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Evaluation_Board_Standard/ # check diff
hg push https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Evaluation_Board_Standard/
```