pinout.vvzero.com/pinout.py

116 lines
3.2 KiB
Python
Raw Normal View History

2015-03-27 01:27:30 +08:00
import json
import time
2016-09-14 01:27:55 +08:00
try:
import yaml
except ImportError:
exit("This script requires the yaml module\nInstall with: sudo pip install PyYAML")
2016-09-14 01:27:55 +08:00
PINOUT_FILE = 'pinout.yaml'
SETTINGS_FILE = 'settings.yaml'
STRINGS_FILE = 'localised.yaml'
2015-03-27 01:27:30 +08:00
pins = None
settings = None
2016-11-02 04:40:35 +08:00
master_template = open('common/layout.html').read()
2015-11-18 21:52:15 +08:00
def get_setting(setting, default = None):
if setting in settings and settings[setting] != None:
return settings[setting]
return default
def get_string(string, default = None):
if string in strings and strings[string] != None:
return strings[string]
return default
2015-11-18 21:52:15 +08:00
2015-03-27 01:27:30 +08:00
def render_html(*args, **kwargs):
2016-11-02 04:40:35 +08:00
html = master_template
html = html.replace('{{main_content}}',args[0])
html = html.replace('{{footer}}',args[1])
2016-11-02 05:21:57 +08:00
strings = args[2]
for key in strings:
if type(strings[key]) in [str, unicode]:
html = html.replace('{{strings:' + key + '}}', strings[key])
settings = args[3]
for key in settings:
if type(settings[key]) in [str, unicode]:
html = html.replace('{{settings:' + key + '}}', settings[key])
2015-03-27 01:27:30 +08:00
kwargs['v'] = str(int(time.time()))
2016-11-02 05:21:57 +08:00
2015-03-27 01:27:30 +08:00
for key in kwargs:
if type(kwargs[key]) == dict:
for d_key, d_value in kwargs[key].iteritems():
html = html.replace('{{' + key + '_' + d_key + '}}', d_value)
2016-11-02 05:21:57 +08:00
elif type(kwargs[key]) in [str, unicode]:
html = html.replace('{{' + key + '}}', kwargs[key])
2016-11-02 05:21:57 +08:00
2015-03-27 01:27:30 +08:00
return html
2015-11-18 21:52:15 +08:00
2015-03-27 01:27:30 +08:00
def bcm_to_physical(pin):
return physical_from(pin, 'bcm')
2015-03-27 01:27:30 +08:00
2015-11-18 21:52:15 +08:00
def wiringpi_to_physical(pin):
return physical_from(pin, 'wiringpi')
def physical_from(pin, scheme='bcm'):
if scheme in ['bcm', 'wiringpi']:
for idx in pins:
compare_pin = pins[idx]
if 'scheme' in compare_pin:
if scheme in compare_pin['scheme']:
if compare_pin['scheme'][scheme] == int(pin):
#print("Mapping {}{} to {}".format(scheme, pin, str(idx)))
return str(idx)
elif scheme == 'physical':
return pin
2015-03-27 01:27:30 +08:00
return None
2015-11-18 21:52:15 +08:00
def physical_to_bcm(pin):
return physical_to(pin, 'bcm')
2015-03-27 01:27:30 +08:00
def physical_to_wiringpi(pin):
return physical_to(pin, 'wiringpi')
2015-03-27 01:27:30 +08:00
2015-11-18 21:52:15 +08:00
2015-03-27 01:27:30 +08:00
def physical_to(pin, scheme='bcm'):
2015-11-18 21:52:15 +08:00
if scheme in ['bcm', 'wiringpi']:
2015-03-27 01:27:30 +08:00
pin = pins[pin]
if 'scheme' in pin:
if scheme in pin['scheme']:
return str(pin['scheme'][scheme])
elif scheme == 'physical':
return pin
return None
2015-11-18 21:52:15 +08:00
2015-11-14 07:16:37 +08:00
def load(lang='en'):
global pins, settings, strings
if SETTINGS_FILE.endswith('.yaml'):
2015-11-18 21:52:15 +08:00
settings = yaml.load(open('src/{}/{}'.format(lang, SETTINGS_FILE)).read())
else:
2015-11-18 21:52:15 +08:00
settings = json.load(open('src/{}/{}'.format(lang, SETTINGS_FILE)))
if STRINGS_FILE.endswith('.yaml'):
strings = yaml.load(open('src/{}/template/{}'.format(lang, STRINGS_FILE)).read())
else:
strings = json.load(open('src/{}/template/{}'.format(lang, STRINGS_FILE)))
if PINOUT_FILE.endswith('.yaml'):
pinout = yaml.load(open('src/{}/template/{}'.format(lang, PINOUT_FILE)).read())
else:
pinout = json.load(open('src/{}/template/{}'.format(lang, PINOUT_FILE)))
pins = pinout['pins']