from machine import Pin, SPI from tft import TFT_GREEN import font import network import gc import time import socket _init() gc.collect() dc = Pin(4, Pin.OUT) cs = Pin(2, Pin.OUT) rst = Pin(5, Pin.OUT) spi = SPI(1, baudrate=40000000, polarity=0, phase=0) tft = TFT_GREEN(128, 160, spi, dc, cs, rst, rotate=0) tft.initr(tft.BGR) # tft.initr(tft.RGB) #Если вместо синего цвета отображается красный, а вместо красного синий data = {'count': 1, 'data': [{'wind_cdir_full': 'southeast', 'weather': {'code': '804', 'icon': 'r01d', 'description': 'Light rain'}, 'datetime': '2020-06-15:11', 'temp': 24.4, 'station': 'E8051', 'elev_angle': 53.53, 'app_temp': 23.8, 'state_code': '48', 'wind_dir': 137, 'last_ob_time': '2020-06-15T10:46:00', 'solar_rad': 163.2, 'sunrise': '00:43', 'slp': 1007, 'pod': 'd', 'vis': 1.5, 'pres': 992.8, 'wind_cdir': 'SE', 'wind_spd': 1.34, 'ghi': 815.91, 'ts': 1592217960, 'snow': 0, 'uv': 8.64467, 'clouds': 100, 'city_name': 'Moscow', 'precip': 2.84211, 'timezone': 'Europe/Moscow', 'country_code': 'RU', 'dni': 882.12, 'dhi': 113.84, 'sunset': '18:15', 'ob_time': '2020-06-15 10:46', 'h_angle': 20, 'dewpt': 6.2, 'aqi': 48, 'lat': 55.7522, 'rh': 31, 'lon': 37.6156}]} wCity = data['data'][0]['city_name'] wTemp = round(data['data'][0]['temp']) wTempFeels = data['data'][0]['app_temp'] wHumidity = data['data'][0]['rh'] wWind = data['data'][0]['wind_spd'] pod = data['data'][0]['pod'] wCode = int(data['data'][0]['weather']['code']) if wCode <= 233: wPic = '11' elif (wCode >= 300 and wCode <= 520) or wCode == 522: wPic = '09' elif wCode in (521, 600): wPic = '10' elif wCode >= 601 and wCode <= 622: wPic = '13' elif wCode >= 623 and wCode <= 751: wPic = '50' elif wCode == 800: wPic = '01' elif wCode in (801, 802): wPic = '02' elif wCode == 803: wPic = '03' elif wCode == 804: wPic = '04' if (wTemp > 0): wTempPic = 'tp' else: wTempPic = 'tn' FontColor = tft.rgbcolor(33,149, 82) FontColor2 = tft.rgbcolor(8,85, 41) tft.clear(tft.rgbcolor(255,255, 255)) tft.text(1,1,wCity, font.terminalfont, FontColor, 2) tft.draw_bmp(34,16,'/weather/' + wPic + pod + '.bmp') tft.draw_bmp(5,70,'/weather/' + wTempPic + '.bmp') tft.text(30,75, str(wTemp), font.terminalfont, FontColor, 4) tft.text(5,120,"Feels: " + str(wTempFeels), font.terminalfont, FontColor2, 1) tft.text(5,128,"Humidity: " + str(wHumidity) + "%", font.terminalfont, FontColor2, 1) tft.text(5,136,"Wind: " + str(wWind) + "m/s", font.terminalfont, FontColor2, 1)