プログラムC# XMLヘルプドキュメントの解析と利用 Visual Studio 2019 Tips-NuGetパッケージ化での多言語対応方法 上記でC#のヘルプの多言語化についてまとめたが、ここで作成された情報をもとに、ヘルプドキュメントを生成できないか考えてみた。 前回の方法でVisual...2020.12.23プログラム
Garmin-AutomationConnectIQAutomationConnectIQ-サンプル1 AutomationConnectIQのGarminSDKとJungleクラスを使い、ビルド処理をPowerShellで実行するためのサンプルスクリプト。2020.12.26Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQAutomationConnectIQ-サンプル2 AutomationConnectIQのシミュレーターの起動までをPowerShellで実行するためのサンプルスクリプト。2020.12.26Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQAutomationConnectIQ-サンプル3 AutomationConnectIQのシミュレーターでGPS関連の設定と画面キャプチャを行うサンプルスクリプト。2020.12.27Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQAutomationConnectIQ-サンプル5 # 通知数の設定 $sim.SetNotificationCount(4) # アラーム数の設定 $sim.SetAlarmCount(3) # バッテリー情報の設定 $sim.SetBatteryStatus(20, $false) # ...2020.12.29Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQAutomationConnectIQ-サンプル6 # Diagnostics系の結果をもらう $sim.ToggleMenu(::LowPowerMode, $true) Start-sleep -Milliseconds 500 # 画面更新のための時間稼ぎ $val = $sim.Ge...2020.12.30Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQAutomationConnectIQ-サンプル7 $time = $sim.CreateTime() $time.Open() $time.Time = Get-Date "2020-1-1 13:00:00" $time.Factor = 3 $time.Action(::Start) ...2020.12.30Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQAutomationConnectIQ-サンプル8 Automation Connect IQ SDK ビルド、シミュレーター起動を行うコンビニエンスクラスCheckerの紹介。 まずは、1デバイスのビルド、シミュレーター起動を行うメソッドについて。 using namespace Auto...2020.12.31Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQAutomationConnectIQ-サンプル9 Automation Connect IQ SDK ビルド、シミュレーター起動を行うコンビニエンスクラスCheckerの紹介。 こちらはプロジェクトに登録されている全デバイスに対して処理をする関数。 using namespace Auto...2020.12.31Garmin-AutomationConnectIQ
Garmin-AutomationConnectIQAutomationConnectIQ-サンプル10 Automation Connect IQ SDK PowerShellでクラスを作成し、今まで紹介したクラスを有効に活用できるものを紹介。 SimulatorActionクラス 各個人で修正する箇所は、ActionとPreの関数。 Sim...2021.01.01Garmin-AutomationConnectIQ