-
Notifications
You must be signed in to change notification settings - Fork 5
/
redboard.py
942 lines (679 loc) · 22.1 KB
/
redboard.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
#Python library for the Red Robotics 'RedBoard' Raspberry Pi add on robotics boards.
#Simple python commands for controlling motors, servos and Neopixels (WS2812B).
#Version 2.2 12/01/2021
# Author: Neil Lambeth. neil@redrobotics.co.uk @NeilRedRobotics
from __future__ import print_function # Make print work with python 2 & 3
print('Please wait while modules load...')
import time
import pigpio
import smbus
import subprocess
#Setup I2C
try:
bus = smbus.SMBus(1)
address = 0x48
except FileNotFoundError:
print('')
print('')
print('I2C not enabled!')
print('Enable I2C in raspi-config')
# Setup GPIO
servo_7 = 7
servo_8 = 8
servo_9 = 9
servo_10 = 10
servo_11 = 11
servo_5 = 5
servo_6 = 6
servo_13 = 13
servo_27 = 27
servo_20 = 20
servo_21 = 21
servo_22 = 22
dira = 23
pwma = 18
dirb = 24
pwmb = 25
redled = 26
greenled = 16
blueled = 19
# Setup Variables
FWD = 1
BWD = 0
rMotor = 0
lMotor = 0
RM = 0
LM = 0
INPUT = 1
OUTPUT = 0
#MX2
MX2_address = 0x30
motor3 = 0x30
motor4 = 0x40
speed3 = 0
speed4 = 0
speed = 0
fwd = 1
rev = 0
dir3 = 0
dir4 = 0
pi = pigpio.pi()
pi.set_mode(dira, pigpio.OUTPUT)
pi.set_mode(pwma, pigpio.OUTPUT)
pi.set_mode(dirb, pigpio.OUTPUT)
pi.set_mode(pwmb, pigpio.OUTPUT)
pi.write(dira, 0)
pi.write(dirb, 0)
pi.set_PWM_frequency(pwma, 1000)
pi.set_PWM_frequency(pwmb, 1000)
pi.set_mode(servo_20, pigpio.OUTPUT)
pi.set_mode(servo_21, pigpio.OUTPUT)
print("Redboard Library V2.2 loaded")
#-----------------------------------------------------
#GPIO
def output_pin(p):
pi.set_mode(p, pigpio.OUTPUT)
def input_pin(p):
pi.set_mode(p, pigpio.INPUT)
def pull_up(p):
pi.set_pull_up_down(p, pigpio.PUD_UP)
def pull_down(p):
pi.set_pull_up_down(p, pigpio.PUD_DOWN)
def setPin(p, state):
pi.write(p, state)
def readPin(p):
r = pi.read(p)
return r
#-----------------------------------------------------
#LEDs
def red_on():
pi.write(redled, 1)
def red_off():
pi.write(redled, 0)
def green_on():
pi.write(greenled, 1)
def green_off():
pi.write(greenled, 0)
def blue_on():
pi.write(blueled, 1)
def blue_off():
pi.write(blueled, 0)
def white_on():
pi.write(redled, 1)
pi.write(greenled, 1)
pi.write(blueled, 1)
def white_off():
pi.write(redled, 0)
pi.write(greenled, 0)
pi.write(blueled, 0)
def cyan_on():
#pi.write(redled, 1)
pi.write(greenled, 1)
pi.write(blueled, 1)
def cyan_off():
#pi.write(redled, 0)
pi.write(greenled, 0)
pi.write(blueled, 0)
def magenta_on():
pi.write(redled, 1)
#pi.write(greenled, 1)
pi.write(blueled, 1)
def magenta_off():
pi.write(redled, 0)
#pi.write(greenled, 0)
pi.write(blueled, 0)
def yellow_on():
pi.write(redled, 1)
pi.write(greenled, 1)
#pi.write(blueled, 1)
def yellow_off():
pi.write(redled, 0)
pi.write(greenled, 0)
#pi.write(blueled, 0)
def led_off():
pi.write(redled, 0)
pi.write(greenled, 0)
pi.write(blueled, 0)
#----------------------------------------------------------
# ADC
def readAdc_0():
try:
cmd = "python3 /home/pi/RedBoard/system/bat_check.py"
bat = float(subprocess.check_output(cmd, shell = True ).decode())
#print ('Battery Voltage =',bat)
return bat
except IOError:
pass
def readAdc_1():
bus.write_i2c_block_data(address, 0x01, [0xd3, 0x83])
time.sleep(0.1)
voltage1 = bus.read_i2c_block_data(address,0x00,2)
conversion_1 = (voltage1[1])+(voltage1[0]<<8)
volts_1 = conversion_1 / 7891 # 3.3 Volts
return round(volts_1,2)
def readAdc_2():
bus.write_i2c_block_data(address, 0x01, [0xe3, 0x83])
time.sleep(0.1)
voltage2 = bus.read_i2c_block_data(address,0x00,2)
conversion_2 = (voltage2[1])+(voltage2[0]<<8)
volts_2 = conversion_2 / 7891 # 3.3 Volts
return round(volts_2,2)
def readAdc_3():
bus.write_i2c_block_data(address, 0x01, [0xf3, 0x83])
time.sleep(0.1)
voltage3 = bus.read_i2c_block_data(address,0x00,2)
conversion_3 = (voltage3[1])+(voltage3[0]<<8)
volts_3 = conversion_3 / 7891 # 3.3 Volts
return round(volts_3,2)
#----------------------------------------------------------
# Servos
def mapServo(sPos):
mapS = (int(sPos * 7) + 600)
return mapS
# New Map Servo
def mServo(sPin,sPos, min = 600, max = 2400):
mapS = (sPos/255)
mapS = int((mapS * (max-min)+min))
pi.set_servo_pulsewidth(sPin, mapS)
print("Servo",sPin,"=",mapS)
#----------------------------------------------------------
def servo20(pos0):
if pos0 >= 0 and pos0 <91:
print ("servo20 =",pos0)
pos0 = 1500 - (pos0 * 11.1)
#print (pos0)
pi.set_servo_pulsewidth(servo_20, pos0)
elif pos0 < 0 and pos0 >-91:
print ("servo20 =",pos0)
pos0 = (abs(pos0) * 11.1) + 1500
#print (pos0)
pi.set_servo_pulsewidth(servo_20, pos0)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo20_P(pos0):
if pos0 >499 and pos0 <2501:
print ("servo20 =",pos0)
pi.set_servo_pulsewidth(servo_20, pos0)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo20_off():
pi.set_servo_pulsewidth(servo_20, 0)
print ("servo20 off")
#-----------------------------------------------------
#-----------------------------------------------------
def servo21(pos1):
if pos1 >= 0 and pos1 <91:
print ("servo21 =",pos1)
pos1 = 1500 - (pos1 * 11.1)
#print (pos1)
pi.set_servo_pulsewidth(servo_21, pos1)
elif pos1 < 0 and pos1 >-91:
print ("servo21 =",pos1)
pos1 = (abs(pos1) * 11.1) + 1500
#print (pos1)
pi.set_servo_pulsewidth(servo_21, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo21_P(pos1):
if pos1 >499 and pos1 <2501:
print ("servo21 =",pos1)
pi.set_servo_pulsewidth(servo_21, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo21_off():
pi.set_servo_pulsewidth(servo_21, 0)
print ("servo21 off")
#-----------------------------------------------------
#-----------------------------------------------------
def servo22(pos1):
if pos1 >= 0 and pos1 <91:
print ("servo22 =",pos1)
pos1 = 1500 - (pos1 * 11.1)
#print (pos1)
pi.set_servo_pulsewidth(servo_22, pos1)
elif pos1 < 0 and pos1 >-91:
print ("servo22 =",pos1)
pos1 = (abs(pos1) * 11.1) + 1500
#print (pos1)
pi.set_servo_pulsewidth(servo_22, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo22_P(pos1):
if pos1 >499 and pos1 <2501:
print ("servo22 =",pos1)
pi.set_servo_pulsewidth(servo_22, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo22_off():
pi.set_servo_pulsewidth(servo_22, 0)
print ("servo22 off")
#-----------------------------------------------------
#-----------------------------------------------------
def servo5(pos1):
if pos1 >= 0 and pos1 <91:
print ("servo5 =",pos1)
pos1 = 1500 - (pos1 * 11.1)
#print (pos1)
pi.set_servo_pulsewidth(servo_5, pos1)
elif pos1 < 0 and pos1 >-91:
print ("servo5 =",pos1)
pos1 = (abs(pos1) * 11.1) + 1500
#print (pos1)
pi.set_servo_pulsewidth(servo_5, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo5_P(pos1):
if pos1 >499 and pos1 <2501:
print ("servo5 =",pos1)
pi.set_servo_pulsewidth(servo_5, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo5_off():
pi.set_servo_pulsewidth(servo_5, 0)
print ("servo5 off")
#-----------------------------------------------------
#-----------------------------------------------------
def servo6(pos1):
if pos1 >= 0 and pos1 <91:
print ("servo6 =",pos1)
pos1 = 1500 - (pos1 * 11.1)
#print (pos1)
pi.set_servo_pulsewidth(servo_6, pos1)
elif pos1 < 0 and pos1 >-91:
print ("servo6 =",pos1)
pos1 = (abs(pos1) * 11.1) + 1500
#print (pos1)
pi.set_servo_pulsewidth(servo_6, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo6_P(pos1):
if pos1 >499 and pos1 <2501:
print ("servo6 =",pos1)
pi.set_servo_pulsewidth(servo_6, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo6_off():
pi.set_servo_pulsewidth(servo_6, 0)
print ("servo6 off")
#-----------------------------------------------------
#-----------------------------------------------------
def servo13(pos1):
if pos1 >= 0 and pos1 <91:
print ("servo13 =",pos1)
pos1 = 1500 - (pos1 * 11.1)
#print (pos1)
pi.set_servo_pulsewidth(servo_13, pos1)
elif pos1 < 0 and pos1 >-91:
print ("servo13 =",pos1)
pos1 = (abs(pos1) * 11.1) + 1500
#print (pos1)
pi.set_servo_pulsewidth(servo_13, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo13_P(pos1):
if pos1 >499 and pos1 <2501:
print ("servo13 =",pos1)
pi.set_servo_pulsewidth(servo_13, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo13_off():
pi.set_servo_pulsewidth(servo_13, 0)
print ("servo13 off")
#-----------------------------------------------------
#-----------------------------------------------------
def servo27(pos1):
if pos1 >= 0 and pos1 <91:
print ("servo27 =",pos1)
pos1 = 1500 - (pos1 * 11.1)
#print (pos1)
pi.set_servo_pulsewidth(servo_27, pos1)
elif pos1 < 0 and pos1 >-91:
print ("servo27 =",pos1)
pos1 = (abs(pos1) * 11.1) + 1500
#print (pos1)
pi.set_servo_pulsewidth(servo_27, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo27_P(pos1):
if pos1 >499 and pos1 <2501:
print ("servo27 =",pos1)
pi.set_servo_pulsewidth(servo_27, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo27_off():
pi.set_servo_pulsewidth(servo_27, 0)
print ("servo27 off")
#-----------------------------------------------------
#-----------------------------------------------------
def servo7(pos1):
if pos1 >= 0 and pos1 <91:
print ("servo7 =",pos1)
pos1 = 1500 - (pos1 * 11.1)
#print (pos1)
pi.set_servo_pulsewidth(servo_7, pos1)
elif pos1 < 0 and pos1 >-91:
print ("servo7 =",pos1)
pos1 = (abs(pos1) * 11.1) + 1500
#print (pos1)
pi.set_servo_pulsewidth(servo_7, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo7_P(pos1):
if pos1 >499 and pos1 <2501:
print ("servo7 =",pos1)
pi.set_servo_pulsewidth(servo_7, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo7_off():
pi.set_servo_pulsewidth(servo_7, 0)
print ("servo7 off")
#-----------------------------------------------------
#-----------------------------------------------------
def servo8(pos1):
if pos1 >= 0 and pos1 <91:
print ("servo8 =",pos1)
pos1 = 1500 - (pos1 * 11.1)
#print (pos1)
pi.set_servo_pulsewidth(servo_8, pos1)
elif pos1 < 0 and pos1 >-91:
print ("servo8 =",pos1)
pos1 = (abs(pos1) * 11.1) + 1500
#print (pos1)
pi.set_servo_pulsewidth(servo_8, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo8_P(pos1):
if pos1 >499 and pos1 <2501:
print ("servo8 =",pos1)
pi.set_servo_pulsewidth(servo_8, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo8_off():
pi.set_servo_pulsewidth(servo_8, 0)
print ("servo8 off")
#-----------------------------------------------------
#-----------------------------------------------------
def servo9(pos1):
if pos1 >= 0 and pos1 <91:
print ("servo9 =",pos1)
pos1 = 1500 - (pos1 * 11.1)
#print (pos1)
pi.set_servo_pulsewidth(servo_9, pos1)
elif pos1 < 0 and pos1 >-91:
print ("servo9 =",pos1)
pos1 = (abs(pos1) * 11.1) + 1500
#print (pos1)
pi.set_servo_pulsewidth(servo_9, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo9_P(pos1):
if pos1 >499 and pos1 <2501:
print ("servo9 =",pos1)
pi.set_servo_pulsewidth(servo_9, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo9_off():
pi.set_servo_pulsewidth(servo_9, 0)
print ("servo9 off")
#-----------------------------------------------------
#-----------------------------------------------------
def servo10(pos1):
if pos1 >= 0 and pos1 <91:
print ("servo10 =",pos1)
pos1 = 1500 - (pos1 * 11.1)
#print (pos1)
pi.set_servo_pulsewidth(servo_10, pos1)
elif pos1 < 0 and pos1 >-91:
print ("servo10 =",pos1)
pos1 = (abs(pos1) * 11.1) + 1500
#print (pos1)
pi.set_servo_pulsewidth(servo_10, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo10_P(pos1):
if pos1 >499 and pos1 <2501:
print ("servo10 =",pos1)
pi.set_servo_pulsewidth(servo_10, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo10_off():
pi.set_servo_pulsewidth(servo_10, 0)
print ("servo10 off")
#-----------------------------------------------------
#-----------------------------------------------------
def servo11(pos1):
if pos1 >= 0 and pos1 <91:
print ("servo11 =",pos1)
pos1 = 1500 - (pos1 * 11.1)
#print (pos1)
pi.set_servo_pulsewidth(servo_11, pos1)
elif pos1 < 0 and pos1 >-91:
print ("servo11 =",pos1)
pos1 = (abs(pos1) * 11.1) + 1500
#print (pos1)
pi.set_servo_pulsewidth(servo_11, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo11_P(pos1):
if pos1 >499 and pos1 <2501:
print ("servo11 =",pos1)
pi.set_servo_pulsewidth(servo_11, pos1)
else:
print ("Out Of Range!")
#-----------------------------------------------------
def servo11_off():
pi.set_servo_pulsewidth(servo_11, 0)
print ("servo11 off")
#-----------------------------------------------------
#-----------------------------------------------------
# Motors
def M1(lm):
if lm > 100: # Make sure the value sent to the motor is 100 or less
print("Out of range")
lm = 100
elif lm < -100: # Make sure the value sent to the motor is 100 or less
print("Out of range")
lm = -100
lMotor = lm * 2.55
# Set left motor direction
if lMotor > 0:
pi.write(dirb, FWD) # Go forwards
LM = lMotor
#print("Motor1 =",lm,"\r")
#print("Actual = ",LM)
elif lMotor < 0:
pi.write(dirb, BWD) # Go backwards
LM = abs(lMotor) # Make positive
#print("Motor1 =",lm,"\r")
#print("Actual = -",LM)
else:
#print("M1 Stop\r")
LM = 0 # Stop
pi.set_PWM_dutycycle(pwmb,LM)
#-----------------------------------------------------
def M1_8bit(lm):
if lm > 255: # Make sure the value sent to the motor is 255 or less
print("Out of range")
lm = 255
elif lm < -255: # Make sure the value sent to the motor is 255 or less
print("Out of range")
lm = -255
# Set left motor direction
if lm > 0:
pi.write(dirb, FWD) # Go forwards
LM = lm
#print("Motor1 =",lm,"\r")
#print("Actual = ",LM)
elif lm < 0:
pi.write(dirb, BWD) # Go backwards
LM = abs(lm) # Make positive
#print("Motor1 =",lm,"\r")
#print("Actual = -",LM)
else:
#print("M1 Stop\r")
LM = 0 # Stop
pi.set_PWM_dutycycle(pwmb,LM)
#-----------------------------------------------------
def M2(rm):
if rm > 100: # Make sure the value sent to the motor is 100 or less
print("Out of range")
rm = 100
elif rm < -100: # Make sure the value sent to the motor is 100 or less
print("Out of range")
rm = -100
rMotor = rm * 2.55
# Set right motor direction
if rMotor > 0:
pi.write(dira, FWD) # Go forwards
RM = rMotor
#print("Motor2 =",rm,"\r")
#print("Actual = ",RM)
elif rMotor < 0:
pi.write(dira, BWD) # Go backwards
RM = abs(rMotor) # Make positive
#print("Motor2 =",rm,"\r")
#print("Actual = -",RM)
else:
#print("M2 Stop\r")
RM = 0 # Stop
pi.set_PWM_dutycycle(pwma,RM)
#-----------------------------------------------------
def M2_8bit(rm):
if rm > 255: # Make sure the value sent to the motor is 255 or less
print("Out of range")
rm = 255
elif rm < -255: # Make sure the value sent to the motor is 255 or less
print("Out of range")
rm = -255
# Set left motor direction
if rm > 0:
pi.write(dira, FWD) # Go forwards
RM = rm
#print("Motor1 =",rm,"\r")
#print("Actual = ",RM)
elif rm < 0:
pi.write(dira, BWD) # Go backwards
pi.write(dira, BWD) # Go backwards
RM = abs(rm) # Make positive
#print("Motor1 =",rm,"\r")
#print("Actual = -",RM)
else:
#print("M1 Stop\r")
RM = 0 # Stop
pi.set_PWM_dutycycle(pwma,RM)
#-----------------------------------------------------
# MX2
def M3(speed3):
if speed3 > 100: # Make sure the value sent to the motor is 100 or less
print("Out of range")
speed3 = 100
elif speed3 < -100: # Make sure the value sent to the motor is 100 or less
print("Out of range")
speed3 = -100
speed3 = int(speed3 * 2.55)
if speed3 >= 0: # Forwards
print('Forwards')
dir3 = 1
elif speed3 < 0: # Backwards
print('Backwards')
speed3 = abs(speed3) # Make positive
dir3 = 0
print (speed3)
try:
bus.write_i2c_block_data(MX2_address, motor3, [dir3, speed3])
except OSError:
print('Error-------------------------------------------------------')
pass
def M3_8bit(speed3):
if speed3 > 255: # Make sure the value sent to the motor is 255 or less
print("Out of range")
speed3 = 255
elif speed3 < -255: # Make sure the value sent to the motor is 255 or less
print("Out of range")
speed3 = -255
if speed3 >= 0: # Forwards
print('Forwards')
dir3 = 1
elif speed3 < 0: # Backwards
print('Backwards')
speed3 = abs(speed3) # Make positive
dir3 = 0
print (speed3)
try:
bus.write_i2c_block_data(MX2_address, motor3, [dir3, speed3])
pass
except OSError:
print('Error-------------------------------------------------------')
pass
#-----------------------------------------------------
def M4(speed4):
if speed4 > 100: # Make sure the value sent to the motor is 100 or less
print("Out of range")
speed4 = 100
elif speed4 < -100: # Make sure the value sent to the motor is 100 or less
print("Out of range")
speed4 = -100
speed4 = int(speed4 * 2.55)
if speed4 >= 0: # Forwards
print('Forwards')
dir4 = 1
elif speed4 < 0: # Backwards
print('Backwards')
speed4 = abs(speed4) # Make positive
dir4 = 0
print (speed4)
try:
bus.write_i2c_block_data(MX2_address, motor4, [dir4, speed4])
except OSError:
print('Error-------------------------------------------------------')
pass
def M4_8bit(speed4):
if speed4 > 255: # Make sure the value sent to the motor is 255 or less
print("Out of range")
speed4 = 255
elif speed4 < -255: # Make sure the value sent to the motor is 255 or less
print("Out of range")
speed4 = -255
if speed4 >= 0: # Forwards
print('Forwards')
dir4 = 1
elif speed4 < 0: # Backwards
print('Backwards')
speed4 = abs(speed4) # Make positive
dir4 = 0
print (speed4)
try:
bus.write_i2c_block_data(MX2_address, motor4, [dir4, speed4])
except OSError:
print('Error-------------------------------------------------------')
pass
#-----------------------------------------------------
def Stop():
pi.set_PWM_dutycycle(pwma,0)
pi.set_PWM_dutycycle(pwmb,0)
pi.set_mode(pwma, pigpio.INPUT)
pi.set_mode(pwmb, pigpio.INPUT)
pi.stop()