Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

ImuGyroscope

Ali Mir edited this page Apr 24, 2018 · 2 revisions

Imu Gyroscope

URL : /equisat/data/imu/imuGyroscope

Method : GET

Retrieves all imuGyroscope objects

Success Response

Code : 200 OK

Content example

[{
  "id": 1,
  "x": 2,
  "y": 6,
  "z": 4,
  "tid": 1,
  "timestamp": 1
},{
  "id": 2,
  "x": "4",
  "y": 19,
  "z": 40,
  "tid": 2,
  "timestamp": 2
},{
  "id": 3,
  "x": "5",
  "y": 11,
  "z": 4,
  "tid": 3,
  "timestamp": 3
},{
  "id": 4,
  "x": "7",
  "y": 2,
  "z": 5,
  "tid": 4,
  "timestamp": 4
}]

URL : /equisat/data/imu/imuGyroscope/5

Method : GET

Retrieve imuGyroscope with id 5

Success Response

Code : 200 OK

Content example

{
  "id": 5,
  "x": "7",
  "y": 10,
  "z": 11,
  "tid": 4,
  "timestamp": 5
}