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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
"""
Copyright 2023 Suchinton Chakravarty
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import os
import sys
from PyQt5 import uic
from PyQt5.QtWidgets import QApplication, QButtonGroup
from PyQt5.QtCore import QThread
import time
current_dir = os.path.dirname(os.path.abspath(__file__))
# ========================================
sys.path.append(os.path.dirname(current_dir))
from extras.FeedKuksa import FeedKuksa
import extras.FeedCAN as feed_can
from . import settings
Form, Base = uic.loadUiType(os.path.join(current_dir, "../ui/SteeringControls.ui"))
# ========================================
class Steering_Paths():
def __init__(self):
self.switches = {
"VolumeUp": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.VolumeUp",
"CAN": "021#FFFFFFFF40000000"},
"VolumeDown": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.VolumeDown",
"CAN": "021#FFFFFFFF10000000"},
"VolumeMute": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.VolumeMute",
"CAN": "021#FFFFFFFF01000000"},
"Mode": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.Mode",
"CAN": "021#FFFFFFFF20000000"},
"NextTrack": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.Next",
"CAN": "021#FFFFFFFF08000000"},
"PreviousTrack": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.Previous",
"CAN": "021#FFFFFFFF80000000"},
"Info": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.Info",
"CAN": "021#FFFFFFFF02000000"},
"PhoneCall": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.PhoneCall",
"CAN": "021#FFFFFFFF00010000"},
"PhoneHangup": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.PhoneHangup",
"CAN": "021#FFFFFFFF00020000"},
"Voice": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.Voice",
"CAN": "021#FFFFFFFF00040000"},
"LaneDeparture": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.LaneDepartureWarning",
"CAN": "021#FFFFFFFF00000001"},
"Horn": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.Horn",
"CAN": "021#FFFFFFFF00000080"},
"CruiseEnable": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.CruiseEnable",
"CAN": "021#FFFFFFFF00008000"},
"CruiseSet": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.CruiseSet",
"CAN": "021#FFFFFFFF00001000"},
"CruiseResume": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.CruiseResume",
"CAN": "021#FFFFFFFF00004000"},
"CruiseCancel": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.CruiseCancel",
"CAN": "021#FFFFFFFF00000800"},
"CruiseLimit": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.CruiseLimit",
"CAN": "021#FFFFFFFF00000200"},
"CruiseDistance": {
"Kuksa": "Vehicle.Cabin.SteeringWheel.Switches.CruiseDistance",
"CAN": "021#FFFFFFFF00000100"}
}
class SteeringCtrlWidget(Base, Form):
def __init__(self, parent=None):
super(self.__class__, self).__init__(parent)
self.setupUi(self)
self.Steering = Steering_Paths()
self.feed_kuksa = FeedKuksa()
self.settings = settings
self.add_buttons()
def add_buttons(self):
# Define button groups and actions
ControlsBtns = [self.VolumeUp,
self.VolumeDown,
self.Mode,
self.VolumeMute,
self.NextTrack,
self.PreviousTrack,
self.Info,
self.PhoneCall,
self.PhoneHangup,
self.Voice,
self.LaneDeparture,
self.CruiseEnable,
self.CruiseSet,
self.CruiseResume,
self.CruiseCancel,
self.CruiseLimit,
self.CruiseDistance]
self.ControlsBtnsGroup = QButtonGroup()
for btn in ControlsBtns:
self.ControlsBtnsGroup.addButton(btn)
self.ControlsBtnsGroup.buttonClicked.connect(self.controls_clicked)
def controls_clicked(self, button):
button_clicked = button.objectName()
signal_type = settings.Steering_Signal_Type
if signal_type == "Kuksa":
self.feed_kuksa.send_values(self.Steering.switches[button_clicked]["Kuksa"], 1)
self.feed_kuksa.send_values(self.Steering.switches[button_clicked]["Kuksa"], 0)
elif signal_type == "CAN":
feed_can.send_can_signal(self.Steering.switches[button_clicked]["CAN"])
# Making sure button state goes back to off
feed_can.send_can_signal("021#FFFFFFFF00000000")
print(button_clicked + " button clicked")
if __name__ == '__main__':
import sys
app = QApplication(sys.argv)
w = SteeringCtrlWidget()
w.show()
sys.exit(app.exec_())
|