Garmin-AutomationConnectIQ AutomationConnectIQ-サンプル5 # 通知数の設定$sim.SetNotificationCount(4)# アラーム数の設定$sim.SetAlarmCount(3)# バッテリー情報の設定$sim.SetBatteryStatus(20, $false)# 各種ゴールの... 2020.12.29 Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQ AutomationConnectIQ-サンプル6 # Diagnostics系の結果をもらう$sim.ToggleMenu(::LowPowerMode, $true)Start-sleep -Milliseconds 500 # 画面更新のための時間稼ぎ$val = $sim.GetTi... 2020.12.30 Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQ AutomationConnectIQ-サンプル7 $time = $sim.CreateTime()$time.Open()$time.Time = Get-Date "2020-1-1 13:00:00"$time.Factor = 3$time.Action(::Start)Start... 2020.12.30 Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQ AutomationConnectIQ-サンプル8 Automation Connect IQ SDKビルド、シミュレーター起動を行うコンビニエンスクラスCheckerの紹介。まずは、1デバイスのビルド、シミュレーター起動を行うメソッドについて。using namespace Automat... 2020.12.31 Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQ AutomationConnectIQ-サンプル9 Automation Connect IQ SDKビルド、シミュレーター起動を行うコンビニエンスクラスCheckerの紹介。こちらはプロジェクトに登録されている全デバイスに対して処理をする関数。using namespace Automat... 2020.12.31 Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQ AutomationConnectIQ-サンプル10 Automation Connect IQ SDKPowerShellでクラスを作成し、今まで紹介したクラスを有効に活用できるものを紹介。SimulatorActionクラス各個人で修正する箇所は、ActionとPreの関数。Simulat... 2021.01.01 Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQ AutomationConnectIQ-サンプル11 Automation Connect IQ SDKVer0.3で追加したものに関しての説明。using namespace AutomationConnectIQ.Lib;$sdk = New-Object GarminSDK -Prope... 2021.01.08 Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQ AutomationConnectIQ-サンプル13 Automation Connect IQ SDKVer0.3で追加したものに関しての説明。Activity Monitorのテーブルを編集する機能using namespace AutomationConnectIQ.Lib;$sdk =... 2021.01.09 Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQ AutomationConnectIQのCheckクラス動作のサンプル動画 AutomationConnectIQを使うとどんなことができるのかのサンプル動画。この動画ではFr45のみチェックしている。前半、ウォッチフェイスが出るまでは初期設定を行っている。ウォッチフェイスが出てからはテスト項目に対して状態を設定し... 2021.01.17 Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQ Check用のPowershellクラス AutomationConnectIQのCheckクラス動作のサンプル動画での実装のベースとなるクラス。クラスの実装がちょっと長いんで、まずクラスを定義しているモジュールファイル(psm1)の保存先について、次にベースクラスを使ったスクリプ... 2021.01.18 Garmin-AutomationConnectIQ