#foamguy is31 help

1 messages ยท Page 1 of 1 (latest)

timber tartan
karmic lantern
timber tartan
#

so is the adafruit_is31fl3741.IS31FL3741_colorXY documentation not applicable in my case or has the RGBMatrixQT now supplanted it?

I know this is a new product so there will always be teething troubles with documentation - ican be quite a struggle for novices like myself sometimes to know what it is they are supposed to be using

karmic lantern
#

In general the resources I find most helpful when I get new hardware are:

- Learn guide for the product. This is great for pinouts and information about getting started with a device.

- Readthedocs for the library. This one is more of a comprehensive reference type resource that will list all of the classes and functions that you can use with the library.

- examples directory inside the library repo. There is always at least one example (usually it's shown in the learn guide as well). For some libraries there are additional examples that show more of the functionality.
timber tartan
# karmic lantern In general the resources I find most helpful when I get new hardware are: ``` - ...

Success both in taking my 1st small steps in using this wonderful new display & in an even smaller step in my understanding!!

My latest code ....

import board
import busio
import adafruit_is31fl3741
from adafruit_is31fl3741.adafruit_rgbmatrixqt import Adafruit_RGBMatrixQT

i2c = busio.I2C(board.GP9, board.GP8)





is31 = Adafruit_RGBMatrixQT(i2c,allocate=adafruit_is31fl3741.PREFER_BUFFER)

is31.set_led_scaling(0xFF)  # turn on LEDs all the way
is31.global_current = 0xFF  # set current to max
is31.enable = True  # enable!


while True:

    is31.fill(0x00ff00)
    is31.show()
    time.sleep(0.5)
    is31.fill(0x0000ff)
    is31.show()
    time.sleep(0.5)
    is31.fill(0xff0000)
    is31.show()
    time.sleep(0.5)

now works & i thnk a glimmer of understanding is forming in by brain....

will look through & investigate the Adafruit_RGBMatrixQT class - hope it won't be too look before there is some documentation for it - wish i had the ability to help with that..

None iof this small victory would have been possible without your kindness & patience

Big Thanks!!!

karmic lantern
#

Nice! happy to hear it on both fronts.

#

You are welcome. Happy tinkering! ๐Ÿ˜„

timber tartan
lofty steppe
timber tartan
lofty steppe
#

That's how it starts. The steps get bigger with time. ๐Ÿ™‚

timber tartan
#

@lofty steppe @karmic lantern

1st thing I always do with new sparkly things is make a simulation of a Big Clive Supercomputer....

The trail just got 1 tiny step shorter ...

karmic lantern
#

Awesome! that looks great. Good job.