コード例 #1
0
 internal void RaisePowerNotification(CoreDevice device, PowerState state)
 {
     if (OnPowerStateNotification != null)
     {
         OnPowerStateNotification(this, state);
     }
 }
コード例 #2
0
ファイル: CoreDevice.cs プロジェクト: xesf/sphero-sdk
 internal void RaisePowerNotification(CoreDevice device, PowerState state)
 {
     if (OnPowerStateNotification != null)
     {
         OnPowerStateNotification(this, state);
     }
 }
コード例 #3
0
ファイル: SpheroConnection.cs プロジェクト: xesf/sphero-sdk
 internal void SetCore(CoreDevice core)
 {
     this._core = core;
 }