Maybe some extra input would help. I get RuntimeError: Problem with the Cape Manager, when I run:
import Adafruit_BBIO.PWM as PWM
import time
red = "P8_13"
green = "P8_19"
blue = "P9_14"
PWM.start(red, 0)
PWM.start(blue, 0)
PWM.start(green, 0)
def fade(colorA, colorB, ignore_color):
PWM.set_duty_cycle(ignore_color, 100)
for i in range(0, 100):
PWM.set_duty_cycle(colorA, i)
PWM.set_duty_cycle(colorB, 100-i)
time.sleep(0.05)
while True:
fade(red, green, blue)
fade(green, blue, red)
fade(blue, red, green)
I have set cape_enable=bone_capemgr.enable_partno= to enable.
Seth
P.S. If you know of what mistake I am making in my setup of the BBB with regards to the Cape Manager, please try to explain or I will keep trying (as usual). Cool!