2022-12-24 10:59:04 -05:00
|
|
|
import colors
|
|
|
|
import requests
|
|
|
|
|
|
|
|
from configparser import ConfigParser
|
|
|
|
|
2022-12-24 12:10:46 -05:00
|
|
|
|
2022-12-24 10:59:04 -05:00
|
|
|
class WeatherDisplay:
|
|
|
|
def __init__(self, characterDisplay, topRow, configFile):
|
|
|
|
self.characterDisplay = characterDisplay
|
|
|
|
self.topRow = topRow
|
|
|
|
self.currentTemperature = [9, 9]
|
|
|
|
self.color = colors.BLUE
|
2022-12-24 12:10:46 -05:00
|
|
|
|
2022-12-24 10:59:04 -05:00
|
|
|
config = ConfigParser()
|
|
|
|
config.read(configFile)
|
|
|
|
|
2022-12-24 19:10:15 -05:00
|
|
|
host = config['weather'].get('host')
|
|
|
|
user = config['weather'].get('user')
|
|
|
|
password = config['weather'].get('pass')
|
|
|
|
lat = config['weather'].get('lat')
|
|
|
|
lon = config['weather'].get('lon')
|
2022-12-24 10:59:04 -05:00
|
|
|
|
2022-12-24 19:10:15 -05:00
|
|
|
self.uri = f'https://{host}/api/weather?lat={lat}&lon={lon}&units=metric'
|
|
|
|
self.auth = (user, password)
|
2022-12-24 10:59:04 -05:00
|
|
|
|
|
|
|
def showWeather(self):
|
2022-12-24 19:10:15 -05:00
|
|
|
try:
|
|
|
|
self.showTemperature(
|
|
|
|
self.getTemperatureCharacters(self.getTemperature()))
|
|
|
|
except requests.exceptions.ConnectionError:
|
|
|
|
print("connection error", flush=True)
|
|
|
|
self.characterDisplay.clearRow(self.topRow)
|
|
|
|
except requests.exceptions.Timeout:
|
|
|
|
print("timeout", flush=True)
|
|
|
|
self.characterDisplay.clearRow(self.topRow)
|
2022-12-24 10:59:04 -05:00
|
|
|
|
|
|
|
def showTemperature(self, temperature):
|
2022-12-24 19:10:15 -05:00
|
|
|
if temperature != self.currentTemperature:
|
|
|
|
self.characterDisplay.clearRow(self.topRow)
|
2022-12-24 10:59:04 -05:00
|
|
|
|
2022-12-24 19:10:15 -05:00
|
|
|
start = 13 if (
|
|
|
|
len(temperature) == 2 and temperature[0] == '-') or len(temperature) == 1 else 9
|
|
|
|
|
|
|
|
for c in temperature:
|
|
|
|
if c == '-':
|
|
|
|
self.characterDisplay.displayNegative(
|
|
|
|
start-3, self.topRow, self.color)
|
|
|
|
else:
|
|
|
|
self.characterDisplay.displayDigit(
|
|
|
|
start, self.topRow, c, self.color)
|
|
|
|
start = start + 4
|
|
|
|
|
|
|
|
self.currentTemperature = temperature
|
2022-12-24 10:59:04 -05:00
|
|
|
|
|
|
|
def getTemperature(self):
|
2022-12-24 19:10:15 -05:00
|
|
|
return list(filter(lambda t: t["timestep"] == 'current', requests.get(self.uri, auth=self.auth, timeout=2).json()["tomorrow"]["data"]['timelines']))[0]["intervals"][0]["values"]["temperature"]
|
2022-12-24 10:59:04 -05:00
|
|
|
|
|
|
|
def getTemperatureCharacters(self, temperature):
|
2022-12-24 12:10:46 -05:00
|
|
|
return list(str(round(temperature)))
|