Lines Matching refs:deviceId

26 | deviceId |  string | Yes | Device ID in the callback that notifies a mission change.|
34 deviceId: '123456'
37 notifyMissionsChanged: (deviceId: string) => {
38 console.log(`notifyMissionsChanged deviceId: ${JSON.stringify(deviceId)}`);
40 notifySnapshot: (deviceId: string, mission: number) => {
41 console.log(`notifySnapshot deviceId: ${JSON.stringify(deviceId)}`);
44 notifyNetDisconnect: (deviceId: string, state: number) => {
45 console.log(`notifyNetDisconnect deviceId: ${JSON.stringify(deviceId)}`);
62 | deviceId | string | Yes | Device ID in the callback that notifies a snapshot change. |
71 deviceId: '123456'
74 notifyMissionsChanged: (deviceId: string) => {
75 console.log(`notifyMissionsChanged deviceId: ${JSON.stringify(deviceId)}`);
77 notifySnapshot: (deviceId: string, mission: number) => {
78 console.log(`notifySnapshot deviceId: ${JSON.stringify(deviceId)}`);
81 notifyNetDisconnect: (deviceId: string, state: number) => {
82 console.log(`notifyNetDisconnect deviceId: ${JSON.stringify(deviceId)}`);
99 | deviceId | string | Yes | Device ID in the callback that notifies disconnection. |
108 deviceId: '123456'
111 notifyMissionsChanged: (deviceId: string) => {
112 console.log(`notifyMissionsChanged deviceId: ${JSON.stringify(deviceId)}`);
114 notifySnapshot: (deviceId: string, mission: number) => {
115 console.log(`notifySnapshot deviceId: ${JSON.stringify(deviceId)}`);
118 notifyNetDisconnect: (deviceId: string, state: number) => {
119 console.log(`notifyNetDisconnect deviceId: ${JSON.stringify(deviceId)}`);