hi everyone
I am tried to program my mbot ranger with python
I import megapi in my python program every thing workfine
I would like to turn on just 3 led with this fonction
rgbLedDisplay ( port, slot, index, r, g, b )
so my script is like that
rgbLedDisplay ( Ledport, Ledslot, 1, 0, 0, 200)
rgbLedDisplay ( Ledport, Ledslot, 2, 0, 0, 200)
rgbLedDisplay ( Ledport, Ledslot, 3, 0, 0, 200)
only the third led keep on
the other turn on and off directly
I would like keep them on
how can I do it?