diff --git a/buba/animationconfig.py b/buba/animationconfig.py index 109e6bc..bfdbfd7 100644 --- a/buba/animationconfig.py +++ b/buba/animationconfig.py @@ -31,6 +31,10 @@ def setup_animations(config, animator: BubaAnimator, webqueue: WebQueue): url="https://events.ccc.de/calendar/events.ics", title="CCC Events", range=datetime.timedelta(weeks=8)) + fux_lichtspiele_events = IcalEvents(animator.buba, + url="https://cloud.hamburg.ccc.de/remote.php/dav/public-calendars/wdyaFEMeJiAK2jGc?export", + title="Fux-Lichtspiele", range=datetime.timedelta(weeks=8)) + ccchh_spaceapi = Spaceapi(animator.buba, "https://spaceapi.hamburg.ccc.de", "CCCHH") ca = None @@ -40,13 +44,14 @@ def setup_animations(config, animator: BubaAnimator, webqueue: WebQueue): else: LOG.warning("Club Assistant token not set, not activating animation") - # animator.add(cs) + animator.add(cs) animator.add(bt) animator.add(snake) animator.add(dbf_ahst) animator.add(dbf_ahs) animator.add(ccchh_events) animator.add(ccc_events) + animator.add(fux_lichtspiele_events) animator.add(ccchh_spaceapi) if ca is not None: animator.add(ca)