We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 990bc77 + 43b7cee commit 86d4766Copy full SHA for 86d4766
1 file changed
PythonClient/car/hello_car.py
@@ -41,12 +41,12 @@
41
car_controls.is_manual_gear = False; # change back gear to auto
42
car_controls.manual_gear = 0
43
44
- # apply breaks
+ # apply brakes
45
car_controls.brake = 1
46
client.setCarControls(car_controls)
47
- print("Apply break")
+ print("Apply brakes")
48
time.sleep(3) # let car drive a bit
49
- car_controls.brake = 0 #remove break
+ car_controls.brake = 0 #remove brake
50
51
# get camera images from the car
52
responses = client.simGetImages([
0 commit comments