Mercurial > code > home > repos > light9
view bin/kcclient @ 2133:1dbbf0db3036
WIP graph-using songlist; trying to make request-then-play safer ux for song playback
author | drewp@bigasterisk.com |
---|---|
date | Sun, 05 Jun 2022 01:42:39 +0000 |
parents | 7772cc48e016 |
children |
line wrap: on
line source
#!/usr/bin/env python """send KeyboardComposer a fade request, for use from the shell""" import sys import run_local from restclient import Resource from light9 import networking subname = sys.argv[1] level = sys.argv[2] fadesecs = '0' if len(sys.argv) > 3: fadesecs = sys.argv[3] levelServer = Resource(networking.keyboardComposer.url) levelServer.post('fadesub', subname=subname, level=level, secs=fadesecs)