Options
All
  • Public
  • Public/Protected
  • All
Menu
notexported

See type declaration

Grabber

Hierarchy

Index

Properties

openClose?: number

Open Close motor

description

Grabber claw motor power

  • < 0: Close grabber claw
  • == 0: Motor off
  • > 0: Open grabber claw

Example Payload

at Close Grabber

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/revolutionGrabberCloseClawSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"B2F384453BFB": {
"model": 13,
"grabber": {
"openClose": -100
}
}
}
}
}
~ ##### at Open Grabber

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/revolutionGrabberOpenClawSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"D25D1501AF3B": {
"model": 13,
"grabber": {
"openClose": 100
}
}
}
}
}
  • Open pivot grabber claw

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/pivotOpenClawGrabberSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"86AD3A29E29D": {
"model": 18,
"grabber": {
"openClose": 100
}
}
}
}
}
  • Close pivot grabber claw

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/pivotCloseClawGrabberSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"F5CD2A96B67B": {
"model": 18,
"grabber": {
"openClose": -100
}
}
}
}
}
  • OpenClose pivot grabber random

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/pivotOpenCloseGrabberRandomSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"A542FC968193": {
"model": 18,
"grabber": {
"openClose": -22
}
}
}
}
}
minimum

-100

maximum

100

openCloseMotorDiagnostics?: MotorDiagnostics

openCloseMotorDiagnostics

description

Grabber open close motor diagnostics

Example Payload

at all random values

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberOpenCloseMotorDiagnosticsRandomSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"C6CD55382A1F": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {
"current": 49,
"overcurrent": false,
"pwm": 45,
"rpm": -18,
"failure": false
},
"rotateMotorDiagnostics": {}
}
}
}
}
}
at random current

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberOpenCloseMotorDiagnosticsRandomCurrentSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"7DE7DEBF1AC5": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {
"current": 77
},
"rotateMotorDiagnostics": {}
}
}
}
}
}
at random PWM

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberOpenCloseMotorDiagnosticsRandomPwmSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"2CBF47219844": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {
"pwm": 27
},
"rotateMotorDiagnostics": {}
}
}
}
}
}
at has overcurrent

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberOpenCloseMotorDiagnosticsHasOvercurrentSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"49A03AA448FC": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {
"overcurrent": true
},
"rotateMotorDiagnostics": {}
}
}
}
}
}
at has no overcurrent

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberOpenCloseMotorDiagnosticsHasNoOvercurrentSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"30EE5690E22E": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {
"overcurrent": false
},
"rotateMotorDiagnostics": {}
}
}
}
}
}
at static RPM

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberOpenCloseMotorDiagnosticsStaticRpmSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"3260563227E5": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {
"rpm": 0
},
"rotateMotorDiagnostics": {}
}
}
}
}
}
at forward RPM

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberOpenCloseMotorDiagnosticsForwardRpmSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"1D20AB543145": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {
"rpm": 10
},
"rotateMotorDiagnostics": {}
}
}
}
}
}
at backward RPM

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberOpenCloseMotorDiagnosticsBackwardRpmSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"F060EFF196FA": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {
"rpm": -10
},
"rotateMotorDiagnostics": {}
}
}
}
}
}
  • Resting pivot openClose grabber diagnostic

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/motorDiagnostics/openClose/pivotGrabberOpenCloseMotorDiagnosticRestingSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"22F1CE739A7C": {
"model": 18,
"grabber": {
"openCloseMotorDiagnostics": {
"current": 4,
"overcurrent": false,
"pwm": 3,
"rpm": 0,
"failure": false
}
}
}
}
}
}
  • Random pivot openClose grabber diagnostic

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/motorDiagnostics/openClose/pivotGrabberOpenCloseMotorDiagnosticsRandomSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"AD68D846AAB3": {
"model": 18,
"grabber": {
"openCloseMotorDiagnostics": {
"current": 39,
"overcurrent": true,
"pwm": 78,
"rpm": -79,
"failure": false
}
}
}
}
}
}
  • Open pivot grabber claw diagnostic

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/motorDiagnostics/openClose/pivotOpenClawGrabberDiagnosticSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"571F7888BDE1": {
"model": 18,
"grabber": {
"openCloseMotorDiagnostics": {
"current": 54,
"overcurrent": false,
"pwm": 48,
"rpm": 6
}
}
}
}
}
}
  • Close pivot grabber claw diagnostic

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/motorDiagnostics/openClose/pivotCloseClawGrabberDiagnosticSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"4BB66F65E282": {
"model": 18,
"grabber": {
"openCloseMotorDiagnostics": {
"current": 52,
"overcurrent": false,
"pwm": 55,
"rpm": 10
}
}
}
}
}
}
rotate?: number

Rotation motor

description

Grabber rotation motor power

  • < 0 = rotate left
  • == 0 = motor off
  • > 0 = rotate right

Example Payload

  • Rotate right revolution Grabber

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/revolutionGrabberRotateLeftSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"1E6ED3A92052": {
"model": 13,
"grabber": {
"rotate": -100
}
}
}
}
}
  • Rotate right revolution Grabber

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/revolutionGrabberRotateRightSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"93F84F3DD408": {
"model": 13,
"grabber": {
"rotate": 100
}
}
}
}
}
  • Rotate revolution grabber random

    From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/revolutionGrabberRandomSample.json

    {
    "$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
    "apiVersion": "0.58.7",
    "method": "UPDATE",
    "payload": {
    "devices": {
    "DFE0A2EF3393": {
    "model": 13,
    "grabber": {
    "rotate": 30,
    "openClose": -57
    }
    }
    }
    }
    }
  • Rotate right pivot grabber

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/pivotRotateGrabberRightSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"7AE399D4C313": {
"model": 18,
"grabber": {
"rotate": 100
}
}
}
}
}
  • Rotate left pivot grabber

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/pivotRotateGrabberLeftSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"C323FCB9EF6B": {
"model": 18,
"grabber": {
"rotate": -100
}
}
}
}
}
  • Rotate pivot grabber random

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/pivotRotateGrabberRandomSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"50DDEEF0908D": {
"model": 18,
"grabber": {
"rotate": 43
}
}
}
}
}
minimum

-100

maximum

100

rotateMotorDiagnostics?: MotorDiagnostics

rotateMotorDiagnostics

description

Grabber rotate motor diagnostics

Example Payload

at all random values

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberRotateMotorDiagnosticsRandomSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"1C7706B71D46": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {},
"rotateMotorDiagnostics": {
"current": 84,
"overcurrent": false,
"pwm": 75,
"rpm": -84,
"failure": false
}
}
}
}
}
}
at random current

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberRotateMotorDiagnosticsRandomCurrentSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"6480516A8FBC": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {},
"rotateMotorDiagnostics": {
"current": 23
}
}
}
}
}
}
at random PWM

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberRotateMotorDiagnosticsRandomPwmSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"CC3D972B9F28": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {},
"rotateMotorDiagnostics": {
"pwm": 79
}
}
}
}
}
}
at has overcurrent

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberRotateMotorDiagnosticsHasOvercurrentSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"35B527C7A20B": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {},
"rotateMotorDiagnostics": {
"overcurrent": true
}
}
}
}
}
}
at has no overcurrent

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberRotateMotorDiagnosticsHasNoOvercurrentSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"115EB082DD9C": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {},
"rotateMotorDiagnostics": {
"overcurrent": false
}
}
}
}
}
}
at static RPM

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberRotateMotorDiagnosticsStaticRpmSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"464F736208C7": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {},
"rotateMotorDiagnostics": {
"rpm": 0
}
}
}
}
}
}
at forward RPM

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberRotateMotorDiagnosticsForwardRpmSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"59B906DC2282": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {},
"rotateMotorDiagnostics": {
"rpm": 10
}
}
}
}
}
}
at backward RPM

From ./dist/samples/json/requests/devices/vehicles/revolution/grabber/motorDiagnostics/revolutionGrabberRotateMotorDiagnosticsBackwardRpmSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"0667BAF6C072": {
"model": 13,
"grabber": {
"openCloseMotorDiagnostics": {},
"rotateMotorDiagnostics": {
"rpm": -10
}
}
}
}
}
}
  • Resting pivot rotate grabber diagnostic

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/motorDiagnostics/rotate/pivotGrabberRotateMotorDiagnosticsRestingSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"1CD9C672A9ED": {
"model": 18,
"grabber": {
"rotateMotorDiagnostics": {
"current": 9,
"overcurrent": false,
"pwm": 1,
"rpm": 0,
"failure": false
}
}
}
}
}
}
  • Random pivot rotate grabber diagnostic

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/motorDiagnostics/rotate/pivotGrabberRotateMotorDiagnosticsRandomSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"C2D753B7B860": {
"model": 18,
"grabber": {
"rotateMotorDiagnostics": {
"current": 63,
"overcurrent": false,
"pwm": 58,
"rpm": -54,
"failure": false
}
}
}
}
}
}
  • Rotate right pivot grabber claw diagnostic

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/motorDiagnostics/rotate/pivotRotateGrabberRightDiagnosticSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"40A0CE6BE44D": {
"model": 18,
"grabber": {
"rotateMotorDiagnostics": {
"current": 49,
"overcurrent": false,
"pwm": 47,
"rpm": 8
}
}
}
}
}
}
  • Rotate left pivot grabber claw diagnostic

From ./dist/samples/json/requests/devices/vehicles/pivot/peripherals/grabber/motorDiagnostics/rotate/pivotRotateGrabberLeftDiagnosticSample.json

{
"$schema": "https://docs.api.deeptrekker.com/dist/schemas/schema.json",
"apiVersion": "0.58.7",
"method": "UPDATE",
"payload": {
"devices": {
"38EB5669941E": {
"model": 18,
"grabber": {
"rotateMotorDiagnostics": {
"current": 49,
"overcurrent": false,
"pwm": 51,
"rpm": 8
}
}
}
}
}
}