General fixes
This commit is contained in:
parent
2bbb19b53e
commit
8652ef187c
3 changed files with 7 additions and 8 deletions
|
@ -2,14 +2,14 @@ from DesignEntity import DesignEntity
|
||||||
from TableDesign import TableDesign
|
from TableDesign import TableDesign
|
||||||
from Assets import defaultfontsize
|
from Assets import defaultfontsize
|
||||||
from CryptoPrices import CryptoPrices
|
from CryptoPrices import CryptoPrices
|
||||||
from settings import coins as cryptos
|
from settings import crypto_coins as cryptos
|
||||||
|
|
||||||
|
|
||||||
class CryptoListDesign (DesignEntity):
|
class CryptoListDesign (DesignEntity):
|
||||||
def __init__ (self, size, coin, text_size = defaultfontsize):
|
def __init__ (self, size, coin, text_size = defaultfontsize):
|
||||||
super(CryptoListDesign, self).__init__(size)
|
super(CryptoListDesign, self).__init__(size)
|
||||||
self.coin = coin
|
self.coin = coin
|
||||||
self.__post_matrix__ = []
|
self.__post_matrix__ = [[]]
|
||||||
self.text_size = text_size
|
self.text_size = text_size
|
||||||
|
|
||||||
def __finish_image__ (self):
|
def __finish_image__ (self):
|
||||||
|
@ -22,6 +22,5 @@ class CryptoListDesign (DesignEntity):
|
||||||
x=0
|
x=0
|
||||||
while x < len(name):
|
while x < len(name):
|
||||||
row = name[x]+": $"+str(price[x])
|
row = name[x]+": $"+str(price[x])
|
||||||
self.__post_matrix__.append(row)
|
self.__post_matrix__[0].append(row)
|
||||||
x= x+1
|
x= x+1
|
||||||
print(self.__post_matrix__)
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ from Assets import path
|
||||||
from LoopTimer import LoopTimer
|
from LoopTimer import LoopTimer
|
||||||
import locale
|
import locale
|
||||||
from DebugConsole import DebugConsole
|
from DebugConsole import DebugConsole
|
||||||
from settings import datetime_encoding, language, render_to_display, render_to_file, display_colours, location, api_key, owm_paid_subscription, choosen_design, ical_urls, highlighted_ical_urls, rss_feeds, update_interval, calibrate_hours,coins
|
from settings import datetime_encoding, language, render_to_display, render_to_file, display_colours, location, api_key, owm_paid_subscription, choosen_design, ical_urls, highlighted_ical_urls, rss_feeds, update_interval, calibrate_hours, crypto_coins
|
||||||
from MonthOvPanel import MonthOvPanel
|
from MonthOvPanel import MonthOvPanel
|
||||||
from DayListPanel import DayListPanel
|
from DayListPanel import DayListPanel
|
||||||
from DayViewPanel import DayViewPanel
|
from DayViewPanel import DayViewPanel
|
||||||
|
@ -62,7 +62,7 @@ def main():
|
||||||
owm = OwmForecasts.OwmForecasts(location, api_key, paid_api=owm_paid_subscription)
|
owm = OwmForecasts.OwmForecasts(location, api_key, paid_api=owm_paid_subscription)
|
||||||
events_cal = IcalEvents.IcalEvents(ical_urls, highlighted_ical_urls)
|
events_cal = IcalEvents.IcalEvents(ical_urls, highlighted_ical_urls)
|
||||||
rss = RssParserPosts.RssParserPosts(rss_feeds)
|
rss = RssParserPosts.RssParserPosts(rss_feeds)
|
||||||
coin = CryptoPrices.CryptoPrices(coins)
|
coin = CryptoPrices.CryptoPrices(crypto_coins)
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
loop_timer.begin_loop()
|
loop_timer.begin_loop()
|
||||||
|
|
|
@ -11,7 +11,7 @@ rss_feeds = [
|
||||||
"http://feeds.bbci.co.uk/news/world/rss.xml#"
|
"http://feeds.bbci.co.uk/news/world/rss.xml#"
|
||||||
]
|
]
|
||||||
|
|
||||||
coins = [
|
crypto_coins = [
|
||||||
"bitcoin",
|
"bitcoin",
|
||||||
"litecoin",
|
"litecoin",
|
||||||
"ethereum",
|
"ethereum",
|
||||||
|
@ -36,7 +36,7 @@ font_boldness = "semibold" # extralight, light, regular, semibold, bold, extra
|
||||||
line_thickness = 1 # 1-3 Thickness advised
|
line_thickness = 1 # 1-3 Thickness advised
|
||||||
choosen_design = "month-overview" # month-overview, day-list, day-view, agenda-list, month-view
|
choosen_design = "month-overview" # month-overview, day-list, day-view, agenda-list, month-view
|
||||||
general_settings = { # General settings that designs may use
|
general_settings = { # General settings that designs may use
|
||||||
"info-area" : "rss", # empty, events, rss
|
"info-area" : "rss", # empty, events, rss, crypto
|
||||||
"highlight-event-days" : True,
|
"highlight-event-days" : True,
|
||||||
"weather-info" : True
|
"weather-info" : True
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue