spaceshipyard / mars-rover-dispatcher

Apache License 2.0
1 stars 1 forks source link

Show values from motor encoder sensor #47

Closed chaos-adept closed 5 years ago

chaos-adept commented 5 years ago

it is required to display on the UI values from robot motor wheel rotation speed based sensor messages from the Arduino bridge protocol description might be found in the following issue: https://github.com/spaceshipyard/mars-rover-node-bridge/issues/24

chaos-adept commented 5 years ago

according to information from spaceshipyard/mars-rover-node-bridge#24

Redux message is going to be the following:

{
   type: 'message',
   params: {
     cmd: 'sensor.data',
     params: {
         type: 'motor-encoder-data',
         data: [ 
                {name: 'left', value: 123},
                {name: 'right', value: 321}
         ]
     }
   }
}
chaos-adept commented 5 years ago

integration on UI has been implemented but it looks scrappy: image

@vnabatov FYI

chaos-adept commented 5 years ago

since changes are merged into the master and deployed this issue can be resolved.