Skip to content

Commit

Permalink
Merge pull request #51 from sakuraio/release/v1.1.2
Browse files Browse the repository at this point in the history
release v1.1.2
  • Loading branch information
chibiegg authored Jun 24, 2017
2 parents 2da4b33 + 57e9207 commit 941b17f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
28 changes: 22 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@

**Under development**

[Sakura Communication Module](https://iot.sakura.ad.jp/product/) (with [sakura.io](https://sakura.io/)) library for Arduino.
[Sakura Communication Module](https://sakura.io/product/) (with [sakura.io](https://sakura.io/)) library for Arduino.

[sakura.io](https://sakura.io/) is the IoT platform of SAKURA intenret Inc.

# Support

This library supports following products.

* [SCM-LTE-Beta (Sakura Communication Module (LTE) β)](https://www.amazon.co.jp/dp/B06XWZDSQV)
* SCM-LTE-01 (Sakura Communication Module (LTE))
* SCM-LTE-Beta (Sakura Communication Module (LTE) β)
* [SCM-LTE-01 (Sakura Communication Module (LTE))](https://sakura.io/product/module_lte.html)

with

* [SCO-ARD-01 (Arduino Shield for SCM)](http://iot-store.sakura.ad.jp/items/6091056)
* [SCO-ARD-01 (Arduino Shield for SCM)](https://sakura.io/product/arduino.html)

# Install

Expand All @@ -30,7 +30,7 @@ with

## Manual Install

* Download ZIP from [here](https://github.com/sakura-internet/SakuraIOArduino/archive/master.zip).
* Download ZIP from [here](https://github.com/sakuraio/SakuraIOArduino/archive/master.zip).
* Place the ZIP file in Arduino `libraries` directory.
* Mac `~/Documents/Arduino/libraries`
* Linux The `libraries` folder in your sketchbook
Expand All @@ -39,7 +39,7 @@ with

# Reference

Please see the [datasheet](https://iot.sakura.ad.jp/developer/pdf/sakura_module_datasheet_latest.pdf).
Please see the [datasheet](https://sakura.io/developer/pdf/sakura_module_datasheet_latest.pdf).


## Example
Expand Down Expand Up @@ -108,6 +108,21 @@ uint8_t enqueueTx(uint8_t ch, uint64_t value);
uint8_t enqueueTx(uint8_t ch, float value);
uint8_t enqueueTx(uint8_t ch, double value);
uint8_t enqueueTx(uint8_t ch, uint8_t value[8]);
uint8_t sendImmediatelyRaw(uint8_t ch, uint8_t type, uint8_t length, uint8_t *data, uint64_t offset);
uint8_t sendImmediately(uint8_t ch, int32_t value, uint64_t offset);
uint8_t sendImmediately(uint8_t ch, uint32_t value, uint64_t offset);
uint8_t sendImmediately(uint8_t ch, int64_t value, uint64_t offset);
uint8_t sendImmediately(uint8_t ch, uint64_t value, uint64_t offset);
uint8_t sendImmediately(uint8_t ch, float value, uint64_t offset);
uint8_t sendImmediately(uint8_t ch, double value, uint64_t offset);
uint8_t sendImmediately(uint8_t ch, uint8_t value[8], uint64_t offset);
uint8_t sendImmediately(uint8_t ch, int32_t value);
uint8_t sendImmediately(uint8_t ch, uint32_t value);
uint8_t sendImmediately(uint8_t ch, int64_t value);
uint8_t sendImmediately(uint8_t ch, uint64_t value);
uint8_t sendImmediately(uint8_t ch, float value);
uint8_t sendImmediately(uint8_t ch, double value);
uint8_t sendImmediately(uint8_t ch, uint8_t value[8]);
uint8_t getTxQueueLength(uint8_t *available, uint8_t *queued);
uint8_t clearTx();
uint8_t getTxStatus(uint8_t *queue, uint8_t *immediate);
Expand Down Expand Up @@ -153,6 +168,7 @@ Please see example code.


# License

The MIT License (MIT)

Copyright (c) SAKURA Internet Inc.
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=SakuraIO
version=1.1.1
version=1.1.2
author=SAKURA Internet Inc. <support@sakura.ad.jp>
maintainer=chibiegg <y-egusa@sakura.ad.jp>
sentence=Library for Sakura Communication Module (https://sakura.io/)
Expand Down

0 comments on commit 941b17f

Please sign in to comment.