blob: 9b522945c1a172ed74e78c5df858ac75d3e9a4c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Information
This service use logitel G29 to get wheel info for application same as low-level-can-service.
It will read information from usb g29 as /dev/input/js0.
And give steering wheel information for application.
* Hardware: Renesas m3ulcb
* Software: HH 8.0.0
* binding name: af-steering-wheel-binding
* provide api: steering-wheel
* verbs: list, subscribe, unsubscribe
* support device: Logitech G29 steering wheel
* steering wheel information is write in steering_wheel_map.json
* VehicleSpeed < Engine Speed * Gear parameter / 100 >
* EngineSpeed < 0~10000 >
* AcceleratorPedalPosition < 0~100 >
* TransmissionGearInfo < 0、1、2、3、4、5、6 >
* TransmissionMode < 0、1、2、3、4、5、6 >
* SteeringWheelAngle < 0~360 >
* TurnSignalStatus < 0:None / 1:RightTurn / 2:LeftTurn >
* LightStatusBrake < 0:None / 1:BrakeEnable >
* verbs
* list
* subscribe { "event" : "EngineSpeed" }
* unsubscribe { "event" : "EngineSpeed" }
# How to compile and install
These is a sample recipes for af-steering-wheel-binding, you can just add that recipes into your project and bitbake.
Sample Recipes: agl-service-steering-wheel_0.1.bb
# How to use
## For AGL Application
1 add these code below into config.xml
```
<param name="steering-wheel" value="ws"/>
```
2 add WebSocket into qml file and subscribe event name what you need.
You can find a file named [token-websock.qml] in app-framework-binder.git.
It's a template for qml. You need modify these informations to connect agl-service-steering.
```
property string address_str: "ws://localhost:5555/api?token=3210"
property string api_str: "steering-wheel"
property string verb_str: ""
```
## For demo application
1 you can run this service by shell script
```
afb-daemon --token=3210 --ldpaths=${steering-wheel-library-path} --port=5555 --rootdir=. &
```
2 use afb-client-demo to get event.
```
afb-client-demo ws://localhost:5555/api?token=3210
steering-wheel list
steering-wheel subscribe { "event" : "EngineSpeed" }
steering-wheel unsubscribe { "event" : "EngineSpeed" }
```
|