Projekt Litsimaja - Lapikute tagatoa seintele programmeeritavad ARGB ribad
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
siinus d135c8c24f Add second ticker program 4 years ago
docs Add worklog 5 years ago
pyleds Add second ticker program 4 years ago
.gitignore Add TKinter Visualizer Emulator(Slow but works) 4 years ago
LICENSE Initial commit 5 years ago
README.md Improved README 4 years ago

README.md

litsimaja

Projekt Litsimaja - Lapikute tagatoa seintele programmeeritavad ARGB ribad

Running the program

python run.py

Running with emulation

This is mainly for testing, development.

In lib/Litsimaja.py change the following:

# from lib.strip.TkinterStrip import TkinterStrip

    def __init__(self):
        self._strip = PixelStrip(290, 18, 800000, 10, False, 255, 0, 4104)

to

from lib.strip.TkinterStrip import TkinterStrip

    def __init__(self):
        self._strip = TkinterStrip(290, 18, 800000, 10, False, 255, 0, 4104)

Now when you run the program, you will see a Tkinter window pop up with a rectangle simulating the LED strip.

Don't commit this change.