In MicroPython I am trying to create an XOR plotting routine and was comparing two color objects but couldn't get that to work, so I tried to view the contents of the color object:
`clockForeground = color.rgb(255, 255, 0) # foreground is yellow
temp = str(type(clockForeground))`
I couldn't get anything to come out, then removed the I/O but it still crashes when str() is used on the type() function.