Skip to content

Commit

Permalink
misc local changes
Browse files Browse the repository at this point in the history
  • Loading branch information
saerdnaer committed Feb 26, 2017
1 parent 7fae72b commit 5fba3d7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion animations/blackAllTheThings.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,18 @@
acabsl.update()

def set_all(r,g,b):
set_wall(r,g,b)
set_decke(r,g,b)

def set_wall(r,g,b):
acabsl.set_target("127.0.0.1",6002)
for w in range(acabsl.NOOFWALLS):
for x in range(acabsl.WALLSIZEX):
for y in range(acabsl.WALLSIZEY):
acabsl.send(x,y,r,g,b,1,w)
acabsl.update()

def set_decke(r,g,b):
acabsl.set_target("127.0.0.1",8002)
for w in range(acabsl.NOOFWALLS):
for x in range(acabsl.WALLSIZEX):
Expand All @@ -22,7 +28,7 @@ def set_all(r,g,b):
acabsl.update()

def set_all_to_black():
set_all(0,0,0)
set_all(0,0,0)

def main():
while 1:
Expand Down
4 changes: 2 additions & 2 deletions animations/dmm/marquee.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
import string

#Siehe letzte Zeile
DEIN_TEXT="Hackerbruecke ACAB"
DEIN_TEXT="ozapft,is.der staatstrojaner-mit dem bagger durchs schluesselloch spannen"
#DEIN_TEXT="Hackerbruecke ACAB"
DEIN_TEXT="33C3 im Cyber keilerei "
tick = 0.1
back_r=32
back_g=0
Expand Down

0 comments on commit 5fba3d7

Please sign in to comment.