view flax/UI.py @ 1231:ef4ae15f2661

copy in rgb led program for arduino Ignore-this: ee63cf3e2100597625a4392bd95aba0d
author Drew Perttula <drewp@bigasterisk.com>
date Wed, 10 Jun 2015 04:55:39 +0000
parents 45b12307c695
children
line wrap: on
line source

# Abstract UI widgets

class UI(Something):
    pass

class Scale(UI):
    def __init__(self, start, stop, res=0.001):
        pass

""" unfinished
class Button(UI):
    def __init__(self, etc)
"""