-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathodrivetool_UI.py
1350 lines (1136 loc) · 67 KB
/
odrivetool_UI.py
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import UI_mainwindow
import odrive
from odrive.enums import *
import json
import glob
import datetime
import os
import pyqtgraph as pg
from pyqtgraph.Qt import QtCore, QtGui, QtWidgets
from serialThread import odriveWorker
ICON_TRUE = "Icons/True.jpg"
ICON_FALSE = "Icons/False.jpg"
ICON_NOSTATE = "Icons/NoState.jpg"
class ExampleApp(QtWidgets.QMainWindow, UI_mainwindow.Ui_MainWindow):
app_name = "Odrive Tester"
def __init__(self):
# Simple reason why we use it here is that it allows us to
# access variables, methods etc in the design.py file
super(self.__class__, self).__init__()
self.setupUi(self) # This is defined in design.py file automatically
# It sets up layout and widgets that are defined
self.quit_shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("Ctrl+Q"), self)
self.quit_shortcut.activated.connect(self.close_application)
self.Scan_config_shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("Ctrl+F"), self)
self.Scan_config_shortcut.activated.connect(self.scan_all_config)
self.odrive_connect_shortcut = QtWidgets.QShortcut(QtGui.QKeySequence("Ctrl+C"), self)
self.odrive_connect_shortcut.activated.connect(self.odrive_connect)
self.actionScan_config.triggered.connect(self.scan_all_config)
self.actionTroubleshoot.triggered.connect(self.open_troubleshoot_url)
self.pushButton_saveConfiguration.clicked.connect(self.save_odrive_configuration)
self.pushButton_eraseConfiguration.clicked.connect(self.erase_odrive_configuration)
self.pushButton_scanConfiguration.clicked.connect(self.scan_all_config)
self.pushButton_writeConfiguration.clicked.connect(self.write_config)
self.pushButton_connect.clicked.connect(self.odrive_connect)
self.pushButton_reboot.clicked.connect(self.odrive_reboot)
# maybe add all buttons to the group and do only one connector for the whole group
self.axis0_pushButton_idle.clicked.connect(self.machine_state_clicked)
self.axis0_pushButton_startupSequence.clicked.connect(self.machine_state_clicked)
self.axis0_pushButton_fullCalibrationSequence.clicked.connect(self.machine_state_clicked)
self.axis0_pushButton_motorCalibration.clicked.connect(self.machine_state_clicked)
self.axis0_pushButton_sensorlessControl.clicked.connect(self.machine_state_clicked)
self.axis0_pushButton_encoderIndexSearch.clicked.connect(self.machine_state_clicked)
self.axis0_pushButton_encoderOffsetCalibration.clicked.connect(self.machine_state_clicked)
self.axis0_pushButton_closedLoopControl.clicked.connect(self.machine_state_clicked)
self.axis1_pushButton_idle.clicked.connect(self.machine_state_clicked)
self.axis1_pushButton_startupSequence.clicked.connect(self.machine_state_clicked)
self.axis1_pushButton_fullCalibrationSequence.clicked.connect(self.machine_state_clicked)
self.axis1_pushButton_motorCalibration.clicked.connect(self.machine_state_clicked)
self.axis1_pushButton_sensorlessControl.clicked.connect(self.machine_state_clicked)
self.axis1_pushButton_encoderIndexSearch.clicked.connect(self.machine_state_clicked)
self.axis1_pushButton_encoderOffsetCalibration.clicked.connect(self.machine_state_clicked)
self.axis1_pushButton_closedLoopControl.clicked.connect(self.machine_state_clicked)
# Axis Controlls
self.buttonGroup_13.buttonClicked.connect(self.axis_controller_mode_changed)
self.buttonGroup_14.buttonClicked.connect(self.axis_controller_mode_changed)
self.axis0PositionGo_pushButton.clicked.connect(self.send_axis0_position_go)
self.axis0Backward_pushButton.clicked.connect(self.send_axis0_velocity_current_backward)
self.axis0Stop_pushButton.clicked.connect(self.send_axis0_velocity_current_stop)
self.axis0Forward_pushButton.clicked.connect(self.send_axis0_velocity_current_forward)
self.axis1PositionGo_pushButton.clicked.connect(self.send_axis1_position_go)
self.axis1Backward_pushButton.clicked.connect(self.send_axis1_velocity_current_backward)
self.axis1Stop_pushButton.clicked.connect(self.send_axis1_velocity_current_stop)
self.axis1Forward_pushButton.clicked.connect(self.send_axis1_velocity_current_forward)
self.showAxis0_checkBox.stateChanged.connect(self.axis0_graph_state_changed)
self.showAxis1_checkBox.stateChanged.connect(self.axis1_graph_state_changed)
self.clearGraph_pushButton.clicked.connect(self.clearGraph_clicked)
self.plotWidget_velocity.setLabel('bottom', 'Time', 's')
self.plotWidget_velocity.setLabel('left', 'Velocity', 'rpm')
self.plotWidget_velocity.setTitle("Velocity")
self.plotWidget_position.setLabel('bottom', 'Time', 's')
self.plotWidget_position.setLabel('left', 'Position', 'counts')
self.plotWidget_position.setTitle("Position")
self.plotWidget_current.setLabel('bottom', 'Time', 's')
self.plotWidget_current.setLabel('left', 'Current', 'Iq')
self.plotWidget_current.setTitle("Current")
self.ad = {} #axis_dcit
pen_sp_axis0 = pg.mkPen(color=(0, 128, 255), width=1) # Blue: 0 128 255
pen_est_axis0 = pg.mkPen(color=(135, 0, 191), width=1) # Purple: 135 0 191
pen_sp_axis1 = pg.mkPen(color=(255, 78, 0), width=1) # Red: 255 78 0
pen_est_axis1 = pg.mkPen(color=(255, 212, 0), width=1) #Yellow 255 212 0
# Poop yellow)Orange: 155 170 0
# old orange (color=(255, 192, 0)
self.ad["axis0"] = {}
self.ad["axis0"]["time_array"] = []
self.ad["axis0"]["position"] = {}
self.ad["axis0"]["position"]["estimate"] = []
self.ad["axis0"]["position"]["set_point"] = []
self.ad["axis0"]["velocity"] = {}
self.ad["axis0"]["velocity"]["estimate"] = []
self.ad["axis0"]["velocity"]["set_point"] = []
self.ad["axis0"]["current"] = {}
self.ad["axis0"]["current"]["estimate"] = []
self.ad["axis0"]["current"]["set_point"] = []
self.ad["axis0"]["vel_sp_curve"] = self.plotWidget_velocity.plot(name="Setpoint", pen=pen_sp_axis0)
self.ad["axis0"]["vel_est_curve"] = self.plotWidget_velocity.plot(name="Estimate", pen=pen_est_axis0)
self.ad["axis0"]["pos_sp_curve"] = self.plotWidget_position.plot(name="Setpoint", pen=pen_sp_axis0)
self.ad["axis0"]["pos_est_curve"] = self.plotWidget_position.plot(name="Estimate", pen=pen_est_axis0)
self.ad["axis0"]["current_sp_curve"] = self.plotWidget_current.plot(name="Setpoint", pen=pen_sp_axis0)
self.ad["axis0"]["current_est_curve"] = self.plotWidget_current.plot(name="Estimate", pen=pen_est_axis0)
self.ad["axis1"] = {}
self.ad["axis1"]["time_array"] = []
self.ad["axis1"]["position"] = {}
self.ad["axis1"]["position"]["estimate"] = []
self.ad["axis1"]["position"]["set_point"] = []
self.ad["axis1"]["velocity"] = {}
self.ad["axis1"]["velocity"]["estimate"] = []
self.ad["axis1"]["velocity"]["set_point"] = []
self.ad["axis1"]["current"] = {}
self.ad["axis1"]["current"]["estimate"] = []
self.ad["axis1"]["current"]["set_point"] = []
self.ad["axis1"]["vel_sp_curve"] = self.plotWidget_velocity.plot(name="Setpoint", pen=pen_sp_axis1)
self.ad["axis1"]["vel_est_curve"] = self.plotWidget_velocity.plot(name="Estimate", pen=pen_est_axis1)
self.ad["axis1"]["pos_sp_curve"] = self.plotWidget_position.plot(name="Setpoint", pen=pen_sp_axis1)
self.ad["axis1"]["pos_est_curve"] = self.plotWidget_position.plot(name="Estimate", pen=pen_est_axis1)
self.ad["axis1"]["current_sp_curve"] = self.plotWidget_current.plot(name="Setpoint", pen=pen_sp_axis1)
self.ad["axis1"]["current_est_curve"] = self.plotWidget_current.plot(name="Estimate", pen=pen_est_axis1)
self.axis0_state = None
self.axis1_state = None
self.setDisabled_odrive_ui(True)
self.odrive_connect()
def open_troubleshoot_url(self):
QtGui.QDesktopServices.openUrl(QtCore.QUrl("https://docs.odriverobotics.com/troubleshooting"))
def axis0_graph_state_changed(self, state):
if state != QtCore.Qt.Checked:
self.clear_axis_graph_lists("axis0")
self.axis_graph_state_changed()
def axis1_graph_state_changed(self, state):
if state != QtCore.Qt.Checked:
self.clear_axis_graph_lists("axis1")
self.axis_graph_state_changed()
def axis_graph_state_changed(self):
axis0_state = self.showAxis0_checkBox.isChecked()
axis1_state = self.showAxis1_checkBox.isChecked()
if axis0_state == False and axis1_state == False:
self.timer_graphUpdate.stop()
# add something to clear graphs
else:
if self.timer_graphUpdate.isActive() == False:
self.timer_graphUpdate.start(20)
self.ad["start_time"] = pg.ptime.time()
def update_controller_mode(self):
# print("Controller mode {}".format(self.my_drive.axis0.controller.config.control_mode))
axis0_control_mode = self.my_drive.axis0.controller.config.control_mode
if axis0_control_mode == CTRL_MODE_POSITION_CONTROL:
self.axis0Position_radioButton.setChecked(True)
self.axis_controller_fields_position_enabled(True, 0)
elif axis0_control_mode == CTRL_MODE_CURRENT_CONTROL:
self.axis0Current_radioButton.setChecked(True)
self.axis_controller_fields_position_enabled(False, 0)
elif axis0_control_mode == CTRL_MODE_VELOCITY_CONTROL:
self.axis0Velocity_radioButton.setChecked(True)
self.axis_controller_fields_position_enabled(False, 0)
axis1_control_mode = self.my_drive.axis1.controller.config.control_mode
if axis1_control_mode == CTRL_MODE_POSITION_CONTROL:
self.axis1Position_radioButton.setChecked(True)
self.axis_controller_fields_position_enabled(True, 1)
elif axis1_control_mode == CTRL_MODE_CURRENT_CONTROL:
self.axis1Current_radioButton.setChecked(True)
self.axis_controller_fields_position_enabled(False, 1)
elif axis1_control_mode == CTRL_MODE_VELOCITY_CONTROL:
self.axis1Velocity_radioButton.setChecked(True)
self.axis_controller_fields_position_enabled(False, 1)
def axis_controller_mode_changed(self, id):
button_name = id.text()
group_name = id.sender().objectName()
if group_name == "buttonGroup_13":
if button_name == "Position":
self.axis_control_mode_changed(CTRL_MODE_POSITION_CONTROL, 0)
elif button_name == "Current":
self.axis_control_mode_changed(CTRL_MODE_CURRENT_CONTROL, 0)
elif button_name == "Velocity":
self.axis_control_mode_changed(CTRL_MODE_VELOCITY_CONTROL, 0)
elif group_name == "buttonGroup_14":
if button_name == "Position":
self.axis_control_mode_changed(CTRL_MODE_POSITION_CONTROL, 1)
elif button_name == "Current":
self.axis_control_mode_changed(CTRL_MODE_CURRENT_CONTROL, 1)
elif button_name == "Velocity":
self.axis_control_mode_changed(CTRL_MODE_VELOCITY_CONTROL, 1)
def axis_control_mode_changed(self, control_mode, axis):
if control_mode == CTRL_MODE_POSITION_CONTROL:
self.axis_controller_fields_position_enabled(True, axis)
elif control_mode == CTRL_MODE_CURRENT_CONTROL:
self.axis_controller_fields_position_enabled(False, axis)
elif control_mode == CTRL_MODE_VELOCITY_CONTROL:
self.axis_controller_fields_position_enabled(False, axis)
# Updated mode inside odrive board
if axis == 0:
self.my_drive.axis0.controller.config.control_mode = control_mode
self.spinBox_controlModeValue_axis0.setValue(control_mode)
elif axis == 1:
self.my_drive.axis1.controller.config.control_mode = control_mode
self.spinBox_controlModeValue_axis1.setValue(control_mode)
def axis_controller_fields_position_enabled(self, state, axis):
if axis == 0:
#Enabled Position objects
self.axis0Position_doubleSpinBox.setEnabled(state)
self.axis0PositionGo_pushButton.setEnabled(state)
#Disable current and velocity objects
self.axis0Backward_pushButton.setDisabled(state)
self.axis0Stop_pushButton.setDisabled(state)
self.axis0Forward_pushButton.setDisabled(state)
self.axis0Velocity_doubleSpinBox.setDisabled(state)
self.axis0Current_doubleSpinBox.setDisabled(state)
elif axis == 1:
#Enabled Position objects
self.axis1Position_doubleSpinBox.setEnabled(state)
self.axis1PositionGo_pushButton.setEnabled(state)
#Disable current and velocity objects
self.axis1Backward_pushButton.setDisabled(state)
self.axis1Stop_pushButton.setDisabled(state)
self.axis1Forward_pushButton.setDisabled(state)
self.axis1Velocity_doubleSpinBox.setDisabled(state)
self.axis1Current_doubleSpinBox.setDisabled(state)
def close_application(self):
print("whooaaaa so custom!!!")
# try:
# self.odrive_worker.stop()
# except:
# pass
sys.exit()
def odrive_connect(self):
self.odrive_worker = odriveWorker()
self.odrive_worker.odrive_found_sig.connect(self.odrive_connected)
self.odrive_worker.start()
self.pushButton_connect.setDisabled(True)
self.pushButton_connect.setText("Connecting . . .")
def odrive_connected(self, my_drive):
self.my_drive = my_drive
self.pushButton_connect.setText("Connected")
# self.statusBar.showMessage("Serial number: {}".format(self.my_drive.serial_number))
#if my drive is found
self.timer = pg.QtCore.QTimer()
self.timer.timeout.connect(self.update_statuses)
self.timer.start(500)
self.ad["start_time"] = pg.ptime.time()
self.timer_graphUpdate = pg.QtCore.QTimer()
self.timer_graphUpdate.timeout.connect(self.update_graphs)
self.timer_graphUpdate.start(20)
self.setDisabled_odrive_ui(False)
self.update_controller_mode()
self.scan_all_config()
def setDisabled_odrive_ui(self, state):
self.tabWidget.setDisabled(state)
self.controlTab.setDisabled(state)
self.groupBox_13.setDisabled(state)
self.pushButton_reboot.setDisabled(state)
self.pushButton_scanConfiguration.setDisabled(state)
self.pushButton_writeConfiguration.setDisabled(state)
self.pushButton_saveConfiguration.setDisabled(state)
self.pushButton_eraseConfiguration.setDisabled(state)
self.pushButton_getTemp.setDisabled(state)
def update_graphs(self):
delta = pg.ptime.time() - self.ad["start_time"]
try:
if self.showAxis0_checkBox.isChecked():
self.ad["axis0"]["time_array"].append(delta)
self.update_velocity_graph("axis0", self.my_drive.axis0)
self.update_position_graph("axis0", self.my_drive.axis0)
self.update_current_graph("axis0", self.my_drive.axis0)
self.update_X_range("axis0")
if self.showAxis1_checkBox.isChecked():
self.ad["axis1"]["time_array"].append(delta)
self.update_velocity_graph("axis1", self.my_drive.axis1)
self.update_position_graph("axis1", self.my_drive.axis1)
self.update_current_graph("axis1", self.my_drive.axis1)
self.update_X_range("axis1")
except Exception as e:
print(e)
self.odrive_disconnected_exception()
def odrive_disconnected_exception(self):
self.timer.stop()
self.timer_graphUpdate.stop()
self.odrive_worker.stop()
self.pushButton_connect.setDisabled(False)
self.pushButton_connect.setText("Connect")
self.setDisabled_odrive_ui(True)
self.clear_axis_graph_lists("axis0")
self.clear_axis_graph_lists("axis1")
def clearGraph_clicked(self):
self.clear_axis_graph_lists("axis0")
self.clear_axis_graph_lists("axis1")
self.ad["start_time"] = pg.ptime.time()
def clear_axis_graph_lists(self, axis_key):
self.ad[axis_key]["time_array"] = []
self.ad[axis_key]["velocity"]["set_point"] = []
self.ad[axis_key]["velocity"]["estimate"] = []
self.ad[axis_key]["current"]["set_point"] = []
self.ad[axis_key]["current"]["estimate"] = []
self.ad[axis_key]["position"]["set_point"] = []
self.ad[axis_key]["position"]["estimate"] = []
self.ad[axis_key]["vel_sp_curve"].setData([],[])
self.ad[axis_key]["vel_est_curve"].setData([],[])
self.ad[axis_key]["current_sp_curve"].setData([],[])
self.ad[axis_key]["current_est_curve"].setData([],[])
self.ad[axis_key]["pos_sp_curve"].setData([],[])
self.ad[axis_key]["pos_est_curve"].setData([],[])
def update_velocity_graph(self, axis_key, odrv_axis):
self.ad[axis_key]["velocity"]["estimate"].append(odrv_axis.encoder.vel_estimate)
self.ad[axis_key]["velocity"]["set_point"].append(odrv_axis.controller.vel_setpoint)
self.ad[axis_key]["vel_sp_curve"].setData(self.ad[axis_key]["time_array"], self.ad[axis_key]["velocity"]["set_point"])
self.ad[axis_key]["vel_est_curve"].setData(self.ad[axis_key]["time_array"], self.ad[axis_key]["velocity"]["estimate"])
def update_current_graph(self, axis_key, odrv_axis):
self.ad[axis_key]["current"]["estimate"].append(odrv_axis.motor.current_control.Iq_measured)
self.ad[axis_key]["current"]["set_point"].append(odrv_axis.motor.current_control.Iq_setpoint)
self.ad[axis_key]["current_sp_curve"].setData(self.ad[axis_key]["time_array"], self.ad[axis_key]["current"]["set_point"])
self.ad[axis_key]["current_est_curve"].setData(self.ad[axis_key]["time_array"], self.ad[axis_key]["current"]["estimate"])
def update_position_graph(self, axis_key, odrv_axis):
self.ad[axis_key]["position"]["estimate"].append(odrv_axis.encoder.pos_estimate)
self.ad[axis_key]["position"]["set_point"].append(odrv_axis.controller.pos_setpoint)
self.ad[axis_key]["pos_sp_curve"].setData(self.ad[axis_key]["time_array"], self.ad[axis_key]["position"]["set_point"])
self.ad[axis_key]["pos_est_curve"].setData(self.ad[axis_key]["time_array"], self.ad[axis_key]["position"]["estimate"])
def update_X_range(self, axis):
upper_limit = self.ad[axis]["time_array"][-1]
lower_limit = self.ad[axis]["time_array"][0]
delta = self.spinBox_graphTime.value()
if (upper_limit - lower_limit) > delta:
while((upper_limit - lower_limit) > delta):
self.ad[axis]["time_array"].pop(0)
self.ad[axis]["velocity"]["estimate"].pop(0)
self.ad[axis]["velocity"]["set_point"].pop(0)
self.ad[axis]["current"]["estimate"].pop(0)
self.ad[axis]["current"]["set_point"].pop(0)
self.ad[axis]["position"]["estimate"].pop(0)
self.ad[axis]["position"]["set_point"].pop(0)
upper_limit = self.ad[axis]["time_array"][-1]
lower_limit = self.ad[axis]["time_array"][0]
def update_statuses(self):
# self.update_voltage()
try:
self.update_machine_state()
self.update_controller_mode()
self.error_checks()
except Exception as e:
print(e)
self.odrive_disconnected_exception()
# #Controller error
# # ERROR_NONE = 0,
# # ERROR_OVERSPEED = 0x01,
# #sensorless error
# # ERROR_NONE = 0,
# # ERROR_OVERSPEED = 0x01,
def error_checks(self):
# axis0_error = hex(self.my_drive.axis0.error)[2:]
# axis1_error = hex(self.my_drive.axis1.error)[2:]
axis0_message = "A0: "
axis1_message = "A1: "
axis0_error = self.check_axis_errors(hex(self.my_drive.axis0.error)[2:])
axis1_error = self.check_axis_errors(hex(self.my_drive.axis1.error)[2:])
axis0_encoder_error = self.check_axis_encoder_errors(hex(self.my_drive.axis0.encoder.error)[2:])
axis1_encoder_error = self.check_axis_encoder_errors(hex(self.my_drive.axis1.encoder.error)[2:])
axis0_motor_error = self.check_axis_motor_errors(hex(self.my_drive.axis0.motor.error)[2:])
axis1_motor_error = self.check_axis_motor_errors(hex(self.my_drive.axis1.motor.error)[2:])
axis0_error += ", E: "
axis1_error += ", E: "
axis0_error += axis0_encoder_error
axis1_error += axis1_encoder_error
axis0_error += ", M: "
axis1_error += ", M: "
axis0_error += axis0_motor_error
axis1_error += axis1_motor_error
axis0_message += axis0_error
axis1_message += axis1_error
self.statusBar.showMessage(axis0_message + " " + axis1_message)
def check_axis_motor_errors(self, motor_error):
error_string = ""
if len(motor_error) == 1:
first_bit = motor_error
error_string = self.check_motor_error_b1(first_bit)
elif len(motor_error) == 2:
first_bit = motor_error[1]
second_bit = motor_error[0]
error_string = self.check_motor_error_b1(first_bit)
error_string += " - "
error_string += self.check_motor_error_b2(second_bit)
elif len(motor_error) == 3:
first_bit = motor_error[2]
second_bit = motor_error[1]
third_bit = motor_error[0]
error_string = self.check_motor_error_b1(first_bit)
error_string += " - "
error_string += self.check_motor_error_b2(second_bit)
error_string += " - "
error_string += self.check_motor_error_b3(third_bit)
return error_string
def check_motor_error_b1(self, bit):
error_string = "NULL"
if bit == "0": #ERROR_NONE = 0x00,
error_string = "No errors"
elif bit == "1": #ERROR_PHASE_RESISTANCE_OUT_OF_RANGE = 0x0001,
error_string = "ERROR_PHASE_RESISTANCE_OUT_OF_RANGE"
elif bit == "2": #ERROR_PHASE_INDUCTANCE_OUT_OF_RANGE = 0x0002,
error_string = "ERROR_PHASE_INDUCTANCE_OUT_OF_RANGE"
elif bit == "4": #ERROR_ADC_FAILED = 0x0004,
error_string = "ERROR_ADC_FAILED"
elif bit == "8": #ERROR_DRV_FAULT = 0x0008,
error_string = "ERROR_DRV_FAULT"
return error_string
def check_motor_error_b2(self, bit):
error_string = " "
if bit == "1": #ERROR_CONTROL_DEADLINE_MISSED = 0x0010,
error_string = "ERROR_CONTROL_DEADLINE_MISSED"
elif bit == "2": #ERROR_NOT_IMPLEMENTED_MOTOR_TYPE = 0x0020,
error_string = "ERROR_NOT_IMPLEMENTED_MOTOR_TYPE"
elif bit == "4": #ERROR_BRAKE_CURRENT_OUT_OF_RANGE = 0x0040,
error_string = "ERROR_BRAKE_CURRENT_OUT_OF_RANGE"
elif bit == "8": #ERROR_MODULATION_MAGNITUDE = 0x0080,
error_string = "ERROR_MODULATION_MAGNITUDE"
return error_string
def check_motor_error_b3(self, bit):
error_string = " "
if bit == "1": #ERROR_BRAKE_DEADTIME_VIOLATION = 0x0100,
error_string = "ERROR_BRAKE_DEADTIME_VIOLATION"
elif bit == "2": #ERROR_UNEXPECTED_TIMER_CALLBACK = 0x0200,
error_string = "ERROR_UNEXPECTED_TIMER_CALLBACK"
elif bit == "4": #ERROR_CURRENT_SENSE_SATURATION = 0x0400
error_string = "ERROR_CURRENT_SENSE_SATURATION"
return error_string
def check_axis_encoder_errors(self, encoder_error):
error_string = ""
if len(encoder_error) == 1:
first_bit = encoder_error
error_string = self.check_encoder_error_b1(first_bit)
elif len(encoder_error) == 2:
first_bit = encoder_error[1]
second_bit = encoder_error[0]
error_string = self.check_encoder_error_b1(first_bit)
error_string += " - "
error_string += self.check_encoder_error_b2(second_bit)
return error_string
def check_encoder_error_b1(self, bit):
error_string = "NULL"
if bit == "0": #ERROR_NONE = 0x00,
error_string = "No errors"
elif bit == "1": #ERROR_UNSTABLE_GAIN = 0x01,
error_string = "ERROR_UNSTABLE_GAIN"
elif bit == "2": #ERROR_CPR_OUT_OF_RANGE = 0x02,
error_string = "ERROR_CPR_OUT_OF_RANGE"
elif bit == "4": #ERROR_NO_RESPONSE = 0x04,
error_string = "ERROR_NO_RESPONSE"
elif bit == "8": #ERROR_UNSUPPORTED_ENCODER_MODE = 0x08,
error_string = "ERROR_UNSUPPORTED_ENCODER_MODE"
return error_string
def check_encoder_error_b2(self, bit):
error_string = " "
if bit == "1": #ERROR_ILLEGAL_HALL_STATE = 0x10,
error_string = "ERROR_ILLEGAL_HALL_STATE"
elif bit == "2": #ERROR_INDEX_NOT_FOUND_YET = 0x20,
error_string = "ERROR_INDEX_NOT_FOUND_YET"
return error_string
def check_axis_errors(self, axis_error):
error_string = ""
if len(axis_error) == 1:
first_bit = axis_error
error_string = self.check_axis_error_b1(first_bit)
elif len(axis_error) == 2:
first_bit = axis_error[1]
second_bit = axis_error[0]
error_string = self.check_axis_error_b1(first_bit)
error_string += " - "
error_string += self.check_axis_error_b2(second_bit)
elif len(axis_error) == 3:
first_bit = axis_error[2]
second_bit = axis_error[1]
third_bit = axis_error[0]
error_string = self.check_axis_error_b1(first_bit)
error_string += " - "
error_string += self.check_axis_error_b2(second_bit)
error_string += " - "
error_string += self.check_axis_error_b3(third_bit)
return error_string
def check_axis_error_b1(self, bit):
error_string = "NULL"
if bit == "0": #ERROR_NONE = 0x00,
error_string = "No errors"
elif bit == "1": #ERROR_INVALID_STATE = 0x01, //<! an invalid state was requested
error_string = "ERROR_INVALID_STATE"
elif bit == "2": #ERROR_DC_BUS_UNDER_VOLTAGE = 0x02,
error_string = "ERROR_DC_BUS_UNDER_VOLTAGE"
elif bit == "4": #ERROR_DC_BUS_OVER_VOLTAGE = 0x04,
error_string = "ERROR_DC_BUS_OVER_VOLTAGE"
elif bit == "8": #ERROR_CURRENT_MEASUREMENT_TIMEOUT = 0x08,
error_string = "ERROR_CURRENT_MEASUREMENT_TIMEOUT"
return error_string
def check_axis_error_b2(self, bit):
error_string = " "
if bit == "1": #ERROR_BRAKE_RESISTOR_DISARMED = 0x10, //<! the brake resistor was unexpectedly disarmed
error_string = "ERROR_BRAKE_RESISTOR_DISARMED"
elif bit == "2": #ERROR_MOTOR_DISARMED = 0x20, //<! the motor was unexpectedly disarmed
error_string = "ERROR_MOTOR_DISARMED"
elif bit == "4": #ERROR_MOTOR_FAILED = 0x40, // Go to motor.hpp for information, check odrvX.axisX.motor.error for error value
error_string = "ERROR_MOTOR_FAILED"
elif bit == "8": #ERROR_SENSORLESS_ESTIMATOR_FAILED = 0x80,
error_string = "ERROR_SENSORLESS_ESTIMATOR_FAILED"
return error_string
def check_axis_error_b3(self, bit):
error_string = " "
if bit == "1": #ERROR_ENCODER_FAILED = 0x100, // Go to encoder.hpp for information, check odrvX.axisX.encoder.error for error value
error_string = "ERROR_ENCODER_FAILED"
elif bit == "2": #ERROR_CONTROLLER_FAILED = 0x200,
error_string = "ERROR_CONTROLLER_FAILED"
elif bit == "4": #ERROR_POS_CTRL_DURING_SENSORLESS = 0x400,
error_string = "ERROR_POS_CTRL_DURING_SENSORLESS"
return error_string
def update_voltage(self):
self.label_vbusVoltageValue.setText(str(round(self.my_drive.vbus_voltage, 2)))
def update_machine_state(self):
current_state = self.my_drive.axis0.current_state
if self.axis0_state != current_state:
self.axis0_state = current_state
print("New state axis0: {}".format(self.axis0_state))
self.update_machine_state_color(current_state, 0)
current_state = self.my_drive.axis1.current_state
if self.axis1_state != current_state:
self.axis1_state = current_state
print("New state axis1: {}".format(self.axis1_state))
self.update_machine_state_color(current_state, 1)
def update_machine_state_color(self, current_state, axis):
self.clear_state_buttons(axis)
if current_state == AXIS_STATE_IDLE:
self.idle_state(axis)
elif current_state == AXIS_STATE_STARTUP_SEQUENCE:
self.startup_seq_state(axis)
elif current_state == AXIS_STATE_FULL_CALIBRATION_SEQUENCE:
self.full_calibration_seq_state(axis)
elif current_state == AXIS_STATE_MOTOR_CALIBRATION:
self.motor_calibration_state(axis)
elif current_state == AXIS_STATE_SENSORLESS_CONTROL:
self.sensorless_control_state(axis)
elif current_state == AXIS_STATE_ENCODER_INDEX_SEARCH:
self.encoder_index_search_state(axis)
elif current_state == AXIS_STATE_ENCODER_OFFSET_CALIBRATION:
self.encoder_offset_calibration_state(axis)
elif current_state == AXIS_STATE_CLOSED_LOOP_CONTROL:
self.closed_loop_control_state(axis)
def save_odrive_configuration(self):
self.my_drive.save_configuration()
def erase_odrive_configuration(self):
self.my_drive.erase_configuration()
def write_config(self):
# AXIS0
self.my_drive.axis0.motor.config.phase_inductance = float(self.doubleSpinBox_phaseInductanceValue_axis0.value())
self.my_drive.axis0.motor.config.phase_resistance = float(self.doubleSpinBox_phaseResistanceValue_axis0.value())
self.my_drive.axis0.motor.config.pole_pairs = int(self.spinBox_poleParisValue_axis0.value())
self.my_drive.axis0.motor.config.motor_type = int(self.spinBox_motorTypeValue_axis0.value())
self.my_drive.axis0.motor.config.direction = int(self.spinBox_directionValue_axis0.value())
self.my_drive.axis0.motor.config.calibration_current = float(self.doubleSpinBox_calibrationCurrentValue_axis0.value())
self.my_drive.axis0.motor.config.current_lim = float(self.doubleSpinBox_currentLimValue_axis0.value())
self.my_drive.axis0.motor.config.pre_calibrated = self.radioButton_motorPreCalibratedTrue_axis0.isChecked()
self.my_drive.axis0.motor.config.requested_current_range = float(self.doubleSpinBox_requestedCurrentRangeValue_axis0.value())
# self.my_drive.axis0.motor.config.current_control_bandwidth = float(self.doubleSpinBox_currentControlBandwidthValue.value())
self.my_drive.axis0.motor.config.resistance_calib_max_voltage = float(self.doubleSpinBox_resistanceCalibMaxVoltageValue_axis0.value())
# self.my_drive.axis0.sensorless_estimator.config.pm_flux_linkage = float(self..value())
# self.my_drive.axis0.sensorless_estimator.config.pll_bandwidth = float(self..value())
# self.my_drive.axis0.sensorless_estimator.config.observer_gain = float(self..value())
self.my_drive.axis0.controller.config.vel_gain = float(self.doubleSpinBox_velGainValue_axis0.value())
self.my_drive.axis0.controller.config.vel_integrator_gain = float(self.doubleSpinBox_velIntegratorGainValue_axis0.value())
self.my_drive.axis0.controller.config.pos_gain = float(self.doubleSpinBox_posGainValue_axis0.value())
self.my_drive.axis0.controller.config.vel_limit = float(self.doubleSpinBox_velLimitValue_axis0.value())
self.my_drive.axis0.controller.config.control_mode = int(self.spinBox_controlModeValue_axis0.value())
self.my_drive.axis0.config.startup_encoder_index_search = self.radioButton_startupEncoderIndexSearchTrue_axis0.isChecked()
self.my_drive.axis0.config.startup_motor_calibration = self.radioButton_startupMotorCalibrationTrue_axis0.isChecked()
self.my_drive.axis0.config.startup_sensorless_control = self.radioButton_startupSensorlessControlTrue_axis0.isChecked()
self.my_drive.axis0.config.startup_closed_loop_control = self.radioButton_startupLoopControlTrue_axis0.isChecked()
self.my_drive.axis0.config.startup_encoder_offset_calibration = self.radioButton_startupEncoderOffsetCalibrationTrue_axis0.isChecked()
self.my_drive.axis0.config.enable_step_dir = self.radioButton_enableStepDirTrue_axis0.isChecked()
# self.my_drive.axis0.config.ramp_up_distance = float(self.doubleSpinBox_rampUpDistanceValue_axis0.value())
# self.my_drive.axis0.config.spin_up_current = float(self.doubleSpinBox_spinUpCurrentValue_axis0.value())
# self.my_drive.axis0.config.spin_up_target_vel = float(self.doubleSpinBox_spinUpTargetVelValue_axis0.value())
# self.my_drive.axis0.config.ramp_up_time = float(self.doubleSpinBox_rampUpTimeValue_axis0.value())
self.my_drive.axis0.config.counts_per_step = float(self.doubleSpinBox_countPerStepValue_axis0.value())
# self.my_drive.axis0.config.spin_up_acceleration = float(self.doubleSpinBox_spinUpAccelerationValue_axis0.value())
self.my_drive.axis0.encoder.config.calib_range = float(self.doubleSpinBox_calibRangeValue_axis0.value())
self.my_drive.axis0.encoder.config.mode = int(self.spinBox_modeEncoderValue_axis0.value())
self.my_drive.axis0.encoder.config.offset = int(self.spinBox_offsetValue_axis0.value())
self.my_drive.axis0.encoder.config.pre_calibrated = self.radioButton_encoderPreCalibratedTrue_axis0.isChecked()
self.my_drive.axis0.encoder.config.use_index = self.radioButton_useIndexTrue_axis0.isChecked()
self.my_drive.axis0.encoder.config.cpr = int(self.spinBox_cprValue_axis0.value())
# self.my_drive.axis0.encoder.config.idx_search_speed = float(self.doubleSpinBox_idxSearchSpeedValue_axis0.value())
self.my_drive.axis0.encoder.config.offset_float = float(self.doubleSpinBox_offsetFloatValue_axis0.value())
self.my_drive.axis0.encoder.config.bandwidth = float(self.doubleSpinBox_bandwidthValue_axis0.value())
# AXIS1
self.my_drive.axis1.motor.config.phase_inductance = float(self.doubleSpinBox_phaseInductanceValue_axis1.value())
self.my_drive.axis1.motor.config.phase_resistance = float(self.doubleSpinBox_phaseResistanceValue_axis1.value())
self.my_drive.axis1.motor.config.pole_pairs = int(self.spinBox_poleParisValue_axis1.value())
self.my_drive.axis1.motor.config.motor_type = int(self.spinBox_motorTypeValue_axis1.value())
self.my_drive.axis1.motor.config.direction = int(self.spinBox_directionValue_axis1.value())
self.my_drive.axis1.motor.config.calibration_current = float(self.doubleSpinBox_calibrationCurrentValue_axis1.value())
self.my_drive.axis1.motor.config.current_lim = float(self.doubleSpinBox_currentLimValue_axis1.value())
self.my_drive.axis1.motor.config.pre_calibrated = self.radioButton_motorPreCalibratedTrue_axis1.isChecked()
self.my_drive.axis1.motor.config.requested_current_range = float(self.doubleSpinBox_requestedCurrentRangeValue_axis1.value())
# self.my_drive.axis1.motor.config.current_control_bandwidth = float(self.doubleSpinBox_currentControlBandwidthValue.value())
self.my_drive.axis1.motor.config.resistance_calib_max_voltage = float(self.doubleSpinBox_resistanceCalibMaxVoltageValue_axis1.value())
# self.my_drive.axis1.sensorless_estimator.config.pm_flux_linkage = float(self..value())
# self.my_drive.axis1.sensorless_estimator.config.pll_bandwidth = float(self..value())
# self.my_drive.axis1.sensorless_estimator.config.observer_gain = float(self..value())
self.my_drive.axis1.controller.config.vel_gain = float(self.doubleSpinBox_velGainValue_axis1.value())
self.my_drive.axis1.controller.config.vel_integrator_gain = float(self.doubleSpinBox_velIntegratorGainValue_axis1.value())
self.my_drive.axis1.controller.config.pos_gain = float(self.doubleSpinBox_posGainValue_axis1.value())
self.my_drive.axis1.controller.config.vel_limit = float(self.doubleSpinBox_velLimitValue_axis1.value())
self.my_drive.axis1.controller.config.control_mode = int(self.spinBox_controlModeValue_axis1.value())
self.my_drive.axis1.config.startup_encoder_index_search = self.radioButton_startupEncoderIndexSearchTrue_axis1.isChecked()
self.my_drive.axis1.config.startup_motor_calibration = self.radioButton_startupMotorCalibrationTrue_axis1.isChecked()
self.my_drive.axis1.config.startup_sensorless_control = self.radioButton_startupSensorlessControlTrue_axis1.isChecked()
self.my_drive.axis1.config.startup_closed_loop_control = self.radioButton_startupLoopControlTrue_axis1.isChecked()
self.my_drive.axis1.config.startup_encoder_offset_calibration = self.radioButton_startupEncoderOffsetCalibrationTrue_axis1.isChecked()
self.my_drive.axis1.config.enable_step_dir = self.radioButton_enableStepDirTrue_axis1.isChecked()
# self.my_drive.axis1.config.ramp_up_distance = float(self.doubleSpinBox_rampUpDistanceValue_axis1.value())
# self.my_drive.axis1.config.spin_up_current = float(self.doubleSpinBox_spinUpCurrentValue_axis1.value())
# self.my_drive.axis1.config.spin_up_target_vel = float(self.doubleSpinBox_spinUpTargetVelValue_axis1.value())
# self.my_drive.axis1.config.ramp_up_time = float(self.doubleSpinBox_rampUpTimeValue_axis1.value())
self.my_drive.axis1.config.counts_per_step = float(self.doubleSpinBox_countPerStepValue_axis1.value())
# self.my_drive.axis1.config.spin_up_acceleration = float(self.doubleSpinBox_spinUpAccelerationValue_axis1.value())
self.my_drive.axis1.encoder.config.calib_range = float(self.doubleSpinBox_calibRangeValue_axis1.value())
self.my_drive.axis1.encoder.config.mode = int(self.spinBox_modeEncoderValue_axis1.value())
self.my_drive.axis1.encoder.config.offset = int(self.spinBox_offsetValue_axis1.value())
self.my_drive.axis1.encoder.config.pre_calibrated = self.radioButton_encoderPreCalibratedTrue_axis1.isChecked()
self.my_drive.axis1.encoder.config.use_index = self.radioButton_useIndexTrue_axis1.isChecked()
self.my_drive.axis1.encoder.config.cpr = int(self.spinBox_cprValue_axis1.value())
# self.my_drive.axis1.encoder.config.idx_search_speed = float(self.doubleSpinBox_idxSearchSpeedValue_axis1.value())
self.my_drive.axis1.encoder.config.offset_float = float(self.doubleSpinBox_offsetFloatValue_axis1.value())
self.my_drive.axis1.encoder.config.bandwidth = float(self.doubleSpinBox_bandwidthValue_axis1.value())
self.my_drive.config.dc_bus_overvoltage_trip_level = float(self.doubleSpinBox_dcBusOvervoltageTripLevelValue.value())
self.my_drive.config.enable_ascii_protocol_on_usb = self.radioButton_enableAsciiProtocolOnUsbTrue.isChecked()
self.my_drive.config.dc_bus_undervoltage_trip_level = float(self.doubleSpinBox_dcBusUndervoltageTripLevelValue.value())
self.my_drive.config.enable_uart = self.radioButton_enableUartTrue.isChecked()
self.my_drive.config.enable_i2c_instead_of_can = self.radioButton_enableI2cInsteadOfCanTrue.isChecked()
self.my_drive.config.brake_resistance = float(self.doubleSpinBox_brakeResistanceValue.value())
def scan_all_config(self):
print("Scanning all config")
self.scan_system_stats_config()
self.scan_can_config()
self.scan_low_level_config()
self.scan_config_config()
self.scan_axis_config()
def scan_config_config(self):
# enable uart
# enable i2c instead of can
self.doubleSpinBox_dcBusOvervoltageTripLevelValue.setValue(self.my_drive.config.dc_bus_overvoltage_trip_level)
#self.doubleSpinBox_dcBusOvervoltageTripLevelValue_2.setText(str(self.my_drive.config.dc_bus_undervoltage_trip_level))
#self.doubleSpinBox_brakeResistanceValue.setText(str(self.my_drive.config.brake_resistance))
if self.my_drive.config.enable_uart:
self.radioButton_enableUartTrue.setChecked(True)
else:
self.radioButton_enableUartFalse.setChecked(True)
if self.my_drive.config.enable_i2c_instead_of_can:
self.radioButton_enableI2cInsteadOfCanTrue.setChecked(True)
else:
self.radioButton_enableI2cInsteadOfCanFalse.setChecked(True)
if self.my_drive.config.enable_ascii_protocol_on_usb:
self.radioButton_enableAsciiProtocolOnUsbTrue.setChecked(True)
else:
self.radioButton_enableAsciiProtocolOnUsbFalse.setChecked(True)
self.doubleSpinBox_dcBusOvervoltageTripLevelValue.setValue(self.my_drive.config.dc_bus_overvoltage_trip_level)
self.doubleSpinBox_dcBusUndervoltageTripLevelValue.setValue(self.my_drive.config.dc_bus_undervoltage_trip_level)
self.doubleSpinBox_brakeResistanceValue.setValue(self.my_drive.config.brake_resistance)
# enable ascii protocol
self.scan_config_gpio_pwm_config()
def scan_config_gpio_pwm_config(self):
self.doubleSpinBox_gpio1MaxValue.setValue(self.my_drive.config.gpio1_pwm_mapping.max)
self.doubleSpinBox_gpio2MaxValue.setValue(self.my_drive.config.gpio2_pwm_mapping.max)
self.doubleSpinBox_gpio3MaxValue.setValue(self.my_drive.config.gpio3_pwm_mapping.max)
self.doubleSpinBox_gpio4MaxValue.setValue(self.my_drive.config.gpio4_pwm_mapping.max)
self.doubleSpinBox_gpio1MinValue.setValue(self.my_drive.config.gpio1_pwm_mapping.min)
self.doubleSpinBox_gpio2MinValue.setValue(self.my_drive.config.gpio2_pwm_mapping.min)
self.doubleSpinBox_gpio3MinValue.setValue(self.my_drive.config.gpio3_pwm_mapping.min)
self.doubleSpinBox_gpio4MinValue.setValue(self.my_drive.config.gpio4_pwm_mapping.min)
def scan_low_level_config(self):
print("Scanning Low level config...")
self.label_vbusVoltageValue.setText(str(self.my_drive.vbus_voltage))
if self.my_drive.brake_resistor_armed:
self.icon_brakeResistorArmedValue.setPixmap(QtGui.QPixmap(ICON_TRUE))
else:
self.icon_brakeResistorArmedValue.setPixmap(QtGui.QPixmap(ICON_FALSE))
self.icon_userConfigLoadedValue.setPixmap(QtGui.QPixmap(ICON_FALSE))
if self.my_drive.user_config_loaded:
self.icon_userConfigLoadedValue.setPixmap(QtGui.QPixmap(ICON_TRUE))
else:
self.icon_userConfigLoadedValue.setPixmap(QtGui.QPixmap(ICON_FALSE))
self.label_hwVersionValue.setText("{}.{}".format(self.my_drive.hw_version_major, self.my_drive.hw_version_minor))
self.label_hwVersionVariantValue.setText(str(self.my_drive.hw_version_variant))
self.label_fwVersionValue.setText("{}.{}".format(self.my_drive.fw_version_major, self.my_drive.fw_version_minor))
self.label_fwVersionRevisionValue.setText(str(self.my_drive.fw_version_revision))
self.label_fwVersionUnreleasedValue.setText(str(self.my_drive.fw_version_unreleased))
# Set Icon instead
#self.label_brakeResistorArmedValue.setText(str(self.my_drive.brake_resistor_armed))
#self.label_hwVersionMinorValue.setText(str(self.my_drive.node_id))
#self.label_hwVersionVariantValue.setText(str(self.my_drive.node_id))
#self.label_hwVersionMajorValue.setText(str(self.my_drive.node_id))
#self.label_getAdcVoltageValue.setText(str(self.my_drive.node_id))
self.label_testPropertyValue.setText(str(self.my_drive.test_property))
#self.label_fwVersionRevisionValue.setText(str(self.my_drive.node_id))
#self.label_fwVersionUnreleasedValue.setText(str(self.my_drive.node_id))
#self.label_fwVersionMinorValue.setText(str(self.my_drive.node_id))
#self.label_fwVersionMajorValue.setText(str(self.my_drive.node_id))
#self.label_userConfigLoadedValue.setText(str(self.my_drive.user_config_loaded))
#self.label_getOscilloscopeValValue.setText(str(self.my_drive.node_id))
self.label_serialNumberValue.setText(hex(self.my_drive.serial_number).upper()[2:])
def scan_can_config(self):
print("Scanning CAN config...")
self.label_TxMailboxAbortCallbackCntValue.setText(str(self.my_drive.can.TxMailboxAbortCallbackCnt))
self.label_nodeIdValue.setText(str(self.my_drive.can.node_id))
self.label_receivedMsgCntValue.setText(str(self.my_drive.can.received_msg_cnt))
self.label_TxMailboxCompleteCallbackCntValue.setText(str(self.my_drive.can.TxMailboxCompleteCallbackCnt))
self.label_unhandledMessagesValue.setText(str(self.my_drive.can.unhandled_messages))
self.label_receivedAckValue.setText(str(self.my_drive.can.received_ack))
self.label_unexpectedErrorsValue.setText(hex(self.my_drive.can.unexpected_errors))
def scan_system_stats_config(self):
self.label_minStackSpaceAxis1Value.setText(str(self.my_drive.system_stats.min_stack_space_axis1))
self.label_minStackSpaceStartupValue.setText(str(self.my_drive.system_stats.min_stack_space_startup))
self.label_minStackSpaceUartValue.setText(str(self.my_drive.system_stats.min_stack_space_uart))
self.label_minStackSpaceUsbIrqValue.setText(str(self.my_drive.system_stats.min_stack_space_usb_irq))
self.label_minStackSpaceCommsValue.setText(str(self.my_drive.system_stats.min_stack_space_comms))
self.label_minHeapSpaceValue.setText(str(self.my_drive.system_stats.min_heap_space))
self.label_minStackSpaceUsbValue.setText(str(self.my_drive.system_stats.min_stack_space_usb))
self.label_minStackSpaceAxis0Value.setText(str(self.my_drive.system_stats.min_stack_space_axis0))
self.label_uptimeValue.setText(str(self.my_drive.system_stats.uptime))
self.label_rxCntUsbValue.setText(str(self.my_drive.system_stats.usb.rx_cnt))
self.label_txOverrunCntValue.setText(str(self.my_drive.system_stats.usb.tx_overrun_cnt))
self.label_txCntValue.setText(str(self.my_drive.system_stats.usb.tx_cnt))
self.label_rxCntI2cValue.setText(str(self.my_drive.system_stats.i2c.rx_cnt))
self.label_addrValue.setText(str(self.my_drive.system_stats.i2c.addr))
self.label_addrMatchCnt_2.setText(str(self.my_drive.system_stats.i2c.addr_match_cnt))
self.label_errorCntValue.setText(hex(self.my_drive.system_stats.i2c.error_cnt))
def load_config_template(self):
config_template = {}
with open("config_template.json") as f:
config_template = json.load(f)
return config_template
def scan_axis_config(self):
self.scan_axis0_config()
self.scan_axis1_config()
def scan_axis0_config(self):
self.label_generalErrorValue_axis0.setText(hex(self.my_drive.axis0.error))
self.label_loopCounterValue_axis0.setText(str(self.my_drive.axis0.loop_counter))
if self.my_drive.axis0.config.startup_motor_calibration:
self.radioButton_startupMotorCalibrationTrue_axis0.setChecked(True)
else:
self.radioButton_startupMotorCalibrationFalse_axis0.setChecked(True)
if self.my_drive.axis0.config.startup_encoder_index_search:
self.radioButton_startupEncoderIndexSearchTrue_axis0.setChecked(True)
else:
self.radioButton_startupEncoderIndexSearchFalse_axis0.setChecked(True)
if self.my_drive.axis0.config.startup_encoder_offset_calibration:
self.radioButton_startupEncoderOffsetCalibrationTrue_axis0.setChecked(True)
else:
self.radioButton_startupEncoderOffsetCalibrationFalse_axis0.setChecked(True)
if self.my_drive.axis0.config.startup_closed_loop_control:
self.radioButton_startupLoopControlTrue_axis0.setChecked(True)
else:
self.radioButton_startupLoopControlFalse_axis0.setChecked(True)
if self.my_drive.axis0.config.startup_sensorless_control:
self.radioButton_startupSensorlessControlTrue_axis0.setChecked(True)
else:
self.radioButton_startupSensorlessControlFalse_axis0.setChecked(True)
if self.my_drive.axis0.config.enable_step_dir:
self.radioButton_enableStepDirTrue_axis0.setChecked(True)
else:
self.radioButton_enableStepDirFalse_axis0.setChecked(True)
self.doubleSpinBox_countPerStepValue_axis0.setValue(self.my_drive.axis0.config.counts_per_step)
# self.doubleSpinBox_rampUpTimeValue_axis0.setValue(self.my_drive.axis0.config.ramp_up_time)
# self.doubleSpinBox_rampUpDistanceValue_axis0.setValue(self.my_drive.axis0.config.ramp_up_distance)
# self.doubleSpinBox_spinUpCurrentValue_axis0.setValue(self.my_drive.axis0.config.spin_up_current)
# self.doubleSpinBox_spinUpAccelerationValue_axis0.setValue(self.my_drive.axis0.config.spin_up_acceleration)
# self.doubleSpinBox_spinUpTargetVelValue_axis0.setValue(self.my_drive.axis0.config.spin_up_target_vel)
self.scan_axis0_encoder_config()
self.scan_axis0_controller_config()
self.scan_axis0_motor_config()
def scan_axis0_encoder_config(self):
if self.my_drive.axis0.encoder.index_found:
self.icon_indexFoundValue_axis0.setPixmap(QtGui.QPixmap(ICON_TRUE))
else:
self.icon_indexFoundValue_axis0.setPixmap(QtGui.QPixmap(ICON_FALSE))
if self.my_drive.axis0.encoder.is_ready:
self.icon_isReadyEncoderValue_axis0.setPixmap(QtGui.QPixmap(ICON_TRUE))
else:
self.icon_isReadyEncoderValue_axis0.setPixmap(QtGui.QPixmap(ICON_FALSE))
self.label_posCprValue_axis0.setText(str(self.my_drive.axis0.encoder.pos_cpr))
self.label_posEstimateValue_axis0.setText(str(self.my_drive.axis0.encoder.pos_estimate))
self.label_shadowCountValue_axis0.setText(str(self.my_drive.axis0.encoder.shadow_count))
self.label_interpolationValue_axis0.setText(str(self.my_drive.axis0.encoder.interpolation))
self.label_countInCprValue_axis0.setText(str(self.my_drive.axis0.encoder.count_in_cpr))
self.label_hallStateValue_axis0.setText(str(self.my_drive.axis0.encoder.hall_state))
self.label_encoderErrorValue_axis0.setText(hex(self.my_drive.axis0.encoder.error))
self.label_phaseValue_axis0.setText(str(self.my_drive.axis0.encoder.phase))
self.scan_axis0_encoder_config_config()
def scan_axis0_encoder_config_config(self):
if self.my_drive.axis0.encoder.config.pre_calibrated:
self.radioButton_encoderPreCalibratedTrue_axis0.setChecked(True)
else:
self.radioButton_encoderPreCalibratedFalse_axis0.setChecked(True)
if self.my_drive.axis0.encoder.config.use_index:
self.radioButton_useIndexTrue_axis0.setChecked(True)
else:
self.radioButton_useIndexFalse_axis0.setChecked(True)
# self.doubleSpinBox_idxSearchSpeedValue_axis0.setValue(self.my_drive.axis0.encoder.config.idx_search_speed)
self.spinBox_cprValue_axis0.setValue(self.my_drive.axis0.encoder.config.cpr)
self.spinBox_modeEncoderValue_axis0.setValue(self.my_drive.axis0.encoder.config.mode)
self.spinBox_offsetValue_axis0.setValue(self.my_drive.axis0.encoder.config.offset)
self.doubleSpinBox_offsetFloatValue_axis0.setValue(self.my_drive.axis0.encoder.config.offset_float)
self.doubleSpinBox_calibRangeValue_axis0.setValue(self.my_drive.axis0.encoder.config.calib_range)
self.doubleSpinBox_bandwidthValue_axis0.setValue(self.my_drive.axis0.encoder.config.bandwidth)
def scan_axis0_controller_config(self):
self.label_velSetpointValue_axis0.setText(str(self.my_drive.axis0.controller.vel_setpoint))
self.label_velIntegratorCurrent_axis0.setText(str(self.my_drive.axis0.controller.vel_integrator_current))
self.label_posSetpointValue_axis0.setText(str(self.my_drive.axis0.controller.pos_setpoint))
self.label_currentSetpointValue_axis0.setText(str(self.my_drive.axis0.controller.current_setpoint))
self.scan_axis0_controller_config_config()
def scan_axis0_controller_config_config(self):
self.doubleSpinBox_posGainValue_axis0.setValue(self.my_drive.axis0.controller.config.pos_gain)
self.doubleSpinBox_velGainValue_axis0.setValue(self.my_drive.axis0.controller.config.vel_gain)
self.doubleSpinBox_velIntegratorGainValue_axis0.setValue(self.my_drive.axis0.controller.config.vel_integrator_gain)
self.doubleSpinBox_velLimitValue_axis0.setValue(self.my_drive.axis0.controller.config.vel_limit)
self.spinBox_controlModeValue_axis0.setValue(self.my_drive.axis0.controller.config.control_mode)
def scan_axis0_motor_config(self):
self.scan_axis0_motor_config_config()
self.scan_axis0_motor_general_config()
self.scan_axis0_motor_currentControl_config()
def scan_axis0_motor_currentControl_config(self):
self.label_maxAllowedCurrentValue_axis0.setText(str(self.my_drive.axis0.motor.current_control.max_allowed_current))
self.label_ibusValue_axis0.setText(str(self.my_drive.axis0.motor.current_control.Ibus))
self.label_vCurrentControlIntegralDValue_axis0.setText(str(self.my_drive.axis0.motor.current_control.v_current_control_integral_d))
self.label_vCurrentControlIntegralQValue_axis0.setText(str(self.my_drive.axis0.motor.current_control.v_current_control_integral_q))
self.label_finalVAlphaValue_axis0.setText(str(self.my_drive.axis0.motor.current_control.final_v_alpha))
self.label_finalVBetaValue_axis0.setText(str(self.my_drive.axis0.motor.current_control.final_v_beta))
self.label_pGainValue_axis0.setText(str(self.my_drive.axis0.motor.current_control.p_gain))
self.label_iGainValue_axis0.setText(str(self.my_drive.axis0.motor.current_control.i_gain))
self.label_iqSetpointValue_axis0.setText(str(self.my_drive.axis0.motor.current_control.Iq_setpoint))
self.label_iqMeasuredValue_axis0.setText(str(self.my_drive.axis0.motor.current_control.Iq_measured))
def scan_axis0_motor_general_config(self):
self.label_drvFaultValue_axis0.setText(str(self.my_drive.axis0.motor.gate_driver.drv_fault))
self.label_dcCalibPhBValue_axis0.setText(str(self.my_drive.axis0.motor.DC_calib_phB))
self.label_dcCalibPhCValue_axis0.setText(str(self.my_drive.axis0.motor.DC_calib_phC))
self.label_motorErrorValue_axis0.setText(hex(self.my_drive.axis0.motor.error))
self.label_currentMeasPhCValue_axis0.setText(str(self.my_drive.axis0.motor.current_meas_phC))
if self.my_drive.axis0.motor.is_calibrated:
self.icon_isCalibratedValue_axis0.setPixmap(QtGui.QPixmap(ICON_TRUE))
else:
self.icon_isCalibratedValue_axis0.setPixmap(QtGui.QPixmap(ICON_FALSE))