Skip to content

Commit ab9b67b

Browse files
committedDec 10, 2014
Disable debug output in example by default.
1 parent bf50dd3 commit ab9b67b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎Adafruit_PWM_Servo_Driver/Servo_Example.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
# ===========================================================================
99

1010
# Initialise the PWM device using the default address
11-
# bmp = PWM(0x40, debug=True)
12-
pwm = PWM(0x40, debug=True)
11+
pwm = PWM(0x40)
12+
# Note if you'd like more debug output you can instead run:
13+
#pwm = PWM(0x40, debug=True)
1314

1415
servoMin = 150 # Min pulse length out of 4096
1516
servoMax = 600 # Max pulse length out of 4096

0 commit comments

Comments
 (0)