Wio LTE JP Version

Seeed社製 Wio LTE JP Versionを利用したアプレットの機能確認手順例です。 機器の詳細は、 Wio LTE JP Version をご確認ください。

設定手順

  1. SIMカード・LTEアンテナ・USBケーブルをPCに接続します
    • 初回セットアップのためUSBケーブルとPCを接続します。
    ../_images/1687670114.png
  2. デバイスをDFU(Device Firmware Update)モードに変更します
    • Bootボタンを押しながらRSTボタン(ボタンは各々別面にあります)を押します。
    ../_images/1687673903.png
    • Windowsのデバイスマネージャーを開き、ユニバーサルシリアルバスデバイス > STM32 BOOTLOADER と表示されれば成功です。
  3. Arduino IDEをインストールします
  4. New Sketch を起動します
    • Seeed Wio LTE Cat.1 と表示されていることを確認します。
    ../_images/1687674342.png
  5. 以下のコードをコピー&ペーストします
    • APNの値は契約内容により異なるため ここ から正しい値を確認してください。
    #include <WioLTEforArduino.h>
    #include <stdio.h>
    
    #define APN               "mobiledata.ntt.com" # 契約内容に合わせた値にしてください
    #define USERNAME          ""
    #define PASSWORD          ""
    
    WioLTE Wio;
    
    void setup() {
      delay(200);
    
      SerialUSB.println("### I/O Initialize.");
      Wio.Init();
    
      SerialUSB.println("### Power supply ON.");
      Wio.PowerSupplyLTE(true);
      delay(500);
    
      SerialUSB.println("### Turn on or reset.");
      if (!Wio.TurnOnOrReset()) {
        SerialUSB.println("### ERROR! ###");
        return;
      }
    
      SerialUSB.println("### Connecting to \""APN"\".");
      if (!Wio.Activate(APN, USERNAME, PASSWORD)) {
        SerialUSB.println("### ERROR! ###");
        return;
      }
    
      SerialUSB.println("### Setup completed.");
    }
    
    void loop() {
    }
    
  6. 書き込みボタン(「→」のマーク)をクリックして設定情報を書き込みます

  7. PWRボタンを押して通常モードとして再起動します

  8. LTE通信が成功するとLED(2箇所)が常灯します
    ../_images/1687674986.png
  9. アプレットコンソールから各種状態確認できます
    ../_images/1684466447.png

Terminal Profile

カテゴリー パラメーター
Terminal Profile Byte 1 (Download) Profile Download Supported
  SMS-PP Data Download Supported
  CB Data Download Supported
  Menu Selection Supported
  SMS-PP data download is supported Yes
  Timer expiration Supported
  Call Control by USIM is supported Yes
  Call Control by USIM is supported Yes
Terminal Profile Byte 2 (Other) Command result Supported
  Call Control by USIM Supported
  Call Control by USIM is supported Yes
  MO SMS control by SIM Supported
  Call Control by USIM is supported Yes
  UCS2 Entry Not supported
  UCS2 Display Not supported
  Display of Extension Text Not supported
Terminal Profile Byte 3 (Proactive SIM) Proactive SIM: DISPLAY TEXT Supported
  Proactive SIM: GET INKEY Supported
  Proactive SIM: GET INPUT Supported
  Proactive SIM: MORE TIME Supported
  Proactive SIM: PLAY TONE Supported
  Proactive SIM: POLL INTERVAL Supported
  Proactive SIM: POLLING OFF Supported
  Proactive SIM: REFRESH Supported
[truncated]Terminal Profile Byte 4 (Proactive SIM) Proactive SIM: SELECT ITEM Supported
  Proactive SIM: SEND SHORT MESSAGE Supported
  Proactive SIM: SEND SS Supported
  Proactive SIM: SEND USSD Supported
  Proactive SIM: SET UP CALL Supported
  Proactive SIM: SET UP MENU Supported
  Proactive SIM: PROVIDE LOCAL INFORMATION Supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (NMR) Supported
Terminal Profile Byte 5 (Event driven information) Proactive SIM: SET UP EVENT LIST Supported
  Event: MT call Supported
  Event: Call connected Supported
  Event: Call disconnected Supported
  Event: Location status Supported
  Event: User activity Not supported
  Event: Idle screen available Not supported
  Event: Card reader status Not supported
Terminal Profile Byte 6 (Event driven information extension) Event: Language Selection Not supported
  Event: Browser Termination Not supported
  Event: Data Available Supported
  Event: Channel Status Supported
  Event: Access Technology Change Supported
  Event: Display parameters changed Not supported
  Event: Local Connection Not supported
  Event: Network Search Mode Change Supported
Terminal Profile Byte 7 (Multiple card proactive commands) Proactive SIM: POWER ON CARD Not supported
  Proactive SIM: POWER OFF CARD Not supported
  Proactive SIM: PERFORM CARD APDU Not supported
  Proactive SIM: GET READER STATUS (status) Not supported
  Proactive SIM: GET READER STATUS (identifier) Not supported
[truncated]Terminal Profile Byte 8 (Proactive SIM) Proactive SIM: TIMER MANAGEMENT (start, stop) Supported
  Proactive SIM: TIMER MANAGEMENT (get current value) Supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (date, time, tz) Supported
  Proactive SIM: GET INKEY Not supported
  Proactive SIM: SET UP IDLE MODE TEXT Supported
  Proactive SIM: RUN AT COMMAND Not supported
  Proactive SIM: SETUP CALL Supported
  Proactive SIM: Call Control by USIM is supported Yes
Terminal Profile Byte 9 DISPLAY TEXT Not supported
  SEND DTMF command Supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (NMR) Supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (language) Not supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (Timing Advance) Supported
  Proactive SIM: LANGUAGE NOTIFICATION Not supported
  Proactive SIM: LAUNCH BROWSER Not supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (Access Technology) Supported
Terminal Profile Byte 10 (Soft keys support) Soft keys support for SELECT ITEM Not supported
  Soft Keys support for SET UP MENU Not supported
Terminal Profile Byte 11 (Soft keys information) Maximum number of soft keys available 0
Terminal Profile Byte 12 (Bearer Independent protocol proactive commands, class "e") Proactive SIM: OPEN CHANNEL Supported
  Proactive SIM: CLOSE CHANNEL Supported
  Proactive SIM: RECEIVE DATA Supported
  Proactive SIM: SEND DATA Supported
  Proactive SIM: GET CHANNEL STATUS Supported
  Proactive SIM: SERVICE SEARCH Not supported
  Proactive SIM: GET SERVICE INFORMATION Not supported
  Proactive SIM: DECLARE SERVICE Not supported
Terminal Profile Byte 13 (Bearer Independent protocol supported bearers, class "e") CSD bearer Not supported
  GPRS bearer Supported
  Bluetooth bearer Not supported
  IrDA bearer Not supported
  RS232 bearer Not supported
  Number of Channels 7
Terminal Profile Byte 14 (Screen height) Display height (chars) 0
  No display capability Not supported
  No keypad available Not supported
  Screen sizing parameters Not supported
Terminal Profile Byte 15 (Screen width) Display width (chars) 0
  Variable size fonts Not supported
Terminal Profile Byte 16 (Screen effects) Display resize Not supported
  Text Wrapping Not supported
  Text Scrolling Not supported
  Text Attributes Not supported
  Width reduction when in menu 0
Terminal Profile Byte 17 (Bearer independent protocol supported transport interface/bearers, class "e") TCP client mode remote connection Supported
  UDP client mode remote connection Supported
  TCP server mode Not supported
  TCP client mode local connection Not supported
  UDP client mode local connection Not supported
  Direct communication channel Not supported
  E-UTRAN bearer Supported
  HSDPA bearer Supported
[truncated]Terminal Profile Byte 18 (Bearer independent protocol) Proactive SIM: DISPLAY TEXT (Variable Time out) Not supported
  Proactive SIM: GET INKEY (help is supported) Not supported
  USB bearer Not supported
  Proactive SIM: GET INKEY (Variable Timeout) Not supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (ESN) Supported
  CALL CONTROL on GPRS Supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (IMEISV) Supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (Search Mode change) Supported
Terminal Profile Byte 19 (TIA/EIA-136-C facilities) TIA/EIA Version 0
Terminal Profile Byte 20 (TIA/EIA/IS-820-A facilities) - -
Terminal Profile Byte 21 (Extended Launch Browser Capability) WML Not supported
  XHTML Not supported
  HTML Not supported
  CHTML Not supported
Terminal Profile Byte 22 UTRAN PS with extended parameters Supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (battery state) Not supported
  Proactive SIM: PLAY TONE (Melody tones and Themed tones supported) Not supported
  Multi-media Calls in SET UP CALL Not supported
  Toolkit-initiated GBA Supported
  Proactive SIM: RETRIEVE MULTIMEDIA MESSAGE Not supported
  Proactive SIM: SUBMIT MULTIMEDIA MESSAGE Not supported
  Proactive SIM: DISPLAY MULTIMEDIA MESSAGE Not supported
Terminal Profile Byte 23 Proactive SIM: SET FRAMES Not supported
  Proactive SIM: GET FRAMES STATUS Not supported
  MMS notification download Not supported
  Alpha Identifier in REFRESH command Not supported
  Geographical Location Reporting Not supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (MEID) Supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (NMR(UTRAN/E-UTRAN)) Supported
  USSD Data download and application mode Not supported
Terminal Profile Byte 24 (Class "i") Maximum number of frames supported 0
Terminal Profile Byte 25 (Event driven information extensions) Event: Browsing status Not supported
  Event: MMS Transfer status Not supported
  Event: Frame Information changed Not supported
  Event: I-WLAN Access status Not supported
  Event: Network Rejection for GERAN/UTRAN Supported
  Event: HCI connectivity Not supported
  Event: Network Rejection for E-UTRAN Supported
  Multiple access technologies supported in Event Access Technology Change and PROVIDE LOCAL INFORMATION Not supported
Terminal Profile Byte 26 (Event driven information extensions) Event: CSG Cell Selection Not supported
  Event: Contactless state request Not supported
Terminal Profile Byte 27 (Event driven information extensions) - -
Terminal Profile Byte 28 (Text attributes) Alignment left Not supported
  Alignment centre Not supported
  Alignment right Not supported
  Font size normal Not supported
  Font size large Not supported
  Font size small Not supported
Terminal Profile Byte 29 (Text attributes) Style normal Not supported
  Style bold Not supported
  Style italic Not supported
  Style underlined Not supported
  Style strikethrough Not supported
  Style text foreground colour Not supported
  Style text background colour Not supported
Terminal Profile Byte 30 I-WLAN bearer Not supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (WSID of the current I-WLAN connection) Not supported
  TERMINAL APPLICATIONS Not supported
  "Steering of Roaming" REFRESH Supported
  Proactive SIM: ACTIVATE Not supported
  Proactive SIM: Geographical Location Request Not supported
  Proactive SIM: PROVIDE LOCAL INFORMATION (Broadcast Network Information) Not supported
  "Steering of Roaming for I-WLAN" REFRESH Not supported