forked from RonanValadez34/DPI_Computer_UI
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStepperStartupScreen.kv
More file actions
556 lines (488 loc) · 14.5 KB
/
StepperStartupScreen.kv
File metadata and controls
556 lines (488 loc) · 14.5 KB
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
<StepperStartupScreen>:
#: import time __main__.time
name: 'stepperStartup'
FloatLayout:
size_hint: None, None
# top row of buttons in order left to right:
DPEAButton:
# button to home the motor
id: home_motor
size: 100, 100
center_x: root.width * 0.05
center_y: root.height * 0.95
color: 0.035, 0.152, 0.725, 1
text: "Home the motor"
on_press: root.homeMotor()
DPEAButton:
#Button to change stepper_number to 0
id: motor_0
size: 100, 100
center_x: root.width * 0.15
center_y: root.height * 0.95
color: 0.035, 0.152, 0.725, 1
text: "Motor 0"
on_press: root.selectStepper0()
DPEAButton:
#Button to change stepper_number to 1
id: motor_1
size: 100, 100
center_x: root.width * 0.25
center_y: root.height * 0.95
color: 0.035, 0.152, 0.725, 1
text: "Motor 1"
on_press: root.selectStepper1()
DPEAButton:
#Button to change stepper_number to 2
id: motor_2
size: 100, 100
center_x: root.width * 0.35
center_y: root.height * 0.95
color: 0.035, 0.152, 0.725, 1
text: "Motor 2"
on_press: root.selectStepper2()
DPEAButton:
# button to change to StepperScreen(Test stepper movements)
id: test_button
text: 'Test Stepper movements'
size: 100, 100
x: root.width * 0.85
y: root.height * 0.90
color: 0, 1, 0, 1
on_press: app.root.current = "stepper"
DPEAButton:
# Quit button
size: 100, 100
center_x: root.width * 0.95
center_y: root.height * 0.95
background_color: 0,0,0,0
color: 0.035, 0.152, 0.725, 1
text: "Quit"
on_press: root.exit_program()
# second row of buttons from left to right:
DPEAButton:
# button to enable all motors
id: enable_motor
size: 100, 100
center_x: root.width * 0.05
center_y: root.height * 0.8
color: 0.035, 0.152, 0.725, 1
text: "Enable all motors"
on_press: root.enableMotors()
DPEAButton:
# button to select rotational homing
id: rotational_homing
size: 100, 100
center_x: root.width * 0.15
center_y: root.height * 0.8
color: 0.035, 0.152, 0.725, 1
text: "Rotational Homing"
on_press: root.setRotationalHoming()
DPEAButton:
# button to select linear homing
id: linear_homing
size: 100, 100
center_x: root.width * 0.25
center_y: root.height * 0.8
color: 0.035, 0.152, 0.725, 1
text: "Linear Homing"
on_press: root.setLinearHoming()
DPEAButton:
# button to set direction to CCW
id: CCW_homing
size: 100, 100
center_x: root.width * 0.35
center_y: root.height * 0.8
color: 0.035, 0.152, 0.725, 1
text: "CCW to Home"
on_press: root.setHomingDirectionToCCW()
DPEAButton:
# button to set direction to CCW
id: CW_homing
size: 100, 100
center_x: root.width * 0.45
center_y: root.height * 0.8
color: 0.035, 0.152, 0.725, 1
text: "Cw to Home"
on_press: root.setHomingDirectionToCW()
DPEAButton:
# button to set distance units in steps
id: steps_homing
size: 100, 100
center_x: root.width * 0.55
center_y: root.height * 0.8
color: 0.035, 0.152, 0.725, 1
text: "Home in Steps"
on_press: root.setHomingUnitsToSteps()
DPEAButton:
# button to set distance units in revolutions
id: revolutions_homing
size: 100, 100
center_x: root.width * 0.65
center_y: root.height * 0.8
color: 0.035, 0.152, 0.725, 1
text: "Home in Revolutions"
on_press: root.setHomingUnitsToRevolutions()
DPEAButton:
# button to set distance units in millimeters
id: millimeters_homing
size: 100, 100
center_x: root.width * 0.75
center_y: root.height * 0.8
color: 0.035, 0.152, 0.725, 1
text: "Home in Millimeters"
on_press: root.setHomingUnitsToMillimeters()
DPEAButton:
# Has Transmission button
id: transmission
size: 100, 100
center_x: root.width * 0.85
center_y: root.height * 0.8
color: 0.035, 0.152, 0.725, 1
text: "Has Transmission"
on_press: root.Transmission()
DPEAButton:
#Go back button
size: 100, 100
center_x: root.width * 0.95
center_y: root.height * 0.8
color: 0.035, 0.152, 0.725, 1
text: "Go back"
on_press: root.transition_back()
Label:
# Directions label
id: page_info
text: 'READ BEFORE USING:\nAn * means button is selected\nDefault Microstepping set to 16(3200 steps/rev)\nTo change Microstepping, go to next screen\n1. Enable Motors\n2. Select Motor\n 3. Select Direction to Home\n4. Select Homing Type\n5. Select Homing Units\n6. Select Has Transmission if applicable\n7. Enter values\n8. Click Home the Motor\nPress the Test Stepper Movements button\n(Top right corner)\nto change to another page with more movements'
font_size: 25
center_x: root.width * 0.2
y: root.height * 0.0
color: 0.0, 0.0, 0.0, 1
Label:
# label for title
text: 'Stepper Home Screen'
font_size: 40
center_x: root.width * 0.05
y: root.height * 0.45
color: 0.0, 0.0, 0.0, 1
Label:
# hidden label, appears when an error occurs
id: error_stepper_home
text: ''
font_size: 40
center_x: root.width * 0.0
y: root.height * -0.45
color: 0.0, 0.0, 0.0, 1
#Keyboard buttons for setting home speed
DPEAButton:
text: '1'
id: one
center_x: root.center_x - 350
center_y: root.center_y + 60
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setHomeSpeed(1)
DPEAButton:
text: '2'
id: two
center_x: root.center_x - 250
center_y: root.center_y + 60
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setHomeSpeed(2)
DPEAButton:
text: '3'
id: three
center_x: root.center_x - 150
center_y: root.center_y + 60
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setHomeSpeed(3)
DPEAButton:
text: '4'
id: four
center_x: root.center_x - 350
center_y: root.center_y - 40
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setHomeSpeed(4)
DPEAButton:
text: '5'
id: five
center_x: root.center_x - 250
center_y: root.center_y - 40
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setHomeSpeed(5)
DPEAButton:
text: '6'
id: six
center_x: root.center_x - 150
center_y: root.center_y - 40
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setHomeSpeed(6)
DPEAButton:
text: '7'
id: seven
center_x: root.center_x - 350
center_y: root.center_y - 140
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setHomeSpeed(7)
DPEAButton:
text: '8'
id: eight
center_x: root.center_x - 250
center_y: root.center_y - 140
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setHomeSpeed(8)
DPEAButton:
text: '9'
id: nine
center_x: root.center_x - 150
center_y: root.center_y - 140
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setHomeSpeed(9)
DPEAButton:
text: '0'
id: zero
center_x: root.center_x - 250
center_y: root.center_y - 240
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setHomeSpeed(0)
DPEAButton:
text: 'Del'
id: backspace
center_x: root.center_x - 350
center_y: root.center_y - 240
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.removeSpeedNumber()
Label:
# label for inputted speed to home
id: home_speed
text: 'Home speed: '
font_size: 25
center_x: root.width * -0.15
y: root.height * -0.30
color: 0.0, 0.0, 0.0, 1
Label:
# label for home speed keyboard
id: home_info
text: 'Enter Home speed:'
font_size: 25
center_x: root.width * -0.1
y: root.height * 0.15
color: 0.0, 0.0, 0.0, 1
#keyboard associated with home max steps
DPEAButton:
text: '1'
id: one
center_x: root.center_x - 850
center_y: root.center_y + 60
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setMaxDistance(1)
DPEAButton:
text: '2'
id: two
center_x: root.center_x -750
center_y: root.center_y + 60
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setMaxDistance(2)
DPEAButton:
text: '3'
id: three
center_x: root.center_x - 650
center_y: root.center_y + 60
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setMaxDistance(3)
DPEAButton:
text: '4'
id: four
center_x: root.center_x - 850
center_y: root.center_y - 40
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setMaxDistance(4)
DPEAButton:
text: '5'
id: five
center_x: root.center_x -750
center_y: root.center_y - 40
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setMaxDistance(5)
DPEAButton:
text: '6'
id: six
center_x: root.center_x -650
center_y: root.center_y - 40
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setMaxDistance(6)
DPEAButton:
text: '7'
id: seven
center_x: root.center_x - 850
center_y: root.center_y - 140
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setMaxDistance(7)
DPEAButton:
text: '8'
id: eight
center_x: root.center_x -750
center_y: root.center_y - 140
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setMaxDistance(8)
DPEAButton:
text: '9'
id: nine
center_x: root.center_x -650
center_y: root.center_y - 140
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setMaxDistance(9)
DPEAButton:
text: '0'
id: zero
center_x: root.center_x -750
center_y: root.center_y - 240
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setMaxDistance(0)
DPEAButton:
text: 'Del'
id: backspace
center_x: root.center_x - 850
center_y: root.center_y - 240
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.removeDistanceNumber()
Label:
# label for inputted home max distance
id: home_max_distance
text: 'Home Max Distance:\n ' +root.homeMaxDistance
font_size: 25
center_x: root.width * -0.38
y: root.height * -0.30
color: 0.0, 0.0, 0.0, 1
Label:
# label for home max distance keyboard
id: home_max_distance_info
text: 'Enter Max Distance to Home'
font_size: 25
center_x: root.width * -0.35
y: root.height * 0.15
color: 0.0, 0.0, 0.0, 1
# keyboard for gear ratio
DPEAButton:
text: '1'
id: one
center_x: root.center_x + 650
center_y: root.center_y + 60
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setGearRatio(1)
DPEAButton:
text: '2'
id: two
center_x: root.center_x + 750
center_y: root.center_y + 60
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setGearRatio(2)
DPEAButton:
text: '3'
id: three
center_x: root.center_x + 850
center_y: root.center_y + 60
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setGearRatio(3)
DPEAButton:
text: '4'
id: four
center_x: root.center_x + 650
center_y: root.center_y - 40
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setGearRatio(4)
DPEAButton:
text: '5'
id: five
center_x: root.center_x + 750
center_y: root.center_y - 40
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setGearRatio(5)
DPEAButton:
text: '6'
id: six
center_x: root.center_x + 850
center_y: root.center_y - 40
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setGearRatio(6)
DPEAButton:
text: '7'
id: seven
center_x: root.center_x + 650
center_y: root.center_y - 140
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setGearRatio(7)
DPEAButton:
text: '8'
id: eight
center_x: root.center_x + 750
center_y: root.center_y - 140
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setGearRatio(8)
DPEAButton:
text: '9'
id: nine
center_x: root.center_x + 850
center_y: root.center_y - 140
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setGearRatio(9)
DPEAButton:
text: '0'
id: zero
center_x: root.center_x + 750
center_y: root.center_y - 240
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.setGearRatio(0)
DPEAButton:
text: 'Del'
id: backspace
center_x: root.center_x + 650
center_y: root.center_y - 240
color: 0.019, 0.337, 1, 1
size: 80, 80
on_press: root.removeGearRatio()
Label:
# label for inputted gear ratio
id: gearRatio_value
text: 'Gear Ratio: ' + root.gearRatio
font_size: 25
center_x: root.width * 0.38
y: root.height * -0.30
color: 0.0, 0.0, 0.0, 1
Label:
# label for gear ratio keyboard
id: gearRatio_info
text: 'Enter Gear Ratio Between\nStepper and Transmission'
font_size: 25
center_x: root.width * 0.42
y: root.height * 0.15
color: 0.0, 0.0, 0.0, 1