I'm trying to get a Servo motor running using the tutorial. I've followed all the steps and have successfully run sudo i2cdetect -y 1
, but when I try to run the servo example, I get this error.
pi@raspberrypi ~/Adafruit-Raspberry-Pi-Python-Code/Adafruit_PWM_Servo_Driver $ sudo python Servo_Example.py
Traceback (most recent call last):
File "Servo_Example.py", line 12, in <module>
pwm = PWM(0x40, debug=True)
File "/home/pi/Adafruit-Raspberry-Pi-Python-Code/Adafruit_PWM_Servo_Driver/Adafruit_PWM_Servo_Driver.py", line 30, in __init__
self.i2c = Adafruit_I2C(address, bus=smbus.SMBus(1))
NameError: global name 'smbus' is not defined

