7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Wio LTE の消費電力 (何もしない場合、モデムがONになってるだけの場合)

Last updated at Posted at 2018-06-11

USB型パワーメーター(電圧計/電流計) CT-2 を買ったので、 Wio LTE の消費電力を計ってみました

なにもしない状態

全く何も行わないパターンです

  • 約 55mA (0.275W) で落ち着きます

noop.png

スケッチ
void setup() {
  // put your setup code here, to run once:

}

void loop() {
  // put your main code here, to run repeatedly:

}

LTE モデムを ON にして PDP Context を開いた状態

PDP Context を Active 状態 (= IP 通信が可能) にして、それ以降は何もしないというパターン

  • PDP Context を Active にしたあたりで瞬間的に 350mA (1.75W) まで行きます
  • その後、約 85mA (0.41W) を基準に周期的に瞬間 180mA (0.90W) ぐらいまで上がる形を取ります

modem-on.png

スケッチ
#include <WioLTEforArduino.h>
WioLTE Wio;

void setup() {
  Wio.Init();
  Wio.PowerSupplyLTE(true);
  delay(500);
  if (!Wio.TurnOnOrReset()) { SerialUSB.println("TurnOnOrReset Error"); return; } 
  if (!Wio.Activate("soracom.io", "sora", "sora")) { SerialUSB.println("Activate Error"); return; }
}

void loop() {
  // put your main code here, to run repeatedly:

}

あとがき

何もしなくとも 6700mAh なバッテリーで 121 時間 (5 日) という事がわかります。

次に打てる手は

EoT

7
2
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?