From 5fa88fa503bb7e383fb0918beeef49c7802a8b43 Mon Sep 17 00:00:00 2001 From: Scott Petersen Date: Thu, 20 Jun 2013 11:59:14 -0700 Subject: [PATCH] Why wasnt this already commited? heh --- pyad2usb/panels.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pyad2usb/panels.py diff --git a/pyad2usb/panels.py b/pyad2usb/panels.py new file mode 100644 index 0000000..33d220f --- /dev/null +++ b/pyad2usb/panels.py @@ -0,0 +1,13 @@ +""" +Representations of Panels and their templates. +""" + +VISTA20 = 0 + +TEMPLATES = { + VISTA20: { + 'name': 'Vista 20', + # number of expanders, starting_address, number of channels + 'expanders': (5, 7, 7) + } +}