applets: add big_number

This commit is contained in:
Sebastien Bourdeauducq 2016-01-03 00:46:33 +08:00
parent 5ad6c5cbe0
commit 6007b64898
1 changed files with 30 additions and 0 deletions

30
artiq/applets/big_number.py Executable file
View File

@ -0,0 +1,30 @@
#!/usr/bin/env python3.5
from quamash import QtWidgets
from artiq.applets.simple import SimpleApplet
class NumberWidget(QtWidgets.QLCDNumber):
def __init__(self, args):
QtWidgets.QLCDNumber.__init__(self)
self.setDigitCount(args.digit_count)
self.dataset_name = args.dataset
def data_changed(self, data, mod):
try:
n = float(data[self.dataset_name][1])
except (KeyError, ValueError, TypeError):
n = "---"
self.display(n)
def main():
applet = SimpleApplet(NumberWidget)
applet.add_dataset("dataset", "dataset to show")
applet.argparser.add_argument("--digit-count", type=int, default=10,
help="total number of digits to show")
applet.run()
if __name__ == "__main__":
main()