Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
This library supports following products.

* SCM-LTE-Beta (Sakura Communication Module (LTE) β)
* [SCM-LTE-01 (Sakura Communication Module (LTE))](https://sakura.io/product/module_lte.html)
* [SCM-LTE-01 & Rev.B (Sakura Communication Module (LTE))](https://sakura.io/product/module_lte.html)
* SCM-920-Alpha (Sakura Communication Module (LoRa) α)

with
Expand Down
7 changes: 5 additions & 2 deletions examples/FirmwareUpdate/FirmwareUpdate.ino
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@ uint8_t updateFirmware(){
case 0x0002:
Serial.println("SCM-LTE-01");
break;
case 0x0003:
Serial.println("SCM-LTE-01 Rev.B");
break;
default:
Serial.println("Please check connection");
return 1;
Serial.println("Unknown Product ID");
break;
}

delay(1000);
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version=1.1.5
author=SAKURA Internet Inc. <support@sakura.ad.jp>
maintainer=chibiegg <y-egusa@sakura.ad.jp>
sentence=Library for Sakura Communication Module (https://sakura.io/)
paragraph=Provides functions for "sakura.io" (IoT platform of SAKURA Internet Inc.) (https://sakura.io/) with Sakura Communication Module. This library supports SCM-LTE-Beta and SCM-LTE-01.
paragraph=Provides functions for "sakura.io" (IoT platform of SAKURA Internet Inc.) (https://sakura.io/) with Sakura Communication Module. This library supports SCM-LTE-Beta and SCM-LTE-01 and SCM-LTE-01 Rev.B.
category=Communication
url=https://github.com/sakuraio/SakuraIOArduino
architectures=*
Expand Down