Added required to run files
This commit is contained in:
parent
0fabd772b7
commit
9335be69c9
45
JSON request to send data.txt
Normal file
45
JSON request to send data.txt
Normal file
@ -0,0 +1,45 @@
|
||||
{
|
||||
"leds1": {
|
||||
"red": 0,
|
||||
"green": 0,
|
||||
"blue": 0
|
||||
},
|
||||
"leds2": {
|
||||
"red": 0,
|
||||
"green": 0,
|
||||
"blue": 0
|
||||
},
|
||||
"leds3": {
|
||||
"red": 84,
|
||||
"green": 69,
|
||||
"blue": 255
|
||||
},
|
||||
"leds4": {
|
||||
"red": 0,
|
||||
"green": 0,
|
||||
"blue": 0
|
||||
},
|
||||
"leds5": {
|
||||
"red": 102,
|
||||
"green": 255,
|
||||
"blue": 173
|
||||
},
|
||||
"leds6": {
|
||||
"red": 0,
|
||||
"green": 0,
|
||||
"blue": 0
|
||||
},
|
||||
"leds7": {
|
||||
"red": 222,
|
||||
"green": 255,
|
||||
"blue": 58
|
||||
},
|
||||
"leds8": {
|
||||
"red": 0,
|
||||
"green": 0,
|
||||
"blue": 0
|
||||
},
|
||||
"LED1": false,
|
||||
"LED2": false,
|
||||
"LED3": false
|
||||
}
|
300
Main.py
Normal file
300
Main.py
Normal file
@ -0,0 +1,300 @@
|
||||
from PyQt5 import QtCore, QtGui, QtWidgets
|
||||
from PyQt5 import uic
|
||||
from PyQt5.QtGui import QColor, QPalette
|
||||
from PyQt5.QtGui import QPixmap
|
||||
from PyQt5.QtCore import QTimer
|
||||
from PyQt5.QtWidgets import *
|
||||
from PyQt5.QtNetwork import QNetworkAccessManager, QNetworkRequest
|
||||
|
||||
import requests
|
||||
import time
|
||||
import json
|
||||
import Res_rc
|
||||
import copy
|
||||
import pyqtgraph as pg
|
||||
import sys
|
||||
#import matplotlib.pyplot as plt
|
||||
|
||||
colors = {}
|
||||
last_clicked_label = None
|
||||
plotLen = 20
|
||||
valArr = [20] * plotLen
|
||||
plot = None
|
||||
|
||||
def led1 (checked):
|
||||
if checked:
|
||||
form.pushButton_2.setText("Выкл")
|
||||
print("I'm worked too much")
|
||||
form.label_24.hide()
|
||||
form.label_20.show()
|
||||
else:
|
||||
form.label_20.hide()
|
||||
form.label_24.show()
|
||||
form.pushButton_2.setText("Вкл")
|
||||
print ("I'm worked too")
|
||||
|
||||
def led2 (checked):
|
||||
if checked:
|
||||
form.pushButton_3.setText("Выкл")
|
||||
print("I'm worked too much")
|
||||
form.label_27.hide()
|
||||
form.label_26.show()
|
||||
else:
|
||||
form.label_26.hide()
|
||||
form.label_27.show()
|
||||
form.pushButton_3.setText("Вкл")
|
||||
print ("I'm worked too")
|
||||
|
||||
def led3 (checked):
|
||||
if checked:
|
||||
form.pushButton_4.setText("Выкл")
|
||||
print("I'm worked too much")
|
||||
form.label_31.hide()
|
||||
form.label_29.show()
|
||||
#state = form.label_24.isVisible()
|
||||
|
||||
else:
|
||||
form.label_29.hide()
|
||||
form.label_31.show()
|
||||
form.pushButton_4.setText("Вкл")
|
||||
print ("I'm worked too")
|
||||
|
||||
|
||||
def updateLCD():
|
||||
global temp
|
||||
form.lcdNumber.display(temp)
|
||||
|
||||
def sed ():
|
||||
print ("I'm worked!")
|
||||
|
||||
led_data = {
|
||||
"leds1": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds2": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds3": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds4": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds5": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds6": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds7": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds8": {"red": 0, "green": 0, "blue": 0},
|
||||
}
|
||||
|
||||
def vkl():
|
||||
for led in form.leds:
|
||||
#caution! Naming will be the same for a Led and JSON led objects
|
||||
led.setStyleSheet(f"background-color: yellow;")
|
||||
led_data[led.objectName()]["red"] = 255
|
||||
led_data[led.objectName()]["green"] = 255
|
||||
led_data[led.objectName()]["blue"] = 0
|
||||
|
||||
def vikl():
|
||||
for led in form.leds:
|
||||
#caution! Naming will be the same for a Led and JSON led objects
|
||||
led.setStyleSheet(f"background-color: black;")
|
||||
led_data[led.objectName()]["red"] = 0
|
||||
led_data[led.objectName()]["green"] = 0
|
||||
led_data[led.objectName()]["blue"] = 0
|
||||
|
||||
def color():
|
||||
color = QColorDialog.getColor()
|
||||
if color.isValid():
|
||||
palette = QPalette()
|
||||
palette.setColor(QPalette.Button, color)
|
||||
form.color_b.setPalette(palette)
|
||||
for led in form.leds:
|
||||
led.setStyleSheet(f"background-color: {color.name()};")
|
||||
led_data[led.objectName()]["red"] = color.red()
|
||||
led_data[led.objectName()]["green"] = color.green()
|
||||
led_data[led.objectName()]["blue"] = color.blue()
|
||||
|
||||
def led_clicked(event):
|
||||
colors = led.palette().color(QPalette.Background)
|
||||
sender= QApplication.widgetAt(event.globalPos()) #QApplication.widgetAt() для получения текущего виджета, на котором было совершено действие
|
||||
color = QColorDialog.getColor()
|
||||
if color.isValid():
|
||||
#caution! Naming will be the same for a Led and JSON led objects
|
||||
sender.setStyleSheet(f"background-color: {color.name()};")
|
||||
led_data[sender.objectName()]["red"] = color.red()
|
||||
led_data[sender.objectName()]["green"] = color.green()
|
||||
led_data[sender.objectName()]["blue"] = color.blue()
|
||||
else:
|
||||
form.leds.setStyleSheet(" ")
|
||||
|
||||
def sendMessage():
|
||||
url = form.lineEdit.text()
|
||||
labels_dict = {}
|
||||
labels_dict["LED1"] = form.label_20.isVisible()
|
||||
labels_dict["LED2"] = form.label_26.isVisible()
|
||||
labels_dict["LED3"] = form.label_29.isVisible()
|
||||
|
||||
json_data = {}
|
||||
json_data.update(led_data)
|
||||
json_data.update(labels_dict)
|
||||
json_str = json.dumps(json_data, separators=(',', ':'))
|
||||
|
||||
data_str = 'Я отправляю текст на: ' + url + '\n'+ json_str
|
||||
form.textEdit.setPlainText(data_str)
|
||||
|
||||
headers = {'Content-type': 'application/json', 'Accept': 'text/plain'} #заголовки запроса
|
||||
response = requests.post(url, json=json_data, headers=headers) #отправка POST запроса
|
||||
|
||||
# обрабатываем ответ и выводим его в поле вывода
|
||||
if response.status_code == 200:
|
||||
form.textEdit.append('О, все прошло успешно!\n') #выводим значение в line_edit
|
||||
else:
|
||||
form.textEdit.append('Ошибка при получении данных')
|
||||
|
||||
|
||||
|
||||
def getValueFromMacket():
|
||||
url = form.lineEdit_2.text()
|
||||
response = requests.get(url) #отправка POST запроса
|
||||
|
||||
# обрабатываем ответ и выводим его в поле вывода
|
||||
if response.status_code == 200:
|
||||
data=response.json() #функция преобразования данных в объект питон
|
||||
#Parse the date
|
||||
form.textEdit.append(json.dumps(data)) #выводим значение в line_edit
|
||||
form.textEdit.append(str(data["temperature"]))
|
||||
|
||||
bs = list()
|
||||
bs.append(data["button1State"])
|
||||
bs.append(data["button2State"])
|
||||
bs.append(data["button3State"])
|
||||
update_button(bs)
|
||||
|
||||
update_pressure(data["pressure"])
|
||||
|
||||
form.lcdNumber_7.display(data["ambient_light"])
|
||||
form.lcdNumber_2.display (data["red_light"])
|
||||
form.lcdNumber_3.display (data["green_light"])
|
||||
form.lcdNumber_4.display (data["blue_light"])
|
||||
form.lcdNumber_8.display (data["lightness"])
|
||||
|
||||
form.lcdNumber_5.display(data['acceleration_x'])
|
||||
form.lcdNumber_9.display (data['acceleration_y'])
|
||||
form.lcdNumber_6.display (data['acceleration_z'])
|
||||
|
||||
led1(data['LED1'])
|
||||
led2(data['LED2'])
|
||||
led3(data['LED3'])
|
||||
valArr.pop(0)
|
||||
valArr.append(data["temperature"])
|
||||
print(valArr)
|
||||
UpdatePlot(plot, valArr)
|
||||
else:
|
||||
form.textEdit.append('Ошибка при получении данных')
|
||||
|
||||
|
||||
#json.load(file) @ACHT! Method to convert Str to JSON
|
||||
|
||||
|
||||
def update_pressure(p):
|
||||
form.lcd_pressure.display(p)
|
||||
|
||||
def update_button (bs):
|
||||
for i in range(1, 4):
|
||||
button_state = bs[i-1]
|
||||
if button_state == 'True':
|
||||
getattr(form, f'on_{i}').show()
|
||||
getattr(form, f'off_{i}').hide()
|
||||
else:
|
||||
getattr(form, f'on_{i}').hide()
|
||||
getattr(form, f'off_{i}').show()
|
||||
|
||||
|
||||
def UpdatePlot(plot, val):
|
||||
x = list(range(1, len(valArr)+1))
|
||||
bargraph = pg.BarGraphItem(x = x, height = val, width = 0.6, brush ='g')
|
||||
plot.clear()
|
||||
plot.addItem(bargraph)
|
||||
|
||||
def Plots(form, valArr):
|
||||
widget = QWidget()
|
||||
plot = pg.plot() #создает объект PlotWidget из библиотеки PyqtGraph
|
||||
|
||||
x = list(range(1, len(valArr)+1))
|
||||
bargraph = pg.BarGraphItem(x = x, height = valArr, width = 0.6, brush ='g')
|
||||
plot.addItem(bargraph)
|
||||
|
||||
# Creating a grid layout
|
||||
layout = QGridLayout()
|
||||
layout.addWidget(plot, 0,0)
|
||||
form.plotwidget.setLayout(layout)
|
||||
|
||||
return plot
|
||||
|
||||
def main():
|
||||
with open('./config.json') as f: # открывает файл 'config.json'
|
||||
conf = json.load(open('config.json')) # загружает его содержимое в переменную 'conf' в формате словаря (dictionary) при помощи функции 'json.load()'
|
||||
|
||||
# выводит все ключи словаря 'conf' при помощи цикла 'for'.
|
||||
print("Find an arguments:")
|
||||
for i in conf:
|
||||
print(i)
|
||||
|
||||
Form, Window = uic.loadUiType(conf['uiPath'] + conf['uiFileName'])
|
||||
|
||||
app = QApplication(sys.argv) # Создаем экземпляр QApplication и передаем параметры командной строки
|
||||
window = Window()
|
||||
form = Form()
|
||||
form.setupUi(window)
|
||||
window.show() # Окна скрыты по умолчанию!
|
||||
window.setWindowTitle('Lr4') #nazvanie
|
||||
form.pushButton.clicked.connect(sendMessage) #привязываем функцию к кнопке Отправить
|
||||
form.lineEdit.setText("http://" + conf['defaultMDNSname'] + conf['defaultPostRoute'])
|
||||
form.lineEdit_2.setText("http://" + conf['defaultMDNSname'] + conf['defaultGetRoute'])
|
||||
form.pushButton_5.clicked.connect(getValueFromMacket) #привязываем функцию к кнопке Отправить GET запрос
|
||||
|
||||
|
||||
form.pushButton_2.setCheckable(True) #вкл режим перекл
|
||||
form.pushButton_2.setChecked(False) #нач значение
|
||||
form.label_20.hide()
|
||||
form.pushButton_2.toggled["bool"].connect(led1)
|
||||
|
||||
form.pushButton_3.setCheckable(True) #вкл режим перекл
|
||||
form.pushButton_3.setChecked(False) #нач значение
|
||||
form.label_26.hide()
|
||||
form.pushButton_3.toggled["bool"].connect(led2)
|
||||
|
||||
form.pushButton_4.setCheckable(True) #вкл режим перекл
|
||||
form.pushButton_4.setChecked(False) #нач значение
|
||||
form.label_29.hide()
|
||||
form.pushButton_4.toggled["bool"].connect(led3)
|
||||
|
||||
form.on_1.hide()
|
||||
form.on_2.hide()
|
||||
form.on_3.hide()
|
||||
|
||||
form.lcdNumber.display(45)
|
||||
|
||||
|
||||
form.leds = [form.leds1, form.leds2, form.leds3, form.leds4, form.leds5, form.leds6, form.leds7, form.leds8]
|
||||
|
||||
|
||||
for led in form.leds:
|
||||
led.mousePressEvent = led_clicked
|
||||
|
||||
timer = QTimer()
|
||||
timer.setInterval(1000)
|
||||
|
||||
#Connect the timer to the update_pressure function
|
||||
#TODO connect to getSensValue from macket
|
||||
# timer.timeout.connect(update_pressure)
|
||||
# timer.timeout.connect(update_button)
|
||||
# timer.timeout.connect(update_light)
|
||||
# timer.timeout.connect(update_acceleration)
|
||||
|
||||
timer.start()
|
||||
|
||||
form.vkl_b.clicked.connect(vkl)
|
||||
form.vikl_b.clicked.connect(vikl)
|
||||
form.color_b.clicked.connect(color)
|
||||
|
||||
plot = Plots(form, valArr)
|
||||
|
||||
sys.exit (app.exec_()) # Запуск цикла событий
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
BIN
Python-20230411T121747Z-001.zip
Normal file
BIN
Python-20230411T121747Z-001.zip
Normal file
Binary file not shown.
455
Res_rc.py
Normal file
455
Res_rc.py
Normal file
@ -0,0 +1,455 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Resource object code
|
||||
#
|
||||
# Created by: The Resource Compiler for PyQt5 (Qt v5.15.2)
|
||||
#
|
||||
# WARNING! All changes made in this file will be lost!
|
||||
|
||||
from PyQt5 import QtCore
|
||||
|
||||
qt_resource_data = b"\
|
||||
\x00\x00\x06\x1c\
|
||||
\x3c\
|
||||
\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\
|
||||
\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x75\x74\x66\
|
||||
\x2d\x38\x22\x3f\x3e\x0d\x0a\x3c\x21\x2d\x2d\x20\x47\x65\x6e\x65\
|
||||
\x72\x61\x74\x6f\x72\x3a\x20\x41\x64\x6f\x62\x65\x20\x49\x6c\x6c\
|
||||
\x75\x73\x74\x72\x61\x74\x6f\x72\x20\x32\x33\x2e\x31\x2e\x30\x2c\
|
||||
\x20\x53\x56\x47\x20\x45\x78\x70\x6f\x72\x74\x20\x50\x6c\x75\x67\
|
||||
\x2d\x49\x6e\x20\x2e\x20\x53\x56\x47\x20\x56\x65\x72\x73\x69\x6f\
|
||||
\x6e\x3a\x20\x36\x2e\x30\x30\x20\x42\x75\x69\x6c\x64\x20\x30\x29\
|
||||
\x20\x20\x2d\x2d\x3e\x0d\x0a\x3c\x73\x76\x67\x20\x76\x65\x72\x73\
|
||||
\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x20\x69\x64\x3d\x22\xd0\xa1\
|
||||
\xd0\xbb\xd0\xbe\xd0\xb9\x5f\x31\x22\x20\x78\x6d\x6c\x6e\x73\x3d\
|
||||
\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\
|
||||
\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x20\x78\x6d\x6c\
|
||||
\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\x70\x3a\x2f\
|
||||
\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\
|
||||
\x2f\x78\x6c\x69\x6e\x6b\x22\x20\x78\x3d\x22\x30\x70\x78\x22\x20\
|
||||
\x79\x3d\x22\x30\x70\x78\x22\x0d\x0a\x09\x20\x76\x69\x65\x77\x42\
|
||||
\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x35\x36\x20\x32\x35\x36\x22\
|
||||
\x20\x73\x74\x79\x6c\x65\x3d\x22\x65\x6e\x61\x62\x6c\x65\x2d\x62\
|
||||
\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x6e\x65\x77\x20\x30\x20\
|
||||
\x30\x20\x32\x35\x36\x20\x32\x35\x36\x3b\x22\x20\x78\x6d\x6c\x3a\
|
||||
\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\
|
||||
\x3e\x0d\x0a\x3c\x73\x74\x79\x6c\x65\x20\x74\x79\x70\x65\x3d\x22\
|
||||
\x74\x65\x78\x74\x2f\x63\x73\x73\x22\x3e\x0d\x0a\x09\x2e\x73\x74\
|
||||
\x30\x7b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\
|
||||
\x6b\x65\x3a\x23\x32\x41\x32\x45\x30\x30\x3b\x73\x74\x72\x6f\x6b\
|
||||
\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x36\x3b\x73\x74\x72\x6f\x6b\
|
||||
\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\x3b\
|
||||
\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\
|
||||
\x74\x3a\x31\x30\x3b\x7d\x0d\x0a\x09\x2e\x73\x74\x31\x7b\x66\x69\
|
||||
\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\
|
||||
\x31\x35\x30\x30\x30\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\
|
||||
\x64\x74\x68\x3a\x31\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\
|
||||
\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\
|
||||
\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\
|
||||
\x3b\x7d\x0d\x0a\x09\x2e\x73\x74\x32\x7b\x66\x69\x6c\x6c\x3a\x6e\
|
||||
\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x36\x36\x36\x36\
|
||||
\x36\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\
|
||||
\x31\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\
|
||||
\x70\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\
|
||||
\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x7d\x0d\x0a\
|
||||
\x3c\x2f\x73\x74\x79\x6c\x65\x3e\x0d\x0a\x3c\x67\x3e\x0d\x0a\x09\
|
||||
\x3c\x70\x61\x74\x68\x20\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\x30\
|
||||
\x22\x20\x64\x3d\x22\x4d\x31\x38\x36\x2e\x38\x37\x2c\x34\x33\x63\
|
||||
\x32\x39\x2e\x38\x32\x2c\x31\x37\x2e\x36\x33\x2c\x33\x39\x2e\x30\
|
||||
\x37\x2c\x35\x35\x2e\x30\x36\x2c\x32\x30\x2e\x36\x35\x2c\x38\x33\
|
||||
\x2e\x36\x31\x63\x2d\x31\x34\x2e\x37\x34\x2c\x32\x32\x2e\x38\x34\
|
||||
\x2d\x34\x36\x2e\x30\x32\x2c\x32\x39\x2e\x39\x31\x2d\x36\x39\x2e\
|
||||
\x38\x38\x2c\x31\x35\x2e\x38\x31\x0d\x0a\x09\x09\x63\x2d\x31\x39\
|
||||
\x2e\x30\x39\x2d\x31\x31\x2e\x32\x38\x2d\x32\x35\x2d\x33\x35\x2e\
|
||||
\x32\x34\x2d\x31\x33\x2e\x32\x31\x2d\x35\x33\x2e\x35\x31\x63\x39\
|
||||
\x2e\x34\x33\x2d\x31\x34\x2e\x36\x31\x2c\x32\x39\x2e\x34\x35\x2d\
|
||||
\x31\x39\x2e\x31\x34\x2c\x34\x34\x2e\x37\x32\x2d\x31\x30\x2e\x31\
|
||||
\x32\x63\x31\x32\x2e\x32\x32\x2c\x37\x2e\x32\x32\x2c\x31\x36\x2c\
|
||||
\x32\x32\x2e\x35\x35\x2c\x38\x2e\x34\x36\x2c\x33\x34\x2e\x32\x35\
|
||||
\x0d\x0a\x09\x09\x63\x2d\x36\x2e\x30\x34\x2c\x39\x2e\x33\x35\x2d\
|
||||
\x31\x38\x2e\x38\x35\x2c\x31\x32\x2e\x32\x35\x2d\x32\x38\x2e\x36\
|
||||
\x32\x2c\x36\x2e\x34\x38\x63\x2d\x37\x2e\x38\x32\x2d\x34\x2e\x36\
|
||||
\x32\x2d\x31\x30\x2e\x32\x34\x2d\x31\x34\x2e\x34\x33\x2d\x35\x2e\
|
||||
\x34\x31\x2d\x32\x31\x2e\x39\x32\x63\x33\x2e\x38\x36\x2d\x35\x2e\
|
||||
\x39\x39\x2c\x31\x32\x2e\x30\x36\x2d\x37\x2e\x38\x34\x2c\x31\x38\
|
||||
\x2e\x33\x32\x2d\x34\x2e\x31\x34\x0d\x0a\x09\x09\x63\x35\x2c\x32\
|
||||
\x2e\x39\x36\x2c\x36\x2e\x35\x35\x2c\x39\x2e\x32\x34\x2c\x33\x2e\
|
||||
\x34\x36\x2c\x31\x34\x2e\x30\x33\x63\x2d\x32\x2e\x34\x37\x2c\x33\
|
||||
\x2e\x38\x33\x2d\x37\x2e\x37\x32\x2c\x35\x2e\x30\x32\x2d\x31\x31\
|
||||
\x2e\x37\x32\x2c\x32\x2e\x36\x35\x22\x2f\x3e\x0d\x0a\x09\x3c\x70\
|
||||
\x61\x74\x68\x20\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\x31\x22\x20\
|
||||
\x64\x3d\x22\x4d\x31\x38\x36\x2e\x38\x37\x2c\x34\x33\x63\x32\x39\
|
||||
\x2e\x38\x32\x2c\x31\x37\x2e\x36\x33\x2c\x33\x39\x2e\x30\x37\x2c\
|
||||
\x35\x35\x2e\x30\x36\x2c\x32\x30\x2e\x36\x35\x2c\x38\x33\x2e\x36\
|
||||
\x31\x63\x2d\x31\x34\x2e\x37\x34\x2c\x32\x32\x2e\x38\x34\x2d\x34\
|
||||
\x36\x2e\x30\x32\x2c\x32\x39\x2e\x39\x31\x2d\x36\x39\x2e\x38\x38\
|
||||
\x2c\x31\x35\x2e\x38\x31\x0d\x0a\x09\x09\x63\x2d\x31\x39\x2e\x30\
|
||||
\x39\x2d\x31\x31\x2e\x32\x38\x2d\x32\x35\x2d\x33\x35\x2e\x32\x34\
|
||||
\x2d\x31\x33\x2e\x32\x31\x2d\x35\x33\x2e\x35\x31\x63\x39\x2e\x34\
|
||||
\x33\x2d\x31\x34\x2e\x36\x31\x2c\x32\x39\x2e\x34\x35\x2d\x31\x39\
|
||||
\x2e\x31\x34\x2c\x34\x34\x2e\x37\x32\x2d\x31\x30\x2e\x31\x32\x63\
|
||||
\x31\x32\x2e\x32\x32\x2c\x37\x2e\x32\x32\x2c\x31\x36\x2c\x32\x32\
|
||||
\x2e\x35\x35\x2c\x38\x2e\x34\x36\x2c\x33\x34\x2e\x32\x35\x0d\x0a\
|
||||
\x09\x09\x63\x2d\x36\x2e\x30\x34\x2c\x39\x2e\x33\x35\x2d\x31\x38\
|
||||
\x2e\x38\x35\x2c\x31\x32\x2e\x32\x35\x2d\x32\x38\x2e\x36\x32\x2c\
|
||||
\x36\x2e\x34\x38\x63\x2d\x37\x2e\x38\x32\x2d\x34\x2e\x36\x32\x2d\
|
||||
\x31\x30\x2e\x32\x34\x2d\x31\x34\x2e\x34\x33\x2d\x35\x2e\x34\x31\
|
||||
\x2d\x32\x31\x2e\x39\x32\x63\x33\x2e\x38\x36\x2d\x35\x2e\x39\x39\
|
||||
\x2c\x31\x32\x2e\x30\x36\x2d\x37\x2e\x38\x34\x2c\x31\x38\x2e\x33\
|
||||
\x32\x2d\x34\x2e\x31\x34\x0d\x0a\x09\x09\x63\x35\x2c\x32\x2e\x39\
|
||||
\x36\x2c\x36\x2e\x35\x35\x2c\x39\x2e\x32\x34\x2c\x33\x2e\x34\x36\
|
||||
\x2c\x31\x34\x2e\x30\x33\x63\x2d\x32\x2e\x34\x37\x2c\x33\x2e\x38\
|
||||
\x33\x2d\x37\x2e\x37\x32\x2c\x35\x2e\x30\x32\x2d\x31\x31\x2e\x37\
|
||||
\x32\x2c\x32\x2e\x36\x35\x22\x2f\x3e\x0d\x0a\x3c\x2f\x67\x3e\x0d\
|
||||
\x0a\x3c\x6c\x69\x6e\x65\x20\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\
|
||||
\x32\x22\x20\x78\x31\x3d\x22\x31\x32\x39\x22\x20\x79\x31\x3d\x22\
|
||||
\x31\x37\x34\x22\x20\x78\x32\x3d\x22\x31\x30\x37\x22\x20\x79\x32\
|
||||
\x3d\x22\x32\x31\x39\x22\x2f\x3e\x0d\x0a\x3c\x6c\x69\x6e\x65\x20\
|
||||
\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\x32\x22\x20\x78\x31\x3d\x22\
|
||||
\x31\x37\x31\x22\x20\x79\x31\x3d\x22\x31\x37\x32\x22\x20\x78\x32\
|
||||
\x3d\x22\x32\x30\x30\x22\x20\x79\x32\x3d\x22\x32\x34\x36\x22\x2f\
|
||||
\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\
|
||||
\x00\x00\x04\xc6\
|
||||
\x3c\
|
||||
\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\
|
||||
\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x75\x74\x66\
|
||||
\x2d\x38\x22\x3f\x3e\x0d\x0a\x3c\x21\x2d\x2d\x20\x47\x65\x6e\x65\
|
||||
\x72\x61\x74\x6f\x72\x3a\x20\x41\x64\x6f\x62\x65\x20\x49\x6c\x6c\
|
||||
\x75\x73\x74\x72\x61\x74\x6f\x72\x20\x32\x33\x2e\x31\x2e\x30\x2c\
|
||||
\x20\x53\x56\x47\x20\x45\x78\x70\x6f\x72\x74\x20\x50\x6c\x75\x67\
|
||||
\x2d\x49\x6e\x20\x2e\x20\x53\x56\x47\x20\x56\x65\x72\x73\x69\x6f\
|
||||
\x6e\x3a\x20\x36\x2e\x30\x30\x20\x42\x75\x69\x6c\x64\x20\x30\x29\
|
||||
\x20\x20\x2d\x2d\x3e\x0d\x0a\x3c\x73\x76\x67\x20\x76\x65\x72\x73\
|
||||
\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x20\x69\x64\x3d\x22\xd0\xa1\
|
||||
\xd0\xbb\xd0\xbe\xd0\xb9\x5f\x31\x22\x20\x78\x6d\x6c\x6e\x73\x3d\
|
||||
\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\
|
||||
\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x20\x78\x6d\x6c\
|
||||
\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\x70\x3a\x2f\
|
||||
\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\
|
||||
\x2f\x78\x6c\x69\x6e\x6b\x22\x20\x78\x3d\x22\x30\x70\x78\x22\x20\
|
||||
\x79\x3d\x22\x30\x70\x78\x22\x0d\x0a\x09\x20\x76\x69\x65\x77\x42\
|
||||
\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x35\x36\x20\x32\x35\x36\x22\
|
||||
\x20\x73\x74\x79\x6c\x65\x3d\x22\x65\x6e\x61\x62\x6c\x65\x2d\x62\
|
||||
\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x6e\x65\x77\x20\x30\x20\
|
||||
\x30\x20\x32\x35\x36\x20\x32\x35\x36\x3b\x22\x20\x78\x6d\x6c\x3a\
|
||||
\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\
|
||||
\x3e\x0d\x0a\x3c\x73\x74\x79\x6c\x65\x20\x74\x79\x70\x65\x3d\x22\
|
||||
\x74\x65\x78\x74\x2f\x63\x73\x73\x22\x3e\x0d\x0a\x09\x2e\x73\x74\
|
||||
\x30\x7b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\
|
||||
\x6b\x65\x3a\x23\x39\x39\x39\x39\x39\x39\x3b\x73\x74\x72\x6f\x6b\
|
||||
\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x36\x3b\x73\x74\x72\x6f\x6b\
|
||||
\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\x3b\
|
||||
\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\
|
||||
\x74\x3a\x31\x30\x3b\x7d\x0d\x0a\x09\x2e\x73\x74\x31\x7b\x66\x69\
|
||||
\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\
|
||||
\x34\x44\x34\x44\x34\x44\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\
|
||||
\x64\x74\x68\x3a\x31\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\
|
||||
\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\
|
||||
\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\
|
||||
\x3b\x7d\x0d\x0a\x09\x2e\x73\x74\x32\x7b\x66\x69\x6c\x6c\x3a\x6e\
|
||||
\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x39\x39\x39\x39\
|
||||
\x39\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\
|
||||
\x33\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\
|
||||
\x70\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\
|
||||
\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x7d\x0d\x0a\
|
||||
\x09\x2e\x73\x74\x33\x7b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\
|
||||
\x73\x74\x72\x6f\x6b\x65\x3a\x23\x36\x36\x36\x36\x36\x36\x3b\x73\
|
||||
\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x31\x3b\x73\
|
||||
\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\
|
||||
\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\
|
||||
\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x7d\x0d\x0a\x09\x2e\x73\x74\
|
||||
\x34\x7b\x66\x69\x6c\x6c\x3a\x23\x33\x33\x30\x30\x30\x37\x3b\x7d\
|
||||
\x0d\x0a\x09\x2e\x73\x74\x35\x7b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\
|
||||
\x69\x6c\x79\x3a\x27\x4d\x79\x72\x69\x61\x64\x50\x72\x6f\x2d\x52\
|
||||
\x65\x67\x75\x6c\x61\x72\x27\x3b\x7d\x0d\x0a\x09\x2e\x73\x74\x36\
|
||||
\x7b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x31\x37\x2e\x37\
|
||||
\x38\x37\x32\x70\x78\x3b\x7d\x0d\x0a\x3c\x2f\x73\x74\x79\x6c\x65\
|
||||
\x3e\x0d\x0a\x3c\x67\x3e\x0d\x0a\x09\x3c\x70\x61\x74\x68\x20\x63\
|
||||
\x6c\x61\x73\x73\x3d\x22\x73\x74\x30\x22\x20\x64\x3d\x22\x4d\x31\
|
||||
\x33\x33\x2c\x31\x39\x33\x63\x30\x2d\x38\x36\x2e\x37\x38\x2d\x35\
|
||||
\x30\x2e\x35\x34\x2d\x31\x35\x37\x2d\x31\x31\x33\x2d\x31\x35\x37\
|
||||
\x22\x2f\x3e\x0d\x0a\x09\x3c\x70\x61\x74\x68\x20\x63\x6c\x61\x73\
|
||||
\x73\x3d\x22\x73\x74\x31\x22\x20\x64\x3d\x22\x4d\x31\x33\x33\x2c\
|
||||
\x31\x39\x33\x63\x30\x2d\x38\x36\x2e\x37\x38\x2d\x35\x30\x2e\x35\
|
||||
\x34\x2d\x31\x35\x37\x2d\x31\x31\x33\x2d\x31\x35\x37\x22\x2f\x3e\
|
||||
\x0d\x0a\x3c\x2f\x67\x3e\x0d\x0a\x3c\x67\x3e\x0d\x0a\x09\x3c\x70\
|
||||
\x61\x74\x68\x20\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\x32\x22\x20\
|
||||
\x64\x3d\x22\x4d\x32\x32\x2c\x32\x33\x35\x63\x37\x37\x2e\x34\x37\
|
||||
\x2d\x35\x37\x2e\x34\x35\x2c\x31\x37\x33\x2e\x36\x33\x2d\x35\x38\
|
||||
\x2e\x37\x39\x2c\x32\x31\x35\x2d\x33\x22\x2f\x3e\x0d\x0a\x09\x3c\
|
||||
\x70\x61\x74\x68\x20\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\x33\x22\
|
||||
\x20\x64\x3d\x22\x4d\x32\x32\x2c\x32\x33\x35\x63\x37\x37\x2e\x34\
|
||||
\x37\x2d\x35\x37\x2e\x34\x35\x2c\x31\x37\x33\x2e\x36\x33\x2d\x35\
|
||||
\x38\x2e\x37\x39\x2c\x32\x31\x35\x2d\x33\x22\x2f\x3e\x0d\x0a\x3c\
|
||||
\x2f\x67\x3e\x0d\x0a\x3c\x74\x65\x78\x74\x20\x74\x72\x61\x6e\x73\
|
||||
\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\
|
||||
\x30\x30\x32\x20\x30\x20\x30\x20\x31\x20\x31\x30\x30\x2e\x30\x34\
|
||||
\x33\x35\x20\x39\x33\x2e\x35\x35\x33\x32\x29\x22\x20\x63\x6c\x61\
|
||||
\x73\x73\x3d\x22\x73\x74\x34\x20\x73\x74\x35\x20\x73\x74\x36\x22\
|
||||
\x3e\x4f\x46\x46\x3c\x2f\x74\x65\x78\x74\x3e\x0d\x0a\x3c\x2f\x73\
|
||||
\x76\x67\x3e\x0d\x0a\
|
||||
\x00\x00\x04\xc1\
|
||||
\x3c\
|
||||
\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\
|
||||
\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x75\x74\x66\
|
||||
\x2d\x38\x22\x3f\x3e\x0d\x0a\x3c\x21\x2d\x2d\x20\x47\x65\x6e\x65\
|
||||
\x72\x61\x74\x6f\x72\x3a\x20\x41\x64\x6f\x62\x65\x20\x49\x6c\x6c\
|
||||
\x75\x73\x74\x72\x61\x74\x6f\x72\x20\x32\x33\x2e\x31\x2e\x30\x2c\
|
||||
\x20\x53\x56\x47\x20\x45\x78\x70\x6f\x72\x74\x20\x50\x6c\x75\x67\
|
||||
\x2d\x49\x6e\x20\x2e\x20\x53\x56\x47\x20\x56\x65\x72\x73\x69\x6f\
|
||||
\x6e\x3a\x20\x36\x2e\x30\x30\x20\x42\x75\x69\x6c\x64\x20\x30\x29\
|
||||
\x20\x20\x2d\x2d\x3e\x0d\x0a\x3c\x73\x76\x67\x20\x76\x65\x72\x73\
|
||||
\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x20\x69\x64\x3d\x22\xd0\xa1\
|
||||
\xd0\xbb\xd0\xbe\xd0\xb9\x5f\x31\x22\x20\x78\x6d\x6c\x6e\x73\x3d\
|
||||
\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\
|
||||
\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x20\x78\x6d\x6c\
|
||||
\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\x70\x3a\x2f\
|
||||
\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\
|
||||
\x2f\x78\x6c\x69\x6e\x6b\x22\x20\x78\x3d\x22\x30\x70\x78\x22\x20\
|
||||
\x79\x3d\x22\x30\x70\x78\x22\x0d\x0a\x09\x20\x76\x69\x65\x77\x42\
|
||||
\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x35\x36\x20\x32\x35\x36\x22\
|
||||
\x20\x73\x74\x79\x6c\x65\x3d\x22\x65\x6e\x61\x62\x6c\x65\x2d\x62\
|
||||
\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x6e\x65\x77\x20\x30\x20\
|
||||
\x30\x20\x32\x35\x36\x20\x32\x35\x36\x3b\x22\x20\x78\x6d\x6c\x3a\
|
||||
\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\
|
||||
\x3e\x0d\x0a\x3c\x73\x74\x79\x6c\x65\x20\x74\x79\x70\x65\x3d\x22\
|
||||
\x74\x65\x78\x74\x2f\x63\x73\x73\x22\x3e\x0d\x0a\x09\x2e\x73\x74\
|
||||
\x30\x7b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\
|
||||
\x6b\x65\x3a\x23\x39\x39\x39\x39\x39\x39\x3b\x73\x74\x72\x6f\x6b\
|
||||
\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x36\x3b\x73\x74\x72\x6f\x6b\
|
||||
\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\x3b\
|
||||
\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\
|
||||
\x74\x3a\x31\x30\x3b\x7d\x0d\x0a\x09\x2e\x73\x74\x31\x7b\x66\x69\
|
||||
\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\
|
||||
\x34\x44\x34\x44\x34\x44\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\
|
||||
\x64\x74\x68\x3a\x31\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\
|
||||
\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\
|
||||
\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\
|
||||
\x3b\x7d\x0d\x0a\x09\x2e\x73\x74\x32\x7b\x66\x69\x6c\x6c\x3a\x6e\
|
||||
\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x39\x39\x39\x39\
|
||||
\x39\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\
|
||||
\x33\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\
|
||||
\x70\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\
|
||||
\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x7d\x0d\x0a\
|
||||
\x09\x2e\x73\x74\x33\x7b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\
|
||||
\x73\x74\x72\x6f\x6b\x65\x3a\x23\x36\x36\x36\x36\x36\x36\x3b\x73\
|
||||
\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x31\x3b\x73\
|
||||
\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\
|
||||
\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\
|
||||
\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x7d\x0d\x0a\x09\x2e\x73\x74\
|
||||
\x34\x7b\x66\x69\x6c\x6c\x3a\x23\x30\x34\x32\x30\x30\x30\x3b\x7d\
|
||||
\x0d\x0a\x09\x2e\x73\x74\x35\x7b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\
|
||||
\x69\x6c\x79\x3a\x27\x4d\x79\x72\x69\x61\x64\x50\x72\x6f\x2d\x52\
|
||||
\x65\x67\x75\x6c\x61\x72\x27\x3b\x7d\x0d\x0a\x09\x2e\x73\x74\x36\
|
||||
\x7b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x31\x37\x2e\x37\
|
||||
\x38\x37\x32\x70\x78\x3b\x7d\x0d\x0a\x3c\x2f\x73\x74\x79\x6c\x65\
|
||||
\x3e\x0d\x0a\x3c\x67\x3e\x0d\x0a\x09\x3c\x70\x61\x74\x68\x20\x63\
|
||||
\x6c\x61\x73\x73\x3d\x22\x73\x74\x30\x22\x20\x64\x3d\x22\x4d\x31\
|
||||
\x33\x33\x2c\x31\x39\x33\x63\x30\x2d\x39\x30\x2e\x36\x35\x2c\x34\
|
||||
\x38\x2e\x33\x2d\x31\x36\x34\x2c\x31\x30\x38\x2d\x31\x36\x34\x22\
|
||||
\x2f\x3e\x0d\x0a\x09\x3c\x70\x61\x74\x68\x20\x63\x6c\x61\x73\x73\
|
||||
\x3d\x22\x73\x74\x31\x22\x20\x64\x3d\x22\x4d\x31\x33\x33\x2c\x31\
|
||||
\x39\x33\x63\x30\x2d\x39\x30\x2e\x36\x35\x2c\x34\x38\x2e\x33\x2d\
|
||||
\x31\x36\x34\x2c\x31\x30\x38\x2d\x31\x36\x34\x22\x2f\x3e\x0d\x0a\
|
||||
\x3c\x2f\x67\x3e\x0d\x0a\x3c\x67\x3e\x0d\x0a\x09\x3c\x70\x61\x74\
|
||||
\x68\x20\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\x32\x22\x20\x64\x3d\
|
||||
\x22\x4d\x32\x32\x2c\x32\x33\x35\x63\x37\x37\x2e\x34\x37\x2d\x35\
|
||||
\x37\x2e\x34\x35\x2c\x31\x37\x33\x2e\x36\x33\x2d\x35\x38\x2e\x37\
|
||||
\x39\x2c\x32\x31\x35\x2d\x33\x22\x2f\x3e\x0d\x0a\x09\x3c\x70\x61\
|
||||
\x74\x68\x20\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\x33\x22\x20\x64\
|
||||
\x3d\x22\x4d\x32\x32\x2c\x32\x33\x35\x63\x37\x37\x2e\x34\x37\x2d\
|
||||
\x35\x37\x2e\x34\x35\x2c\x31\x37\x33\x2e\x36\x33\x2d\x35\x38\x2e\
|
||||
\x37\x39\x2c\x32\x31\x35\x2d\x33\x22\x2f\x3e\x0d\x0a\x3c\x2f\x67\
|
||||
\x3e\x0d\x0a\x3c\x74\x65\x78\x74\x20\x74\x72\x61\x6e\x73\x66\x6f\
|
||||
\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x30\x30\
|
||||
\x32\x20\x30\x20\x30\x20\x31\x20\x34\x2e\x30\x34\x33\x35\x20\x39\
|
||||
\x33\x2e\x35\x35\x33\x32\x29\x22\x20\x63\x6c\x61\x73\x73\x3d\x22\
|
||||
\x73\x74\x34\x20\x73\x74\x35\x20\x73\x74\x36\x22\x3e\x4f\x4e\x3c\
|
||||
\x2f\x74\x65\x78\x74\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\
|
||||
\
|
||||
\x00\x00\x07\x72\
|
||||
\x3c\
|
||||
\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\
|
||||
\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x75\x74\x66\
|
||||
\x2d\x38\x22\x3f\x3e\x0d\x0a\x3c\x21\x2d\x2d\x20\x47\x65\x6e\x65\
|
||||
\x72\x61\x74\x6f\x72\x3a\x20\x41\x64\x6f\x62\x65\x20\x49\x6c\x6c\
|
||||
\x75\x73\x74\x72\x61\x74\x6f\x72\x20\x32\x33\x2e\x31\x2e\x30\x2c\
|
||||
\x20\x53\x56\x47\x20\x45\x78\x70\x6f\x72\x74\x20\x50\x6c\x75\x67\
|
||||
\x2d\x49\x6e\x20\x2e\x20\x53\x56\x47\x20\x56\x65\x72\x73\x69\x6f\
|
||||
\x6e\x3a\x20\x36\x2e\x30\x30\x20\x42\x75\x69\x6c\x64\x20\x30\x29\
|
||||
\x20\x20\x2d\x2d\x3e\x0d\x0a\x3c\x73\x76\x67\x20\x76\x65\x72\x73\
|
||||
\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x20\x69\x64\x3d\x22\xd0\xa1\
|
||||
\xd0\xbb\xd0\xbe\xd0\xb9\x5f\x31\x22\x20\x78\x6d\x6c\x6e\x73\x3d\
|
||||
\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\
|
||||
\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x20\x78\x6d\x6c\
|
||||
\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\x70\x3a\x2f\
|
||||
\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\
|
||||
\x2f\x78\x6c\x69\x6e\x6b\x22\x20\x78\x3d\x22\x30\x70\x78\x22\x20\
|
||||
\x79\x3d\x22\x30\x70\x78\x22\x0d\x0a\x09\x20\x76\x69\x65\x77\x42\
|
||||
\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x35\x36\x20\x32\x35\x36\x22\
|
||||
\x20\x73\x74\x79\x6c\x65\x3d\x22\x65\x6e\x61\x62\x6c\x65\x2d\x62\
|
||||
\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x6e\x65\x77\x20\x30\x20\
|
||||
\x30\x20\x32\x35\x36\x20\x32\x35\x36\x3b\x22\x20\x78\x6d\x6c\x3a\
|
||||
\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\
|
||||
\x3e\x0d\x0a\x3c\x73\x74\x79\x6c\x65\x20\x74\x79\x70\x65\x3d\x22\
|
||||
\x74\x65\x78\x74\x2f\x63\x73\x73\x22\x3e\x0d\x0a\x09\x2e\x73\x74\
|
||||
\x30\x7b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\
|
||||
\x6b\x65\x3a\x23\x46\x46\x46\x43\x33\x45\x3b\x73\x74\x72\x6f\x6b\
|
||||
\x65\x2d\x77\x69\x64\x74\x68\x3a\x39\x3b\x73\x74\x72\x6f\x6b\x65\
|
||||
\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\x3b\x73\
|
||||
\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\
|
||||
\x3a\x31\x30\x3b\x7d\x0d\x0a\x09\x2e\x73\x74\x31\x7b\x66\x69\x6c\
|
||||
\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x37\
|
||||
\x30\x37\x31\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\
|
||||
\x74\x68\x3a\x31\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\
|
||||
\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\
|
||||
\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\
|
||||
\x7d\x0d\x0a\x09\x2e\x73\x74\x32\x7b\x66\x69\x6c\x6c\x3a\x6e\x6f\
|
||||
\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x46\x34\x46\x46\x30\
|
||||
\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\
|
||||
\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\
|
||||
\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\
|
||||
\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x7d\x0d\x0a\x09\
|
||||
\x2e\x73\x74\x33\x7b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\
|
||||
\x74\x72\x6f\x6b\x65\x3a\x23\x36\x36\x36\x36\x36\x36\x3b\x73\x74\
|
||||
\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x32\x3b\x73\x74\
|
||||
\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\
|
||||
\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\
|
||||
\x69\x6d\x69\x74\x3a\x31\x30\x3b\x7d\x0d\x0a\x3c\x2f\x73\x74\x79\
|
||||
\x6c\x65\x3e\x0d\x0a\x3c\x67\x3e\x0d\x0a\x09\x3c\x70\x61\x74\x68\
|
||||
\x20\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\x30\x22\x20\x64\x3d\x22\
|
||||
\x4d\x31\x38\x2e\x35\x2c\x31\x32\x37\x2e\x35\x63\x30\x2d\x36\x32\
|
||||
\x2e\x34\x36\x2c\x34\x34\x2e\x37\x33\x2d\x31\x31\x33\x2c\x31\x30\
|
||||
\x30\x2d\x31\x31\x33\x22\x2f\x3e\x0d\x0a\x3c\x2f\x67\x3e\x0d\x0a\
|
||||
\x3c\x70\x61\x74\x68\x20\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\x30\
|
||||
\x22\x20\x64\x3d\x22\x4d\x34\x36\x2c\x31\x33\x36\x63\x30\x2d\x35\
|
||||
\x35\x2e\x32\x37\x2c\x32\x39\x2e\x39\x37\x2d\x31\x30\x30\x2c\x36\
|
||||
\x37\x2d\x31\x30\x30\x22\x2f\x3e\x0d\x0a\x3c\x70\x61\x74\x68\x20\
|
||||
\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\x30\x22\x20\x64\x3d\x22\x4d\
|
||||
\x37\x31\x2e\x35\x2c\x31\x34\x36\x2e\x35\x63\x30\x2d\x34\x35\x2e\
|
||||
\x38\x38\x2c\x31\x35\x2e\x32\x31\x2d\x38\x33\x2c\x33\x34\x2d\x38\
|
||||
\x33\x22\x2f\x3e\x0d\x0a\x3c\x70\x61\x74\x68\x20\x63\x6c\x61\x73\
|
||||
\x73\x3d\x22\x73\x74\x30\x22\x20\x64\x3d\x22\x4d\x39\x30\x2e\x35\
|
||||
\x2c\x31\x35\x34\x2e\x35\x63\x30\x2d\x33\x33\x2e\x31\x36\x2c\x34\
|
||||
\x2e\x30\x33\x2d\x36\x30\x2c\x39\x2d\x36\x30\x22\x2f\x3e\x0d\x0a\
|
||||
\x3c\x67\x3e\x0d\x0a\x09\x3c\x70\x61\x74\x68\x20\x63\x6c\x61\x73\
|
||||
\x73\x3d\x22\x73\x74\x31\x22\x20\x64\x3d\x22\x4d\x31\x38\x36\x2e\
|
||||
\x38\x37\x2c\x34\x33\x63\x32\x39\x2e\x38\x32\x2c\x31\x37\x2e\x36\
|
||||
\x33\x2c\x33\x39\x2e\x30\x37\x2c\x35\x35\x2e\x30\x36\x2c\x32\x30\
|
||||
\x2e\x36\x35\x2c\x38\x33\x2e\x36\x31\x63\x2d\x31\x34\x2e\x37\x34\
|
||||
\x2c\x32\x32\x2e\x38\x34\x2d\x34\x36\x2e\x30\x32\x2c\x32\x39\x2e\
|
||||
\x39\x31\x2d\x36\x39\x2e\x38\x38\x2c\x31\x35\x2e\x38\x31\x0d\x0a\
|
||||
\x09\x09\x63\x2d\x31\x39\x2e\x30\x39\x2d\x31\x31\x2e\x32\x38\x2d\
|
||||
\x32\x35\x2d\x33\x35\x2e\x32\x34\x2d\x31\x33\x2e\x32\x31\x2d\x35\
|
||||
\x33\x2e\x35\x31\x63\x39\x2e\x34\x33\x2d\x31\x34\x2e\x36\x31\x2c\
|
||||
\x32\x39\x2e\x34\x35\x2d\x31\x39\x2e\x31\x34\x2c\x34\x34\x2e\x37\
|
||||
\x32\x2d\x31\x30\x2e\x31\x32\x63\x31\x32\x2e\x32\x32\x2c\x37\x2e\
|
||||
\x32\x32\x2c\x31\x36\x2c\x32\x32\x2e\x35\x35\x2c\x38\x2e\x34\x36\
|
||||
\x2c\x33\x34\x2e\x32\x35\x0d\x0a\x09\x09\x63\x2d\x36\x2e\x30\x34\
|
||||
\x2c\x39\x2e\x33\x35\x2d\x31\x38\x2e\x38\x35\x2c\x31\x32\x2e\x32\
|
||||
\x35\x2d\x32\x38\x2e\x36\x32\x2c\x36\x2e\x34\x38\x63\x2d\x37\x2e\
|
||||
\x38\x32\x2d\x34\x2e\x36\x32\x2d\x31\x30\x2e\x32\x34\x2d\x31\x34\
|
||||
\x2e\x34\x33\x2d\x35\x2e\x34\x31\x2d\x32\x31\x2e\x39\x32\x63\x33\
|
||||
\x2e\x38\x36\x2d\x35\x2e\x39\x39\x2c\x31\x32\x2e\x30\x36\x2d\x37\
|
||||
\x2e\x38\x34\x2c\x31\x38\x2e\x33\x32\x2d\x34\x2e\x31\x34\x0d\x0a\
|
||||
\x09\x09\x63\x35\x2c\x32\x2e\x39\x36\x2c\x36\x2e\x35\x35\x2c\x39\
|
||||
\x2e\x32\x34\x2c\x33\x2e\x34\x36\x2c\x31\x34\x2e\x30\x33\x63\x2d\
|
||||
\x32\x2e\x34\x37\x2c\x33\x2e\x38\x33\x2d\x37\x2e\x37\x32\x2c\x35\
|
||||
\x2e\x30\x32\x2d\x31\x31\x2e\x37\x32\x2c\x32\x2e\x36\x35\x22\x2f\
|
||||
\x3e\x0d\x0a\x09\x3c\x70\x61\x74\x68\x20\x63\x6c\x61\x73\x73\x3d\
|
||||
\x22\x73\x74\x32\x22\x20\x64\x3d\x22\x4d\x31\x38\x36\x2e\x38\x37\
|
||||
\x2c\x34\x33\x63\x32\x39\x2e\x38\x32\x2c\x31\x37\x2e\x36\x33\x2c\
|
||||
\x33\x39\x2e\x30\x37\x2c\x35\x35\x2e\x30\x36\x2c\x32\x30\x2e\x36\
|
||||
\x35\x2c\x38\x33\x2e\x36\x31\x63\x2d\x31\x34\x2e\x37\x34\x2c\x32\
|
||||
\x32\x2e\x38\x34\x2d\x34\x36\x2e\x30\x32\x2c\x32\x39\x2e\x39\x31\
|
||||
\x2d\x36\x39\x2e\x38\x38\x2c\x31\x35\x2e\x38\x31\x0d\x0a\x09\x09\
|
||||
\x63\x2d\x31\x39\x2e\x30\x39\x2d\x31\x31\x2e\x32\x38\x2d\x32\x35\
|
||||
\x2d\x33\x35\x2e\x32\x34\x2d\x31\x33\x2e\x32\x31\x2d\x35\x33\x2e\
|
||||
\x35\x31\x63\x39\x2e\x34\x33\x2d\x31\x34\x2e\x36\x31\x2c\x32\x39\
|
||||
\x2e\x34\x35\x2d\x31\x39\x2e\x31\x34\x2c\x34\x34\x2e\x37\x32\x2d\
|
||||
\x31\x30\x2e\x31\x32\x63\x31\x32\x2e\x32\x32\x2c\x37\x2e\x32\x32\
|
||||
\x2c\x31\x36\x2c\x32\x32\x2e\x35\x35\x2c\x38\x2e\x34\x36\x2c\x33\
|
||||
\x34\x2e\x32\x35\x0d\x0a\x09\x09\x63\x2d\x36\x2e\x30\x34\x2c\x39\
|
||||
\x2e\x33\x35\x2d\x31\x38\x2e\x38\x35\x2c\x31\x32\x2e\x32\x35\x2d\
|
||||
\x32\x38\x2e\x36\x32\x2c\x36\x2e\x34\x38\x63\x2d\x37\x2e\x38\x32\
|
||||
\x2d\x34\x2e\x36\x32\x2d\x31\x30\x2e\x32\x34\x2d\x31\x34\x2e\x34\
|
||||
\x33\x2d\x35\x2e\x34\x31\x2d\x32\x31\x2e\x39\x32\x63\x33\x2e\x38\
|
||||
\x36\x2d\x35\x2e\x39\x39\x2c\x31\x32\x2e\x30\x36\x2d\x37\x2e\x38\
|
||||
\x34\x2c\x31\x38\x2e\x33\x32\x2d\x34\x2e\x31\x34\x0d\x0a\x09\x09\
|
||||
\x63\x35\x2c\x32\x2e\x39\x36\x2c\x36\x2e\x35\x35\x2c\x39\x2e\x32\
|
||||
\x34\x2c\x33\x2e\x34\x36\x2c\x31\x34\x2e\x30\x33\x63\x2d\x32\x2e\
|
||||
\x34\x37\x2c\x33\x2e\x38\x33\x2d\x37\x2e\x37\x32\x2c\x35\x2e\x30\
|
||||
\x32\x2d\x31\x31\x2e\x37\x32\x2c\x32\x2e\x36\x35\x22\x2f\x3e\x0d\
|
||||
\x0a\x3c\x2f\x67\x3e\x0d\x0a\x3c\x6c\x69\x6e\x65\x20\x63\x6c\x61\
|
||||
\x73\x73\x3d\x22\x73\x74\x33\x22\x20\x78\x31\x3d\x22\x31\x32\x39\
|
||||
\x22\x20\x79\x31\x3d\x22\x31\x37\x34\x22\x20\x78\x32\x3d\x22\x31\
|
||||
\x30\x37\x22\x20\x79\x32\x3d\x22\x32\x31\x39\x22\x2f\x3e\x0d\x0a\
|
||||
\x3c\x6c\x69\x6e\x65\x20\x63\x6c\x61\x73\x73\x3d\x22\x73\x74\x33\
|
||||
\x22\x20\x78\x31\x3d\x22\x31\x37\x31\x22\x20\x79\x31\x3d\x22\x31\
|
||||
\x37\x32\x22\x20\x78\x32\x3d\x22\x32\x30\x30\x22\x20\x79\x32\x3d\
|
||||
\x22\x32\x34\x36\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\
|
||||
\x0a\
|
||||
"
|
||||
|
||||
qt_resource_name = b"\
|
||||
\x00\x03\
|
||||
\x00\x00\x70\x37\
|
||||
\x00\x69\
|
||||
\x00\x6d\x00\x67\
|
||||
\x00\x0b\
|
||||
\x05\x2c\x2e\x07\
|
||||
\x00\x6c\
|
||||
\x00\x65\x00\x64\x00\x5f\x00\x6f\x00\x66\x00\x66\x00\x2e\x00\x73\x00\x76\x00\x67\
|
||||
\x00\x07\
|
||||
\x05\xc9\x5a\x27\
|
||||
\x00\x6f\
|
||||
\x00\x66\x00\x66\x00\x2e\x00\x73\x00\x76\x00\x67\
|
||||
\x00\x06\
|
||||
\x05\x41\x5a\xc7\
|
||||
\x00\x4f\
|
||||
\x00\x4e\x00\x2e\x00\x73\x00\x76\x00\x67\
|
||||
\x00\x0a\
|
||||
\x06\x6f\x0d\x87\
|
||||
\x00\x6c\
|
||||
\x00\x65\x00\x64\x00\x5f\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\
|
||||
"
|
||||
|
||||
qt_resource_struct_v1 = b"\
|
||||
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
|
||||
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x02\
|
||||
\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
|
||||
\x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x0a\xea\
|
||||
\x00\x00\x00\x28\x00\x00\x00\x00\x00\x01\x00\x00\x06\x20\
|
||||
\x00\x00\x00\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x0f\xaf\
|
||||
"
|
||||
|
||||
qt_resource_struct_v2 = b"\
|
||||
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
|
||||
\x00\x00\x00\x00\x00\x00\x00\x00\
|
||||
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x02\
|
||||
\x00\x00\x00\x00\x00\x00\x00\x00\
|
||||
\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
|
||||
\x00\x00\x01\x84\xf8\x3a\xc3\xc5\
|
||||
\x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x0a\xea\
|
||||
\x00\x00\x01\x84\xf8\x31\x3f\xc7\
|
||||
\x00\x00\x00\x28\x00\x00\x00\x00\x00\x01\x00\x00\x06\x20\
|
||||
\x00\x00\x01\x84\xf8\x33\x7b\x76\
|
||||
\x00\x00\x00\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x0f\xaf\
|
||||
\x00\x00\x01\x84\xf8\x3a\x34\x95\
|
||||
"
|
||||
|
||||
qt_version = [int(v) for v in QtCore.qVersion().split('.')]
|
||||
if qt_version < [5, 8, 0]:
|
||||
rcc_version = 1
|
||||
qt_resource_struct = qt_resource_struct_v1
|
||||
else:
|
||||
rcc_version = 2
|
||||
qt_resource_struct = qt_resource_struct_v2
|
||||
|
||||
def qInitResources():
|
||||
QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
|
||||
|
||||
def qCleanupResources():
|
||||
QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
|
||||
|
||||
qInitResources()
|
24
TODO.txt
Normal file
24
TODO.txt
Normal file
@ -0,0 +1,24 @@
|
||||
https://www.youtube.com/watch?v=CnMfhhx0GBI&list=PL0lO_mIqDDFXeDkOLHmEsL_HAEhw4-xDX&index=3&ab_channel=%D0%93%D0%BE%D1%88%D0%B0%D0%94%D1%83%D0%B4%D0%B0%D1%80%D1%8C
|
||||
|
||||
создаем UI
|
||||
сохраняем .ui
|
||||
преобразуем через cmd в .py в каталоге рабочем
|
||||
pyuic5 -x PyQt_app.ui -o main.py
|
||||
нужна библиотека для Py: в консоди Visual Studio вбиваем: python -m pip install requests
|
||||
|
||||
|
||||
|
||||
|
||||
для компиляции py-программы в .exe:
|
||||
|
||||
# Открыть командную строку windows
|
||||
# Установить pyinstaller
|
||||
|
||||
pip install pyinstaller
|
||||
|
||||
# Затем перейти в папку с Вашим файлом .py в командной строке (при помощи команды cd)
|
||||
# Запустить команду pyinstaller не забудьте указать имя вашего скрипта
|
||||
|
||||
pyinstaller --onefile main.py
|
||||
|
||||
# Всё - у вас в папке появится папка src и там будет .exe файл.
|
20
config.json
Normal file
20
config.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"uiFileName": "PyQt_app.ui",
|
||||
"uiPath": "ui/",
|
||||
"defaultMDNSname": "esp8266",
|
||||
"defaultPostRoute": "/postvalue",
|
||||
"defaultGetRoute": "/sensval",
|
||||
"pressure": "355",
|
||||
"temperature": [2, 45, 56, 66, 12, 30, 23, 25, 22, 15],
|
||||
"button1State": "True",
|
||||
"button2State": "False",
|
||||
"button3State": "True",
|
||||
"ambient_light": "1",
|
||||
"red_light": "1",
|
||||
"green_light":"1",
|
||||
"blue_light":"0",
|
||||
"lightness": "0",
|
||||
"acceleration_x": "12",
|
||||
"acceleration_y": "23",
|
||||
"acceleration_z": "11"
|
||||
}
|
299
main.py
Normal file
299
main.py
Normal file
@ -0,0 +1,299 @@
|
||||
from PyQt5 import QtCore, QtGui, QtWidgets
|
||||
from PyQt5 import uic
|
||||
from PyQt5.QtGui import QColor, QPalette
|
||||
from PyQt5.QtGui import QPixmap
|
||||
from PyQt5.QtCore import QTimer
|
||||
from PyQt5.QtWidgets import *
|
||||
from PyQt5.QtNetwork import QNetworkAccessManager, QNetworkRequest
|
||||
|
||||
import requests
|
||||
import time
|
||||
import json
|
||||
import Res_rc
|
||||
import copy
|
||||
import pyqtgraph as pg
|
||||
#import matplotlib.pyplot as plt
|
||||
#import sys
|
||||
|
||||
colors = {} #переменная для работы с цветом, позже нам понадобится
|
||||
last_clicked_label = None
|
||||
plotLen = 20
|
||||
valArr = [20] * plotLen
|
||||
plot = None
|
||||
|
||||
def led1 (checked): #отвечает за включение первого светодиода
|
||||
if checked:
|
||||
form.pushButton_2.setText("Выкл")
|
||||
print("I'm worked too much")
|
||||
form.label_24.hide()
|
||||
form.label_20.show()
|
||||
else:
|
||||
form.label_20.hide()
|
||||
form.label_24.show()
|
||||
form.pushButton_2.setText("Вкл")
|
||||
print ("I'm worked too")
|
||||
|
||||
def led2 (checked): #отвечает за включение второго светодиода
|
||||
if checked:
|
||||
form.pushButton_3.setText("Выкл")
|
||||
print("I'm worked too much")
|
||||
form.label_27.hide()
|
||||
form.label_26.show()
|
||||
else:
|
||||
form.label_26.hide()
|
||||
form.label_27.show()
|
||||
form.pushButton_3.setText("Вкл")
|
||||
print ("I'm worked too")
|
||||
|
||||
def led3 (checked): #отвечает за включение третьего светодиода
|
||||
if checked:
|
||||
form.pushButton_4.setText("Выкл")
|
||||
print("I'm worked too much")
|
||||
form.label_31.hide()
|
||||
form.label_29.show()
|
||||
#state = form.label_24.isVisible()
|
||||
|
||||
else:
|
||||
form.label_29.hide()
|
||||
form.label_31.show()
|
||||
form.pushButton_4.setText("Вкл")
|
||||
print ("I'm worked too")
|
||||
|
||||
|
||||
def updateLCD(): #обновление дисплея
|
||||
global temp #переменная для работы с дисплеем
|
||||
form.lcdNumber.display(temp)
|
||||
|
||||
def sed (): #проверка работы элемента
|
||||
print ("I'm worked!")
|
||||
|
||||
led_data = { #список начальных параметров у светодиода
|
||||
"leds1": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds2": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds3": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds4": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds5": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds6": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds7": {"red": 0, "green": 0, "blue": 0},
|
||||
"leds8": {"red": 0, "green": 0, "blue": 0},
|
||||
}
|
||||
|
||||
def vkl():
|
||||
for led in form.leds:
|
||||
#осторожно! Одинаковые названия у объектов Led и JSON.
|
||||
led.setStyleSheet(f"background-color: yellow;")
|
||||
led_data[led.objectName()]["red"] = 255
|
||||
led_data[led.objectName()]["green"] = 255
|
||||
led_data[led.objectName()]["blue"] = 0
|
||||
|
||||
def vikl():
|
||||
for led in form.leds:
|
||||
#осторожно! Одинаковые названия у объектов Led и JSON.
|
||||
led.setStyleSheet(f"background-color: black;")
|
||||
led_data[led.objectName()]["red"] = 0
|
||||
led_data[led.objectName()]["green"] = 0
|
||||
led_data[led.objectName()]["blue"] = 0
|
||||
|
||||
def color():
|
||||
color = QColorDialog.getColor() #получение цвета от диалога
|
||||
if color.isValid(): #проверка наличия цвета и применение его над изображением программы
|
||||
palette = QPalette()
|
||||
palette.setColor(QPalette.Button, color)
|
||||
form.color_b.setPalette(palette)
|
||||
for led in form.leds:
|
||||
led.setStyleSheet(f"background-color: {color.name()};")
|
||||
led_data[led.objectName()]["red"] = color.red()
|
||||
led_data[led.objectName()]["green"] = color.green()
|
||||
led_data[led.objectName()]["blue"] = color.blue()
|
||||
|
||||
def led_clicked(event):
|
||||
colors = led.palette().color(QPalette.Background)
|
||||
sender= QApplication.widgetAt(event.globalPos()) #QApplication.widgetAt() для получения текущего виджета, на котором было совершено действие
|
||||
color = QColorDialog.getColor()
|
||||
if color.isValid():
|
||||
#caution! Naming will be the same for a Led and JSON led objects
|
||||
sender.setStyleSheet(f"background-color: {color.name()};")
|
||||
led_data[sender.objectName()]["red"] = color.red()
|
||||
led_data[sender.objectName()]["green"] = color.green()
|
||||
led_data[sender.objectName()]["blue"] = color.blue()
|
||||
else:
|
||||
form.leds.setStyleSheet(" ")
|
||||
|
||||
def sendMessage():
|
||||
url = form.lineEdit.text()
|
||||
labels_dict = {}
|
||||
labels_dict["LED1"] = form.label_20.isVisible()
|
||||
labels_dict["LED2"] = form.label_26.isVisible()
|
||||
labels_dict["LED3"] = form.label_29.isVisible()
|
||||
|
||||
json_data = {}
|
||||
json_data.update(led_data)
|
||||
json_data.update(labels_dict)
|
||||
json_str = json.dumps(json_data, separators=(',', ':'))
|
||||
|
||||
data_str = 'Я отправляю текст на: ' + url + '\n'+ json_str
|
||||
form.textEdit.setPlainText(data_str)
|
||||
|
||||
headers = {'Content-type': 'application/json', 'Accept': 'text/plain'} #заголовки запроса
|
||||
response = requests.post(url, json=json_data, headers=headers) #отправка POST запроса
|
||||
|
||||
# обрабатываем ответ и выводим его в поле вывода
|
||||
if response.status_code == 200:
|
||||
form.textEdit.append('О, все прошло успешно!\n') #выводим значение в line_edit
|
||||
else:
|
||||
form.textEdit.append('Ошибка при получении данных')
|
||||
|
||||
|
||||
|
||||
def getValueFromMacket():
|
||||
url = form.lineEdit_2.text()
|
||||
response = requests.get(url) #отправка POST запроса
|
||||
|
||||
# обрабатываем ответ и выводим его в поле вывода
|
||||
if response.status_code == 200:
|
||||
data=response.json() #функция преобразования данных в объект питон
|
||||
#Parse the date
|
||||
form.textEdit.append(json.dumps(data)) #выводим значение в line_edit
|
||||
form.textEdit.append(str(data["temperature"]))
|
||||
|
||||
bs = list()
|
||||
bs.append(data["button1State"])
|
||||
bs.append(data["button2State"])
|
||||
bs.append(data["button3State"])
|
||||
update_button(bs)
|
||||
|
||||
update_pressure(data["pressure"])
|
||||
|
||||
form.lcdNumber_7.display(data["ambient_light"])
|
||||
form.lcdNumber_2.display (data["red_light"])
|
||||
form.lcdNumber_3.display (data["green_light"])
|
||||
form.lcdNumber_4.display (data["blue_light"])
|
||||
form.lcdNumber_8.display (data["lightness"])
|
||||
|
||||
form.lcdNumber_5.display(data['acceleration_x'])
|
||||
form.lcdNumber_9.display (data['acceleration_y'])
|
||||
form.lcdNumber_6.display (data['acceleration_z'])
|
||||
|
||||
led1(data['LED1'])
|
||||
led2(data['LED2'])
|
||||
led3(data['LED3'])
|
||||
valArr.pop(0)
|
||||
valArr.append(data["temperature"])
|
||||
print(valArr)
|
||||
UpdatePlot(plot, valArr)
|
||||
else:
|
||||
form.textEdit.append('Ошибка при получении данных')
|
||||
|
||||
|
||||
#json.load(file) @ACHT! Method to convert Str to JSON
|
||||
|
||||
|
||||
def update_pressure(p):
|
||||
form.lcd_pressure.display(p)
|
||||
|
||||
def update_button (bs):
|
||||
for i in range(1, 4):
|
||||
button_state = bs[i-1]
|
||||
if button_state == 'True':
|
||||
getattr(form, f'on_{i}').show()
|
||||
getattr(form, f'off_{i}').hide()
|
||||
else:
|
||||
getattr(form, f'on_{i}').hide()
|
||||
getattr(form, f'off_{i}').show()
|
||||
|
||||
|
||||
def UpdatePlot(plot, val):
|
||||
x = list(range(1, len(valArr)+1))
|
||||
bargraph = pg.BarGraphItem(x = x, height = val, width = 0.6, brush ='g')
|
||||
plot.clear()
|
||||
plot.addItem(bargraph)
|
||||
|
||||
def Plots(form, valArr):
|
||||
widget = QWidget()
|
||||
plot = pg.plot() #создает объект PlotWidget из библиотеки PyqtGraph
|
||||
|
||||
x = list(range(1, len(valArr)+1))
|
||||
bargraph = pg.BarGraphItem(x = x, height = valArr, width = 0.6, brush ='g')
|
||||
plot.addItem(bargraph)
|
||||
|
||||
# Creating a grid layout
|
||||
layout = QGridLayout()
|
||||
layout.addWidget(plot, 0,0)
|
||||
form.plotwidget.setLayout(layout)
|
||||
|
||||
return plot
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
# Opening JSON file
|
||||
f = open('config.json') #открывает файл 'config.json', загружает его содержимое в переменную 'conf' в формате словаря (dictionary) при помощи функции 'json.load()', а затем выводит все ключи словаря 'conf' при помощи цикла 'for'.
|
||||
conf = json.load(open('config.json'))
|
||||
f.close()
|
||||
|
||||
print("Find an arguments:")
|
||||
for i in conf:
|
||||
print(i)
|
||||
|
||||
import sys
|
||||
|
||||
Form, Window = uic.loadUiType(conf['uiPath'] + conf['uiFileName'])
|
||||
|
||||
app = QApplication(sys.argv)# Создаем экземпляр QApplication и передаем параметры командной строки
|
||||
window = Window()
|
||||
form = Form()
|
||||
form.setupUi(window)
|
||||
window.show() # Окна скрыты по умолчанию!
|
||||
window.setWindowTitle('Lr4') #nazvanie
|
||||
form.pushButton.clicked.connect(sendMessage) #привязываем функцию к кнопке Отправить
|
||||
form.lineEdit.setText("http://" + conf['defaultMDNSname'] + conf['defaultPostRoute'])
|
||||
form.lineEdit_2.setText("http://" + conf['defaultMDNSname'] + conf['defaultGetRoute'])
|
||||
form.pushButton_5.clicked.connect(getValueFromMacket) #привязываем функцию к кнопке Отправить GET запрос
|
||||
|
||||
|
||||
form.pushButton_2.setCheckable(True) #вкл режим перекл
|
||||
form.pushButton_2.setChecked(False) #нач значение
|
||||
form.label_20.hide()
|
||||
form.pushButton_2.toggled["bool"].connect(led1)
|
||||
|
||||
form.pushButton_3.setCheckable(True) #вкл режим перекл
|
||||
form.pushButton_3.setChecked(False) #нач значение
|
||||
form.label_26.hide()
|
||||
form.pushButton_3.toggled["bool"].connect(led2)
|
||||
|
||||
form.pushButton_4.setCheckable(True) #вкл режим перекл
|
||||
form.pushButton_4.setChecked(False) #нач значение
|
||||
form.label_29.hide()
|
||||
form.pushButton_4.toggled["bool"].connect(led3)
|
||||
|
||||
form.on_1.hide()
|
||||
form.on_2.hide()
|
||||
form.on_3.hide()
|
||||
|
||||
form.lcdNumber.display(45)
|
||||
|
||||
|
||||
form.leds = [form.leds1, form.leds2, form.leds3, form.leds4, form.leds5, form.leds6, form.leds7, form.leds8]
|
||||
|
||||
|
||||
for led in form.leds:
|
||||
led.mousePressEvent = led_clicked
|
||||
|
||||
timer = QTimer()
|
||||
timer.setInterval(1000)
|
||||
|
||||
#Connect the timer to the update_pressure function
|
||||
#TODO connect to getSensValue from macket
|
||||
#timer.timeout.connect(update_pressure)
|
||||
#timer.timeout.connect (update_button)
|
||||
#timer.timeout.connect (update_light)
|
||||
#timer.timeout.connect (update_acceleration)
|
||||
|
||||
timer.start()
|
||||
|
||||
form.vkl_b.clicked.connect(vkl)
|
||||
form.vikl_b.clicked.connect(vikl)
|
||||
form.color_b.clicked.connect(color)
|
||||
|
||||
plot = Plots(form, valArr)
|
||||
|
||||
sys.exit (app.exec_()) # Запуск цикла событий
|
23
res/ON.svg
Normal file
23
res/ON.svg
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Слой_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 256 256" style="enable-background:new 0 0 256 256;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#999999;stroke-width:26;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st1{fill:none;stroke:#4D4D4D;stroke-width:15;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st2{fill:none;stroke:#999999;stroke-width:36;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st3{fill:none;stroke:#666666;stroke-width:21;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st4{fill:#042000;}
|
||||
.st5{font-family:'MyriadPro-Regular';}
|
||||
.st6{font-size:117.7872px;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M133,193c0-90.65,48.3-164,108-164"/>
|
||||
<path class="st1" d="M133,193c0-90.65,48.3-164,108-164"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M22,235c77.47-57.45,173.63-58.79,215-3"/>
|
||||
<path class="st3" d="M22,235c77.47-57.45,173.63-58.79,215-3"/>
|
||||
</g>
|
||||
<text transform="matrix(0.8002 0 0 1 4.0435 93.5532)" class="st4 st5 st6">ON</text>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
11
res/Res.qrc
Normal file
11
res/Res.qrc
Normal file
@ -0,0 +1,11 @@
|
||||
<RCC>
|
||||
<qresource prefix="img">
|
||||
<file>led_off.svg</file>
|
||||
<file>led_on.svg</file>
|
||||
<file>off.svg</file>
|
||||
<file>ON.svg</file>
|
||||
</qresource>
|
||||
<qresource prefix="img2">
|
||||
<file>Svet.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
BIN
res/Svet.png
Normal file
BIN
res/Svet.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
BIN
res/led.png
Normal file
BIN
res/led.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
1924
res/led_off.ai
Normal file
1924
res/led_off.ai
Normal file
File diff suppressed because one or more lines are too long
22
res/led_off.svg
Normal file
22
res/led_off.svg
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Слой_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 256 256" style="enable-background:new 0 0 256 256;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#2A2E00;stroke-width:16;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st1{fill:none;stroke:#150004;stroke-width:12;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st2{fill:none;stroke:#666666;stroke-width:12;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M186.87,43c29.82,17.63,39.07,55.06,20.65,83.61c-14.74,22.84-46.02,29.91-69.88,15.81
|
||||
c-19.09-11.28-25-35.24-13.21-53.51c9.43-14.61,29.45-19.14,44.72-10.12c12.22,7.22,16,22.55,8.46,34.25
|
||||
c-6.04,9.35-18.85,12.25-28.62,6.48c-7.82-4.62-10.24-14.43-5.41-21.92c3.86-5.99,12.06-7.84,18.32-4.14
|
||||
c5,2.96,6.55,9.24,3.46,14.03c-2.47,3.83-7.72,5.02-11.72,2.65"/>
|
||||
<path class="st1" d="M186.87,43c29.82,17.63,39.07,55.06,20.65,83.61c-14.74,22.84-46.02,29.91-69.88,15.81
|
||||
c-19.09-11.28-25-35.24-13.21-53.51c9.43-14.61,29.45-19.14,44.72-10.12c12.22,7.22,16,22.55,8.46,34.25
|
||||
c-6.04,9.35-18.85,12.25-28.62,6.48c-7.82-4.62-10.24-14.43-5.41-21.92c3.86-5.99,12.06-7.84,18.32-4.14
|
||||
c5,2.96,6.55,9.24,3.46,14.03c-2.47,3.83-7.72,5.02-11.72,2.65"/>
|
||||
</g>
|
||||
<line class="st2" x1="129" y1="174" x2="107" y2="219"/>
|
||||
<line class="st2" x1="171" y1="172" x2="200" y2="246"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
1929
res/led_on.ai
Normal file
1929
res/led_on.ai
Normal file
File diff suppressed because one or more lines are too long
29
res/led_on.svg
Normal file
29
res/led_on.svg
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Слой_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 256 256" style="enable-background:new 0 0 256 256;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#FFFC3E;stroke-width:9;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st1{fill:none;stroke:#707100;stroke-width:16;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st2{fill:none;stroke:#F4FF02;stroke-width:12;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st3{fill:none;stroke:#666666;stroke-width:12;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M18.5,127.5c0-62.46,44.73-113,100-113"/>
|
||||
</g>
|
||||
<path class="st0" d="M46,136c0-55.27,29.97-100,67-100"/>
|
||||
<path class="st0" d="M71.5,146.5c0-45.88,15.21-83,34-83"/>
|
||||
<path class="st0" d="M90.5,154.5c0-33.16,4.03-60,9-60"/>
|
||||
<g>
|
||||
<path class="st1" d="M186.87,43c29.82,17.63,39.07,55.06,20.65,83.61c-14.74,22.84-46.02,29.91-69.88,15.81
|
||||
c-19.09-11.28-25-35.24-13.21-53.51c9.43-14.61,29.45-19.14,44.72-10.12c12.22,7.22,16,22.55,8.46,34.25
|
||||
c-6.04,9.35-18.85,12.25-28.62,6.48c-7.82-4.62-10.24-14.43-5.41-21.92c3.86-5.99,12.06-7.84,18.32-4.14
|
||||
c5,2.96,6.55,9.24,3.46,14.03c-2.47,3.83-7.72,5.02-11.72,2.65"/>
|
||||
<path class="st2" d="M186.87,43c29.82,17.63,39.07,55.06,20.65,83.61c-14.74,22.84-46.02,29.91-69.88,15.81
|
||||
c-19.09-11.28-25-35.24-13.21-53.51c9.43-14.61,29.45-19.14,44.72-10.12c12.22,7.22,16,22.55,8.46,34.25
|
||||
c-6.04,9.35-18.85,12.25-28.62,6.48c-7.82-4.62-10.24-14.43-5.41-21.92c3.86-5.99,12.06-7.84,18.32-4.14
|
||||
c5,2.96,6.55,9.24,3.46,14.03c-2.47,3.83-7.72,5.02-11.72,2.65"/>
|
||||
</g>
|
||||
<line class="st3" x1="129" y1="174" x2="107" y2="219"/>
|
||||
<line class="st3" x1="171" y1="172" x2="200" y2="246"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
2033
res/off.ai
Normal file
2033
res/off.ai
Normal file
File diff suppressed because one or more lines are too long
23
res/off.svg
Normal file
23
res/off.svg
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Слой_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 256 256" style="enable-background:new 0 0 256 256;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#999999;stroke-width:26;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st1{fill:none;stroke:#4D4D4D;stroke-width:15;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st2{fill:none;stroke:#999999;stroke-width:36;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st3{fill:none;stroke:#666666;stroke-width:21;stroke-linecap:round;stroke-miterlimit:10;}
|
||||
.st4{fill:#330007;}
|
||||
.st5{font-family:'MyriadPro-Regular';}
|
||||
.st6{font-size:117.7872px;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M133,193c0-86.78-50.54-157-113-157"/>
|
||||
<path class="st1" d="M133,193c0-86.78-50.54-157-113-157"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M22,235c77.47-57.45,173.63-58.79,215-3"/>
|
||||
<path class="st3" d="M22,235c77.47-57.45,173.63-58.79,215-3"/>
|
||||
</g>
|
||||
<text transform="matrix(0.8002 0 0 1 100.0435 93.5532)" class="st4 st5 st6">OFF</text>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
65
stand_code/StandData.h
Normal file
65
stand_code/StandData.h
Normal file
@ -0,0 +1,65 @@
|
||||
#include <ArduinoJson.h>
|
||||
#include <FastLED.h>
|
||||
|
||||
struct StandData{
|
||||
bool LED1 = false,
|
||||
LED2 = false,
|
||||
LED3 = false;
|
||||
|
||||
CRGB stripLedsColors[NUM_LEDS_IN_STRIPLINE];
|
||||
|
||||
bool button1State,
|
||||
button2State,
|
||||
button3State;
|
||||
|
||||
float temperature,
|
||||
pressure;
|
||||
|
||||
uint16_t ambient_light,
|
||||
red_light,
|
||||
green_light,
|
||||
blue_light;
|
||||
|
||||
int lightness;
|
||||
|
||||
float acceleration_x,
|
||||
acceleration_y,
|
||||
acceleration_z;
|
||||
|
||||
String GetJSONString(void){
|
||||
StaticJsonDocument<700> jsonDocument;
|
||||
|
||||
jsonDocument["LED1"] = LED1;
|
||||
jsonDocument["LED2"] = LED2;
|
||||
jsonDocument["LED3"] = LED3;
|
||||
|
||||
jsonDocument["button1State"] = button1State;
|
||||
jsonDocument["button2State"] = button2State;
|
||||
jsonDocument["button3State"] = button3State;
|
||||
|
||||
jsonDocument["temperature"] = temperature;
|
||||
jsonDocument["pressure"] = pressure;
|
||||
|
||||
jsonDocument["ambient_light"] = ambient_light;
|
||||
jsonDocument["red_light"] = red_light;
|
||||
jsonDocument["green_light"] = green_light;
|
||||
jsonDocument["blue_light"] = blue_light;
|
||||
jsonDocument["lightness"] = lightness;
|
||||
|
||||
jsonDocument["acceleration_x"] = acceleration_x;
|
||||
jsonDocument["acceleration_y"] = acceleration_y;
|
||||
jsonDocument["acceleration_z"] = acceleration_z;
|
||||
|
||||
for(int i = 0; i < NUM_LEDS_IN_STRIPLINE; i++)
|
||||
{
|
||||
String nameObj = "leds" + (i+1);
|
||||
JsonObject color_r = jsonDocument.createNestedObject(nameObj);
|
||||
color_r["red"] = stripLedsColors[i].r;
|
||||
color_r["green"] = stripLedsColors[i].g;
|
||||
color_r["blue"] = stripLedsColors[i].b;
|
||||
}
|
||||
String tmp;
|
||||
serializeJsonPretty(jsonDocument, tmp);
|
||||
return tmp;
|
||||
}
|
||||
};
|
330
stand_code/Test_Lab из 2303.ino
Normal file
330
stand_code/Test_Lab из 2303.ino
Normal file
@ -0,0 +1,330 @@
|
||||
#define PIN_LED1 12
|
||||
#define PIN_LED2 13
|
||||
#define PIN_LED3 15
|
||||
#define PIN_LIGHT_A0 A0
|
||||
|
||||
#define FASTLED_ESP8266_RAW_PIN_ORDER
|
||||
#include <FastLED.h>
|
||||
#define NUM_LEDS_IN_STRIPLINE 8
|
||||
#define DATA_PIN 16
|
||||
CRGB ledsLine[NUM_LEDS_IN_STRIPLINE];
|
||||
|
||||
#include <SFE_BMP180.h>
|
||||
#include <Wire.h>
|
||||
SFE_BMP180 pressure;
|
||||
double baseline; // baseline pressure
|
||||
|
||||
#include <Wire.h>
|
||||
#include <Adafruit_Sensor.h>
|
||||
#include <Adafruit_ADXL345_U.h>
|
||||
/* Assign a unique ID to this sensor at the same time */
|
||||
Adafruit_ADXL345_Unified accel = Adafruit_ADXL345_Unified(12345);
|
||||
|
||||
#include <Wire.h>
|
||||
#include <SparkFun_APDS9960.h>
|
||||
// Global Variables
|
||||
SparkFun_APDS9960 apds = SparkFun_APDS9960();
|
||||
uint16_t ambient_light = 0;
|
||||
uint16_t red_light = 0;
|
||||
uint16_t green_light = 0;
|
||||
uint16_t blue_light = 0;
|
||||
|
||||
|
||||
char webPageMain[] PROGMEM = R"=====(
|
||||
<safasf>
|
||||
</asfasf>
|
||||
)=====";
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
while (!Serial);
|
||||
Serial.println("Begin scanning\n");
|
||||
|
||||
Serial.println(webPageMain);
|
||||
|
||||
LedCheck();
|
||||
LightCheck();
|
||||
StripLineCheck();
|
||||
PresureSensorCheck();
|
||||
AxelerometerCheck();
|
||||
GuesturesSensorCheck();
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// LedCheck();
|
||||
// Tumbler();
|
||||
//delay(2000);
|
||||
// Serial.println("\nLoop");
|
||||
}
|
||||
void LedCheck()
|
||||
{
|
||||
pinMode(PIN_LED1, OUTPUT);
|
||||
pinMode(PIN_LED2, OUTPUT);
|
||||
pinMode(PIN_LED3, OUTPUT);
|
||||
// pinMode(PIN_LED4, OUTPUT);
|
||||
int decay1 = 500;
|
||||
delay(decay1);
|
||||
Serial.println("\nПРОГРАММА ТЕСТИРОВАНИЯ МАКЕТА - ПО КУРСУ ПРОЕКТИРОВАНИЕ ВСТРОЕННЫХ ПРИЛОЖЕНИЙ");
|
||||
|
||||
Serial.println("\n1.ПРОВЕРКА СВЕТОДИОДОВ");
|
||||
digitalWrite(PIN_LED1, 1);
|
||||
Serial.println("СИНИЙ - ON");
|
||||
delay(decay1);
|
||||
digitalWrite(PIN_LED1, 0);
|
||||
digitalWrite(PIN_LED2, 1);
|
||||
// Serial.println("LED1 - OFF");
|
||||
Serial.println("ЗЕЛЕНЫЙ - ON");
|
||||
delay(decay1);
|
||||
digitalWrite(PIN_LED2, 0);
|
||||
digitalWrite(PIN_LED3, 1);
|
||||
// Serial.println("LED2 - OFF");
|
||||
Serial.println("ЖЕЛТЫЙ - ON");
|
||||
delay(decay1);
|
||||
digitalWrite(PIN_LED3, 0);
|
||||
// digitalWrite(PIN_LED4, 1);
|
||||
// Serial.println("LED3 - OFF");
|
||||
Serial.println("ЕСЛИ СВЕТОДИОДЫ ЗАГОРЕЛИСЬ ПО ОЧЕРЕДИ - ПОДКЛЮЧЕНИЕ ПРАВИЛЬНОЕ\n");
|
||||
delay(decay1);
|
||||
// digitalWrite(PIN_LED4, 0);
|
||||
// Serial.println("LED3 - OFF");
|
||||
}
|
||||
void LightCheck()
|
||||
{
|
||||
Serial.println("\n2.ПРОВЕРКА ДАТЧИКА ОСВЕЩЕННОСТИ");
|
||||
int val = analogRead(PIN_LIGHT_A0);
|
||||
if(val != 0 && val != 1023)
|
||||
{
|
||||
Serial.print("ЕСЛИ ЗНАЧЕНИЕ НАХОДИТСЯ В ПРЕДЕЛАХ 0..1023, ДАТЧИК РАБОТАЕТ ПРАВИЛЬНО = ");
|
||||
Serial.println(val);
|
||||
}
|
||||
else
|
||||
Serial.println("ДАТЧИК ОСВЕЩЕННОСТИ НЕ РАБОТАЕТ\nПРОВЕРЬТЕ ПОДКЛЮЧЕНИЕ\n");
|
||||
delay(3000);
|
||||
}
|
||||
void StripLineCheck()
|
||||
{
|
||||
Serial.println("\n3.ПРОВЕРКА ЛИНЕЙКИ СВЕТОДИОДОВ");
|
||||
FastLED.addLeds<WS2812B, DATA_PIN, RGB>(ledsLine, NUM_LEDS_IN_STRIPLINE);
|
||||
int decay = 50;
|
||||
|
||||
for(int i = 0; i < NUM_LEDS_IN_STRIPLINE; i++)
|
||||
{
|
||||
ledsLine[i] = CRGB::Red;
|
||||
FastLED.show();
|
||||
delay(decay);
|
||||
//ledsLineNow turn the LED off, then pause
|
||||
ledsLine[i] = CRGB::Black;
|
||||
FastLED.show();
|
||||
delay(decay);
|
||||
|
||||
ledsLine[i] = CRGB::DarkViolet ;
|
||||
FastLED.show();
|
||||
delay(decay);
|
||||
// Now turn the LED off, then pause
|
||||
ledsLine[i] = CRGB::Black;
|
||||
FastLED.show();
|
||||
delay(decay);
|
||||
|
||||
ledsLine[i] = CRGB::NavajoWhite;
|
||||
FastLED.show();
|
||||
delay(decay);
|
||||
// Now turn the LED off, then pause
|
||||
ledsLine[i] = CRGB::Black;
|
||||
FastLED.show();
|
||||
delay(decay);
|
||||
|
||||
ledsLine[i] = CRGB::Salmon;
|
||||
FastLED.show();
|
||||
delay(decay);
|
||||
// Now turn the LED off, then pause
|
||||
ledsLine[i] = CRGB::Black;
|
||||
FastLED.show();
|
||||
delay(decay);
|
||||
}
|
||||
|
||||
Serial.println("\nЕСЛИ СВЕТОДИОДЫ МИГАЮТ РАЗНЫМИ ЦВЕТАМИ: OK");
|
||||
Serial.println("ЕСЛИ СВЕТОДИОДЫ НЕ МИГАЮТ: ОШИБКА\n");
|
||||
delay(1000);
|
||||
}
|
||||
|
||||
double getPressure()
|
||||
{
|
||||
char status;
|
||||
double T,P,p0,a;
|
||||
|
||||
// You must first get a temperature measurement to perform a pressure reading.
|
||||
|
||||
// Start a temperature measurement:
|
||||
// If request is successful, the number of ms to wait is returned.
|
||||
// If request is unsuccessful, 0 is returned.
|
||||
|
||||
status = pressure.startTemperature();
|
||||
if (status != 0)
|
||||
{
|
||||
// Wait for the measurement to complete:
|
||||
|
||||
delay(status);
|
||||
|
||||
// Retrieve the completed temperature measurement:
|
||||
// Note that the measurement is stored in the variable T.
|
||||
// Use '&T' to provide the address of T to the function.
|
||||
// Function returns 1 if successful, 0 if failure.
|
||||
|
||||
status = pressure.getTemperature(T);
|
||||
if (status != 0)
|
||||
{
|
||||
// Start a pressure measurement:
|
||||
// The parameter is the oversampling setting, from 0 to 3 (highest res, longest wait).
|
||||
// If request is successful, the number of ms to wait is returned.
|
||||
// If request is unsuccessful, 0 is returned.
|
||||
|
||||
status = pressure.startPressure(3);
|
||||
if (status != 0)
|
||||
{
|
||||
// Wait for the measurement to complete:
|
||||
delay(status);
|
||||
|
||||
// Retrieve the completed pressure measurement:
|
||||
// Note that the measurement is stored in the variable P.
|
||||
// Use '&P' to provide the address of P.
|
||||
// Note also that the function requires the previous temperature measurement (T).
|
||||
// (If temperature is stable, you can do one temperature measurement for a number of pressure measurements.)
|
||||
// Function returns 1 if successful, 0 if failure.
|
||||
|
||||
status = pressure.getPressure(P,T);
|
||||
if (status != 0)
|
||||
{
|
||||
return(P);
|
||||
}
|
||||
else Serial.println("error retrieving pressure measurement\n");
|
||||
}
|
||||
else Serial.println("error starting pressure measurement\n");
|
||||
}
|
||||
else Serial.println("error retrieving temperature measurement\n");
|
||||
}
|
||||
else Serial.println("error starting temperature measurement\n");
|
||||
}
|
||||
|
||||
void PresureSensorCheck()
|
||||
{
|
||||
|
||||
double T;
|
||||
char status;
|
||||
pressure.begin();
|
||||
delay(30);
|
||||
if (pressure.begin())
|
||||
Serial.println("4.ДАТЧИК ДАВЛЕНИЯ - HW-596 (BMP180)");
|
||||
else
|
||||
{
|
||||
// Oops, something went wrong, this is usually a connection problem,
|
||||
// see the comments at the top of this sketch for the proper connections.
|
||||
|
||||
Serial.println("BMP180 - ОШИБКА (НЕ ПОДКЛЮЧЕН?)\n\n");
|
||||
while(1); // Pause forever.
|
||||
}
|
||||
// Get the baseline pressure:
|
||||
|
||||
baseline = getPressure();
|
||||
|
||||
Serial.print("ДАВЛЕНИЕ: ");
|
||||
Serial.print(baseline);
|
||||
Serial.println(" мбар");
|
||||
Serial.print("ДАВЛЕНИЕ: ");
|
||||
Serial.print(baseline*0.750062);
|
||||
Serial.println(" мм.рт.ст.");
|
||||
Serial.println("ЕСЛИ ЦИФРЫ БЛИЗКИ К АТМОСФЕРНОМУ ДАВЛЕНИЮ: OK");
|
||||
Serial.println("ЕСЛИ НОЛЬ: ОШИБКА, ПРОВЕРИТЬ ПОДКЛЮЧЕНИЕ\n\n");
|
||||
/*
|
||||
status = pressure.getTemperature(T);
|
||||
delay(status);
|
||||
if (status != 0)
|
||||
{
|
||||
// Print out the measurement:
|
||||
Serial.print("ТЕМПЕРАТУРА: ");
|
||||
Serial.print(T,1);
|
||||
Serial.print(" град\n\n");
|
||||
|
||||
}
|
||||
*/
|
||||
}
|
||||
void AxelerometerCheck()
|
||||
{
|
||||
Serial.println("5.АКСЕЛЕРОМЕТР - ADXL345");
|
||||
/* Initialise the sensor */
|
||||
if(!accel.begin())
|
||||
{
|
||||
/* There was a problem detecting the ADXL345 ... check your connections */
|
||||
Serial.println("ADXL345 НЕ ДЕТЕКТИРУЕТСЯ. ПРОВЕРИТЬ СОЕДИНЕНИЕ.");
|
||||
while(1);
|
||||
}
|
||||
|
||||
/* Set the range to whatever is appropriate for your project */
|
||||
accel.setRange(ADXL345_RANGE_16_G);
|
||||
// accel.setRange(ADXL345_RANGE_8_G);
|
||||
// accel.setRange(ADXL345_RANGE_4_G);
|
||||
// accel.setRange(ADXL345_RANGE_2_G);
|
||||
|
||||
int i = 0;
|
||||
/* Display the results (acceleration is measured in m/s^2) */
|
||||
while(i++ < 10)
|
||||
{
|
||||
/* Get a new sensor event */
|
||||
sensors_event_t event;
|
||||
accel.getEvent(&event);
|
||||
|
||||
Serial.print("X: "); Serial.print(event.acceleration.x); Serial.print(" ");
|
||||
Serial.print("Y: "); Serial.print(event.acceleration.y); Serial.print(" ");
|
||||
Serial.print("Z: "); Serial.print(event.acceleration.z); Serial.print(" ");Serial.println("m/s^2 ");
|
||||
delay(300);
|
||||
}
|
||||
|
||||
Serial.println("ЕСЛИ ПРИСУТСТВУЮТ РАЗНЫЕ ЗНАЧЕНИЯ БЛИЗКИЕ к 9.6: OK");
|
||||
Serial.println("ЕСЛИ НЕТ ЗНАЧЕНИЙ, ОШИБКА. НУЖНО ПРОВЕРИТЬ ПОДКЛЮЧЕНИЕ\n");
|
||||
}
|
||||
void GuesturesSensorCheck()
|
||||
{
|
||||
Serial.println(F("6.ДАТЧИК ЖЕСТОВ, ЦВЕТА, ПРИБЛИЖЕНИЯ И ОСВЕЩЕННОСИ APDS-9960"));
|
||||
// Serial.println(F("SparkFun APDS-9960 - ColorSensor"));
|
||||
// Initialize APDS-9960 (configure I2C and initial values)
|
||||
if ( apds.init() ) {
|
||||
Serial.println(F("APDS-9960 initialization complete"));
|
||||
} else {
|
||||
Serial.println(F("Something went wrong during APDS-9960 init!"));
|
||||
}
|
||||
// Start running the APDS-9960 light sensor (no interrupts)
|
||||
if ( apds.enableLightSensor(false) ) {
|
||||
Serial.println(F("Light sensor is now running"));
|
||||
} else {
|
||||
Serial.println(F("Something went wrong during light sensor init!"));
|
||||
}
|
||||
// Wait for initialization and calibration to finish
|
||||
delay(300);
|
||||
|
||||
int i = 0;
|
||||
while(i++ < 10)
|
||||
{
|
||||
// Read the light levels (ambient, red, green, blue)
|
||||
if ( !apds.readAmbientLight(ambient_light) ||
|
||||
!apds.readRedLight(red_light) ||
|
||||
!apds.readGreenLight(green_light) ||
|
||||
!apds.readBlueLight(blue_light) ) {
|
||||
Serial.println("ОШИБКА ПРИ ЧТЕНИИ ПАРАМЕТРОВ");
|
||||
} else {
|
||||
Serial.print("Ambient: ");
|
||||
Serial.print(ambient_light);
|
||||
Serial.print(" Red: ");
|
||||
Serial.print(red_light);
|
||||
Serial.print(" Green: ");
|
||||
Serial.print(green_light);
|
||||
Serial.print(" Blue: ");
|
||||
Serial.println(blue_light);
|
||||
}
|
||||
|
||||
// Wait 1 second before next reading
|
||||
delay(300);
|
||||
}
|
||||
Serial.println(F("\nЕСЛИ ПРИСУТСТВУЮТ РАЗНЫЕ ЗНАЧЕНИЯ ЦВЕТОВ: OK"));
|
||||
Serial.print("\n\n\n ТЕСТИРОВАНИЕ ЗАВЕРШЕНО");
|
||||
}
|
||||
void Tumbler(){
|
||||
}
|
346
stand_code/mDNS_ESP8266.ino
Normal file
346
stand_code/mDNS_ESP8266.ino
Normal file
@ -0,0 +1,346 @@
|
||||
#define PIN_LED1 12
|
||||
#define PIN_LED2 13
|
||||
#define PIN_LED3 15
|
||||
|
||||
#define PIN_LIGHT A0
|
||||
|
||||
#define PIN_BUTT1 14
|
||||
#define PIN_BUTT2 0
|
||||
#define PIN_BUTT3 2
|
||||
|
||||
#define DATA_FASTLED_PIN 16
|
||||
|
||||
#define FASTLED_ESP8266_RAW_PIN_ORDER
|
||||
#include <FastLED.h>
|
||||
#define NUM_LEDS_IN_STRIPLINE 8
|
||||
CRGB ledsLine[NUM_LEDS_IN_STRIPLINE];
|
||||
|
||||
//include wire - Spi bus
|
||||
#include <Wire.h>
|
||||
#include <SFE_BMP180.h>
|
||||
SFE_BMP180 pressureSens;
|
||||
struct BMP180val{
|
||||
double temperature,
|
||||
pressure;
|
||||
};
|
||||
|
||||
//init axelerometer sensor
|
||||
#include <Adafruit_Sensor.h>
|
||||
#include <Adafruit_ADXL345_U.h>
|
||||
/* Assign a unique ID to this sensor at the same time */
|
||||
Adafruit_ADXL345_Unified accel = Adafruit_ADXL345_Unified(12346);
|
||||
|
||||
//init guest sensor
|
||||
#include <SparkFun_APDS9960.h>
|
||||
// Global Variables
|
||||
SparkFun_APDS9960 apds = SparkFun_APDS9960();
|
||||
|
||||
#include "StandData.h"
|
||||
StandData standData;
|
||||
|
||||
#include <ESP8266WiFi.h>
|
||||
#include <WiFiClient.h>
|
||||
#include <ESP8266WebServer.h>
|
||||
#include <ESP8266mDNS.h>
|
||||
ESP8266WebServer server(80);
|
||||
|
||||
const char* ssid = "TP-LINK_6EF532";
|
||||
const char* password = "49344059";
|
||||
const char* mdnsName = "esp8266";
|
||||
|
||||
//Index HTML page
|
||||
const String IndexPage = "<html>\
|
||||
<head>\
|
||||
<title>ESP8266 Web Server POST handling</title>\
|
||||
<style>\
|
||||
body { background-color: #cccccc; font-family: Arial, Helvetica, Sans-Serif; Color: #000088; }\
|
||||
</style>\
|
||||
</head>\
|
||||
<body>\
|
||||
<h1>POST plain text to /postplain/ route</h1>\
|
||||
<form method=\"post\" enctype=\"text/plain\" action=\"/postvalue\">\
|
||||
<input type=\"text\" name=\"json\" value=\'{JSON string}\'>\
|
||||
<br><br>\
|
||||
<input type=\"text\" name=\"text\" value=\'\'>\
|
||||
<input type=\"submit\" name=\"button\" value=\"Send string\" >\
|
||||
</form>\
|
||||
</body>\
|
||||
</html>";
|
||||
|
||||
void getMain ()
|
||||
{
|
||||
server.send(200, F("text/html"), IndexPage);
|
||||
BlinkPWRled(4, 40);
|
||||
}
|
||||
|
||||
void getSensVal ()
|
||||
{
|
||||
standData.LED1 = digitalRead(PIN_LED1);
|
||||
standData.LED2 = digitalRead(PIN_LED2);
|
||||
standData.LED3 = digitalRead(PIN_LED3);
|
||||
|
||||
standData.button1State = digitalRead(PIN_BUTT1);
|
||||
standData.button2State = digitalRead(PIN_BUTT2);
|
||||
standData.button3State = digitalRead(PIN_BUTT3);
|
||||
|
||||
standData.lightness = analogRead(PIN_LIGHT);
|
||||
|
||||
/*
|
||||
BMP180val tmp = GetBMP180Val();
|
||||
standData.temperature = tmp.temperature;
|
||||
Serial.println(standData.temperature);
|
||||
standData.pressure = tmp.pressure;
|
||||
Serial.println(standData.pressure);
|
||||
|
||||
if(!apds.readAmbientLight(standData.ambient_light) ||
|
||||
!apds.readRedLight(standData.red_light) ||
|
||||
!apds.readGreenLight(standData.green_light) ||
|
||||
!apds.readBlueLight(standData.blue_light) )
|
||||
Serial.println("Error reading light values");
|
||||
|
||||
//for axeleration
|
||||
sensors_event_t event;
|
||||
accel.getEvent(&event);
|
||||
standData.acceleration_x = event.acceleration.x;
|
||||
standData.acceleration_y = event.acceleration.y;
|
||||
standData.acceleration_z = event.acceleration.z;
|
||||
*/
|
||||
|
||||
for(int i = 0; i < NUM_LEDS_IN_STRIPLINE; i++)
|
||||
standData.stripLedsColors[i] = ledsLine[i];
|
||||
|
||||
String jsonMassage = standData.GetJSONString();
|
||||
server.send(200, F("text/plain"), jsonMassage);
|
||||
BlinkPWRled(4, 40);
|
||||
}
|
||||
|
||||
void postSensValue() {
|
||||
if (server.method() != HTTP_POST) {
|
||||
server.send(405, "text/plain", "Method Not Allowed");
|
||||
} else {
|
||||
server.send(200, "text/plain", "POST body was:\n" + server.arg("plain"));
|
||||
String json = server.arg("plain");
|
||||
Serial.print("args : "); Serial.println(json);
|
||||
|
||||
StaticJsonDocument<700> jsonDocument;
|
||||
deserializeJson(jsonDocument, json);
|
||||
|
||||
standData.LED1 = jsonDocument["LED1"];
|
||||
digitalWrite(PIN_LED1, standData.LED1);
|
||||
standData.LED2 = jsonDocument["LED2"];
|
||||
digitalWrite(PIN_LED2, standData.LED2);
|
||||
standData.LED3 = jsonDocument["LED3"];
|
||||
digitalWrite(PIN_LED3, standData.LED3);
|
||||
|
||||
for(int i = 0 ; i < NUM_LEDS_IN_STRIPLINE; i++)
|
||||
{
|
||||
String nameLeds = "leds" + String(i+1);
|
||||
JsonObject obj_led = jsonDocument[nameLeds];
|
||||
Serial.println("Json object is; ");
|
||||
Serial.println(nameLeds);
|
||||
standData.stripLedsColors[i].r = obj_led["red"];
|
||||
standData.stripLedsColors[i].b = obj_led["blue"];
|
||||
standData.stripLedsColors[i].g = obj_led["green"];
|
||||
Serial.println(standData.stripLedsColors[i].b);
|
||||
Serial.println(standData.stripLedsColors[i].r);
|
||||
Serial.println(standData.stripLedsColors[i].g);
|
||||
}
|
||||
//show a new line colors
|
||||
for(int i = 0; i < NUM_LEDS_IN_STRIPLINE; i++)
|
||||
ledsLine[i] = standData.stripLedsColors[i];
|
||||
FastLED.show();
|
||||
}
|
||||
BlinkPWRled(4, 40);
|
||||
}
|
||||
|
||||
// Define routing
|
||||
void restServerRouting() {
|
||||
//return HTML page
|
||||
server.on("/", HTTP_GET, getMain);
|
||||
//return JSON data value representation
|
||||
server.on(F("/sensval"), HTTP_GET, getSensVal);
|
||||
server.on(F("/hello"), HTTP_GET, hallo);
|
||||
|
||||
//get JSON value for parsing
|
||||
//return actual data value (sens and LEDs)
|
||||
server.on("/postvalue", HTTP_POST, postSensValue);
|
||||
}
|
||||
|
||||
void hallo()
|
||||
{
|
||||
server.send(200, "text/plain", "Hallo");
|
||||
BlinkPWRled(4, 40);
|
||||
}
|
||||
|
||||
// Manage not found URL
|
||||
void handleNotFound() {
|
||||
String message = "File Not Found\n\n";
|
||||
message += "URI: ";
|
||||
message += server.uri();
|
||||
message += "\nMethod: ";
|
||||
message += (server.method() == HTTP_GET) ? "GET" : "POST";
|
||||
message += "\nArguments: ";
|
||||
message += server.args();
|
||||
message += "\n";
|
||||
for (uint8_t i = 0; i < server.args(); i++) {
|
||||
message += " " + server.argName(i) + ": " + server.arg(i) + "\n";
|
||||
}
|
||||
server.send(404, "text/plain", message);
|
||||
|
||||
Serial.println("error query from client");
|
||||
Serial.println(millis());
|
||||
BlinkPWRled(4, 40);
|
||||
}
|
||||
|
||||
void writeLog(){
|
||||
static unsigned long t_in = 0;
|
||||
static const int decay_sec = 2; //write log each
|
||||
|
||||
if(t_in + decay_sec * 1000 < millis())
|
||||
{
|
||||
t_in = millis();
|
||||
Serial.print("Log time: "); Serial.print(t_in / 1000 /60); Serial.print(":"); Serial.println(t_in / 1000 % 60);
|
||||
}
|
||||
}
|
||||
|
||||
void LedAlarmBlink()
|
||||
{
|
||||
while(1)
|
||||
{
|
||||
digitalWrite(PIN_LED3, !digitalRead(PIN_LED1));
|
||||
delay(400);
|
||||
}
|
||||
}
|
||||
|
||||
BMP180val GetBMP180Val(){
|
||||
BMP180val tmp;
|
||||
char status;
|
||||
status = pressureSens.startTemperature();
|
||||
if (status != 0)
|
||||
{
|
||||
delay(status);
|
||||
status = pressureSens.getTemperature(tmp.temperature);
|
||||
if (status != 0)
|
||||
{
|
||||
status = pressureSens.startPressure(3);
|
||||
if (status != 0)
|
||||
{
|
||||
delay(status);
|
||||
status = pressureSens.getPressure(tmp.pressure, tmp.temperature);
|
||||
if (status == 0)
|
||||
Serial.println("error retrieving pressure measurement\n");
|
||||
}
|
||||
else Serial.println("error starting pressure measurement\n");
|
||||
}
|
||||
else Serial.println("error retrieving temperature measurement\n");
|
||||
}
|
||||
else Serial.println("error starting temperature measurement\n");
|
||||
|
||||
return tmp;
|
||||
}
|
||||
|
||||
void BlinkPWRled(int blinkNum, int decay)
|
||||
{
|
||||
if(blinkNum < 2) blinkNum = 2;
|
||||
for(int i = 0; i < blinkNum; i++)
|
||||
{
|
||||
digitalWrite(PIN_LED3, 1);
|
||||
delay(decay);
|
||||
digitalWrite(PIN_LED3, 0);
|
||||
delay(decay);
|
||||
}
|
||||
}
|
||||
void setup(void) {
|
||||
pinMode(PIN_LED3, OUTPUT);
|
||||
BlinkPWRled(5, 50);
|
||||
|
||||
Serial.begin(115200);
|
||||
while (!Serial);
|
||||
Serial.println("Serial Start");
|
||||
BlinkPWRled(2, 40);
|
||||
|
||||
WiFi.mode(WIFI_STA);
|
||||
WiFi.begin(ssid, password);
|
||||
Serial.println("Start connnect");
|
||||
|
||||
while (WiFi.status() != WL_CONNECTED) {
|
||||
delay(50);
|
||||
Serial.print(".");
|
||||
}
|
||||
BlinkPWRled(4, 100);
|
||||
Serial.print("Connected to "); Serial.println(ssid);
|
||||
Serial.print("IP address: "); Serial.println(WiFi.localIP());
|
||||
|
||||
// Activate mDNS this is used to be able to connect to the server
|
||||
// with local DNS hostmane esp8266.local
|
||||
if (MDNS.begin("esp8266")) Serial.println("MDNS responder started");
|
||||
MDNS.addService("http", "tcp", 80);
|
||||
|
||||
restServerRouting();
|
||||
// Set not found response
|
||||
server.onNotFound(handleNotFound);
|
||||
server.begin();
|
||||
Serial.println("HTTP server started");
|
||||
|
||||
BlinkPWRled(2, 300);
|
||||
//////SENS INIT/////
|
||||
pinMode(PIN_LED1, OUTPUT);
|
||||
pinMode(PIN_LED2, OUTPUT);
|
||||
pinMode(PIN_LED3, OUTPUT);
|
||||
|
||||
pinMode(PIN_BUTT1, INPUT_PULLUP);
|
||||
pinMode(PIN_BUTT2, INPUT_PULLUP);
|
||||
pinMode(PIN_BUTT3, INPUT_PULLUP);
|
||||
|
||||
//TODO uncomment this!
|
||||
/*
|
||||
//Led strip init
|
||||
FastLED.addLeds<WS2812B, DATA_FASTLED_PIN, RGB>(ledsLine, NUM_LEDS_IN_STRIPLINE);
|
||||
//global lightness
|
||||
FastLED.setBrightness(64);
|
||||
/*
|
||||
CRGB color = CRGB(r, g, b);
|
||||
CHSV color = CHSV(h, s, v);
|
||||
ledsLine[i] = CRGB::Red;
|
||||
*/
|
||||
/*
|
||||
//pressure init
|
||||
if (!pressureSens.begin())
|
||||
{
|
||||
// Oops, something went wrong, this is usually a connection problem,
|
||||
// see the comments at the top of this sketch for the proper connections.
|
||||
Serial.println("BMP180 init fail (disconnected?)\n\n");
|
||||
LedAlarmBlink();
|
||||
}
|
||||
|
||||
//axeleration Sens init
|
||||
if(!accel.begin())
|
||||
{
|
||||
Serial.println("Ooops, no ADXL345 detected ... Check your wiring!");
|
||||
LedAlarmBlink();
|
||||
}
|
||||
accel.setRange(ADXL345_RANGE_16_G);
|
||||
|
||||
//Guest sensor init
|
||||
if ( !apds.init() )
|
||||
{
|
||||
Serial.println(F("Something went wrong during APDS-9960 init!"));
|
||||
LedAlarmBlink();
|
||||
}
|
||||
// Start running the APDS-9960 light sensor (no interrupts)
|
||||
if ( !apds.enableLightSensor(false) )
|
||||
{
|
||||
Serial.println(F("Something went wrong during light sensor init!"));
|
||||
LedAlarmBlink();
|
||||
}
|
||||
// Wait for initialization and calibration to finish
|
||||
digitalWrite(PIN_LED3, 1);
|
||||
Serial.println("Setup continue");
|
||||
*/
|
||||
}
|
||||
|
||||
void loop(void) {
|
||||
server.handleClient();
|
||||
MDNS.update();
|
||||
writeLog();
|
||||
}
|
1028
ui/PyQt_app.ui
Normal file
1028
ui/PyQt_app.ui
Normal file
File diff suppressed because it is too large
Load Diff
378
ui/main.py
Normal file
378
ui/main.py
Normal file
@ -0,0 +1,378 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Form implementation generated from reading ui file 'PyQt_app.ui'
|
||||
#
|
||||
# Created by: PyQt5 UI code generator 5.15.9
|
||||
#
|
||||
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
|
||||
# run again. Do not edit this file unless you know what you are doing.
|
||||
|
||||
|
||||
from PyQt5 import QtCore, QtGui, QtWidgets
|
||||
|
||||
|
||||
class Ui_MainWindow(object):
|
||||
def setupUi(self, MainWindow):
|
||||
MainWindow.setObjectName("MainWindow")
|
||||
MainWindow.resize(1185, 622)
|
||||
MainWindow.setMinimumSize(QtCore.QSize(1185, 622))
|
||||
MainWindow.setMaximumSize(QtCore.QSize(1185, 622))
|
||||
self.centralwidget = QtWidgets.QWidget(MainWindow)
|
||||
self.centralwidget.setObjectName("centralwidget")
|
||||
self.pushButton = QtWidgets.QPushButton(self.centralwidget)
|
||||
self.pushButton.setGeometry(QtCore.QRect(1050, 10, 101, 21))
|
||||
self.pushButton.setObjectName("pushButton")
|
||||
self.label = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label.setGeometry(QtCore.QRect(10, 0, 51, 41))
|
||||
self.label.setObjectName("label")
|
||||
self.lineEdit = QtWidgets.QLineEdit(self.centralwidget)
|
||||
self.lineEdit.setGeometry(QtCore.QRect(50, 10, 981, 21))
|
||||
self.lineEdit.setObjectName("lineEdit")
|
||||
self.label_2 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_2.setGeometry(QtCore.QRect(10, 40, 71, 20))
|
||||
self.label_2.setObjectName("label_2")
|
||||
self.lcdNumber = QtWidgets.QLCDNumber(self.centralwidget)
|
||||
self.lcdNumber.setGeometry(QtCore.QRect(550, 190, 141, 41))
|
||||
self.lcdNumber.setFrameShape(QtWidgets.QFrame.Box)
|
||||
self.lcdNumber.setProperty("value", 5.0)
|
||||
self.lcdNumber.setObjectName("lcdNumber")
|
||||
self.label_6 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_6.setGeometry(QtCore.QRect(310, 190, 211, 41))
|
||||
font = QtGui.QFont()
|
||||
font.setPointSize(14)
|
||||
font.setBold(True)
|
||||
font.setWeight(75)
|
||||
self.label_6.setFont(font)
|
||||
self.label_6.setTextFormat(QtCore.Qt.AutoText)
|
||||
self.label_6.setScaledContents(False)
|
||||
self.label_6.setObjectName("label_6")
|
||||
self.lcdNumber_2 = QtWidgets.QLCDNumber(self.centralwidget)
|
||||
self.lcdNumber_2.setGeometry(QtCore.QRect(540, 470, 81, 20))
|
||||
font = QtGui.QFont()
|
||||
font.setBold(False)
|
||||
font.setWeight(50)
|
||||
self.lcdNumber_2.setFont(font)
|
||||
self.lcdNumber_2.setStyleSheet("QLCDNumber { color: black; }")
|
||||
self.lcdNumber_2.setFrameShape(QtWidgets.QFrame.Box)
|
||||
self.lcdNumber_2.setSegmentStyle(QtWidgets.QLCDNumber.Flat)
|
||||
self.lcdNumber_2.setProperty("value", 5.0)
|
||||
self.lcdNumber_2.setObjectName("lcdNumber_2")
|
||||
self.lcdNumber_3 = QtWidgets.QLCDNumber(self.centralwidget)
|
||||
self.lcdNumber_3.setGeometry(QtCore.QRect(620, 470, 81, 20))
|
||||
self.lcdNumber_3.setStyleSheet("color: rgb(0, 0, 0);")
|
||||
self.lcdNumber_3.setSegmentStyle(QtWidgets.QLCDNumber.Flat)
|
||||
self.lcdNumber_3.setProperty("value", 5.0)
|
||||
self.lcdNumber_3.setObjectName("lcdNumber_3")
|
||||
self.lcdNumber_4 = QtWidgets.QLCDNumber(self.centralwidget)
|
||||
self.lcdNumber_4.setGeometry(QtCore.QRect(700, 470, 81, 20))
|
||||
self.lcdNumber_4.setSmallDecimalPoint(False)
|
||||
self.lcdNumber_4.setSegmentStyle(QtWidgets.QLCDNumber.Flat)
|
||||
self.lcdNumber_4.setObjectName("lcdNumber_4")
|
||||
self.label_7 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_7.setGeometry(QtCore.QRect(570, 500, 47, 13))
|
||||
self.label_7.setObjectName("label_7")
|
||||
self.label_8 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_8.setGeometry(QtCore.QRect(650, 500, 47, 13))
|
||||
self.label_8.setObjectName("label_8")
|
||||
self.label_9 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_9.setGeometry(QtCore.QRect(730, 500, 47, 13))
|
||||
self.label_9.setObjectName("label_9")
|
||||
self.off_1 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.off_1.setGeometry(QtCore.QRect(804, 100, 61, 51))
|
||||
self.off_1.setText("")
|
||||
self.off_1.setPixmap(QtGui.QPixmap(":/img/off.svg"))
|
||||
self.off_1.setScaledContents(True)
|
||||
self.off_1.setObjectName("off_1")
|
||||
self.on_1 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.on_1.setGeometry(QtCore.QRect(804, 100, 61, 51))
|
||||
self.on_1.setText("")
|
||||
self.on_1.setPixmap(QtGui.QPixmap(":/img/ON.svg"))
|
||||
self.on_1.setScaledContents(True)
|
||||
self.on_1.setObjectName("on_1")
|
||||
self.label_20 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_20.setGeometry(QtCore.QRect(390, 70, 61, 61))
|
||||
self.label_20.setText("")
|
||||
self.label_20.setPixmap(QtGui.QPixmap(":/img/led_on.svg"))
|
||||
self.label_20.setScaledContents(True)
|
||||
self.label_20.setObjectName("label_20")
|
||||
self.label_24 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_24.setEnabled(True)
|
||||
self.label_24.setGeometry(QtCore.QRect(390, 70, 61, 61))
|
||||
self.label_24.setText("")
|
||||
self.label_24.setPixmap(QtGui.QPixmap(":/img/led_off.svg"))
|
||||
self.label_24.setScaledContents(True)
|
||||
self.label_24.setObjectName("label_24")
|
||||
self.pushButton_2 = QtWidgets.QPushButton(self.centralwidget)
|
||||
self.pushButton_2.setGeometry(QtCore.QRect(390, 140, 71, 21))
|
||||
self.pushButton_2.setObjectName("pushButton_2")
|
||||
self.pushButton_3 = QtWidgets.QPushButton(self.centralwidget)
|
||||
self.pushButton_3.setGeometry(QtCore.QRect(480, 140, 71, 21))
|
||||
self.pushButton_3.setObjectName("pushButton_3")
|
||||
self.label_26 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_26.setGeometry(QtCore.QRect(480, 70, 61, 61))
|
||||
self.label_26.setText("")
|
||||
self.label_26.setPixmap(QtGui.QPixmap(":/img/led_on.svg"))
|
||||
self.label_26.setScaledContents(True)
|
||||
self.label_26.setObjectName("label_26")
|
||||
self.label_27 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_27.setGeometry(QtCore.QRect(480, 70, 61, 61))
|
||||
self.label_27.setText("")
|
||||
self.label_27.setPixmap(QtGui.QPixmap(":/img/led_off.svg"))
|
||||
self.label_27.setScaledContents(True)
|
||||
self.label_27.setObjectName("label_27")
|
||||
self.pushButton_4 = QtWidgets.QPushButton(self.centralwidget)
|
||||
self.pushButton_4.setGeometry(QtCore.QRect(570, 140, 71, 21))
|
||||
self.pushButton_4.setObjectName("pushButton_4")
|
||||
self.label_29 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_29.setGeometry(QtCore.QRect(570, 70, 61, 61))
|
||||
self.label_29.setText("")
|
||||
self.label_29.setPixmap(QtGui.QPixmap(":/img/led_on.svg"))
|
||||
self.label_29.setScaledContents(True)
|
||||
self.label_29.setObjectName("label_29")
|
||||
self.label_31 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_31.setGeometry(QtCore.QRect(570, 70, 61, 61))
|
||||
self.label_31.setText("")
|
||||
self.label_31.setPixmap(QtGui.QPixmap(":/img/led_off.svg"))
|
||||
self.label_31.setScaledContents(True)
|
||||
self.label_31.setObjectName("label_31")
|
||||
self.off_2 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.off_2.setGeometry(QtCore.QRect(904, 100, 61, 51))
|
||||
self.off_2.setText("")
|
||||
self.off_2.setPixmap(QtGui.QPixmap(":/img/off.svg"))
|
||||
self.off_2.setScaledContents(True)
|
||||
self.off_2.setObjectName("off_2")
|
||||
self.on_2 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.on_2.setGeometry(QtCore.QRect(904, 100, 61, 51))
|
||||
self.on_2.setText("")
|
||||
self.on_2.setPixmap(QtGui.QPixmap(":/img/ON.svg"))
|
||||
self.on_2.setScaledContents(True)
|
||||
self.on_2.setObjectName("on_2")
|
||||
self.off_3 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.off_3.setGeometry(QtCore.QRect(994, 100, 61, 51))
|
||||
self.off_3.setText("")
|
||||
self.off_3.setPixmap(QtGui.QPixmap(":/img/off.svg"))
|
||||
self.off_3.setScaledContents(True)
|
||||
self.off_3.setObjectName("off_3")
|
||||
self.on_3 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.on_3.setGeometry(QtCore.QRect(994, 100, 61, 51))
|
||||
self.on_3.setText("")
|
||||
self.on_3.setPixmap(QtGui.QPixmap(":/img/ON.svg"))
|
||||
self.on_3.setScaledContents(True)
|
||||
self.on_3.setObjectName("on_3")
|
||||
self.label_13 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_13.setGeometry(QtCore.QRect(310, 260, 211, 41))
|
||||
font = QtGui.QFont()
|
||||
font.setPointSize(14)
|
||||
font.setBold(True)
|
||||
font.setWeight(75)
|
||||
self.label_13.setFont(font)
|
||||
self.label_13.setObjectName("label_13")
|
||||
self.lcd_pressure = QtWidgets.QLCDNumber(self.centralwidget)
|
||||
self.lcd_pressure.setGeometry(QtCore.QRect(550, 260, 141, 41))
|
||||
self.lcd_pressure.setFrameShape(QtWidgets.QFrame.Box)
|
||||
self.lcd_pressure.setProperty("value", 5.0)
|
||||
self.lcd_pressure.setObjectName("lcd_pressure")
|
||||
self.lcdNumber_7 = QtWidgets.QLCDNumber(self.centralwidget)
|
||||
self.lcdNumber_7.setGeometry(QtCore.QRect(550, 330, 141, 41))
|
||||
self.lcdNumber_7.setFrameShape(QtWidgets.QFrame.Box)
|
||||
self.lcdNumber_7.setProperty("value", 5.0)
|
||||
self.lcdNumber_7.setObjectName("lcdNumber_7")
|
||||
self.label_14 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_14.setGeometry(QtCore.QRect(310, 330, 211, 41))
|
||||
font = QtGui.QFont()
|
||||
font.setPointSize(14)
|
||||
font.setBold(True)
|
||||
font.setWeight(75)
|
||||
self.label_14.setFont(font)
|
||||
self.label_14.setObjectName("label_14")
|
||||
self.lcdNumber_8 = QtWidgets.QLCDNumber(self.centralwidget)
|
||||
self.lcdNumber_8.setGeometry(QtCore.QRect(550, 400, 141, 41))
|
||||
self.lcdNumber_8.setFrameShape(QtWidgets.QFrame.Box)
|
||||
self.lcdNumber_8.setProperty("value", 5.0)
|
||||
self.lcdNumber_8.setObjectName("lcdNumber_8")
|
||||
self.label_15 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_15.setGeometry(QtCore.QRect(310, 400, 211, 41))
|
||||
font = QtGui.QFont()
|
||||
font.setPointSize(14)
|
||||
font.setBold(True)
|
||||
font.setWeight(75)
|
||||
self.label_15.setFont(font)
|
||||
self.label_15.setObjectName("label_15")
|
||||
self.label_34 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_34.setGeometry(QtCore.QRect(310, 520, 211, 41))
|
||||
font = QtGui.QFont()
|
||||
font.setPointSize(14)
|
||||
font.setBold(True)
|
||||
font.setWeight(75)
|
||||
self.label_34.setFont(font)
|
||||
self.label_34.setObjectName("label_34")
|
||||
self.vkl_b = QtWidgets.QPushButton(self.centralwidget)
|
||||
self.vkl_b.setGeometry(QtCore.QRect(1099, 482, 75, 23))
|
||||
self.vkl_b.setObjectName("vkl_b")
|
||||
self.vikl_b = QtWidgets.QPushButton(self.centralwidget)
|
||||
self.vikl_b.setGeometry(QtCore.QRect(1099, 512, 75, 23))
|
||||
self.vikl_b.setObjectName("vikl_b")
|
||||
self.color_b = QtWidgets.QPushButton(self.centralwidget)
|
||||
self.color_b.setGeometry(QtCore.QRect(1099, 542, 75, 23))
|
||||
self.color_b.setObjectName("color_b")
|
||||
self.leds1 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.leds1.setGeometry(QtCore.QRect(1130, 183, 16, 16))
|
||||
self.leds1.setMouseTracking(False)
|
||||
self.leds1.setTabletTracking(True)
|
||||
self.leds1.setFocusPolicy(QtCore.Qt.NoFocus)
|
||||
self.leds1.setAutoFillBackground(False)
|
||||
self.leds1.setStyleSheet("QLabel:pressed \n"
|
||||
" {\n"
|
||||
" border: 2px solid red;\n"
|
||||
"}")
|
||||
self.leds1.setFrameShape(QtWidgets.QFrame.Panel)
|
||||
self.leds1.setText("")
|
||||
self.leds1.setObjectName("leds1")
|
||||
self.leds2 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.leds2.setGeometry(QtCore.QRect(1130, 221, 16, 16))
|
||||
self.leds2.setAutoFillBackground(True)
|
||||
self.leds2.setFrameShape(QtWidgets.QFrame.Panel)
|
||||
self.leds2.setText("")
|
||||
self.leds2.setObjectName("leds2")
|
||||
self.leds3 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.leds3.setGeometry(QtCore.QRect(1130, 259, 16, 16))
|
||||
self.leds3.setAutoFillBackground(True)
|
||||
self.leds3.setFrameShape(QtWidgets.QFrame.Panel)
|
||||
self.leds3.setText("")
|
||||
self.leds3.setObjectName("leds3")
|
||||
self.leds4 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.leds4.setGeometry(QtCore.QRect(1130, 297, 16, 16))
|
||||
self.leds4.setAutoFillBackground(True)
|
||||
self.leds4.setFrameShape(QtWidgets.QFrame.Panel)
|
||||
self.leds4.setText("")
|
||||
self.leds4.setObjectName("leds4")
|
||||
self.leds5 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.leds5.setGeometry(QtCore.QRect(1130, 336, 16, 16))
|
||||
self.leds5.setAutoFillBackground(True)
|
||||
self.leds5.setFrameShape(QtWidgets.QFrame.Panel)
|
||||
self.leds5.setText("")
|
||||
self.leds5.setObjectName("leds5")
|
||||
self.leds6 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.leds6.setGeometry(QtCore.QRect(1130, 374, 16, 16))
|
||||
self.leds6.setAutoFillBackground(True)
|
||||
self.leds6.setFrameShape(QtWidgets.QFrame.Panel)
|
||||
self.leds6.setText("")
|
||||
self.leds6.setObjectName("leds6")
|
||||
self.leds7 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.leds7.setGeometry(QtCore.QRect(1130, 412, 16, 16))
|
||||
self.leds7.setAutoFillBackground(True)
|
||||
self.leds7.setFrameShape(QtWidgets.QFrame.Panel)
|
||||
self.leds7.setText("")
|
||||
self.leds7.setObjectName("leds7")
|
||||
self.leds8 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.leds8.setGeometry(QtCore.QRect(1130, 450, 16, 16))
|
||||
self.leds8.setAutoFillBackground(True)
|
||||
self.leds8.setFrameShape(QtWidgets.QFrame.Panel)
|
||||
self.leds8.setText("")
|
||||
self.leds8.setObjectName("leds8")
|
||||
self.plotwidget = QtWidgets.QWidget(self.centralwidget)
|
||||
self.plotwidget.setGeometry(QtCore.QRect(740, 190, 351, 251))
|
||||
self.plotwidget.setObjectName("plotwidget")
|
||||
self.lcdNumber_5 = QtWidgets.QLCDNumber(self.centralwidget)
|
||||
self.lcdNumber_5.setGeometry(QtCore.QRect(540, 530, 81, 20))
|
||||
font = QtGui.QFont()
|
||||
font.setBold(False)
|
||||
font.setWeight(50)
|
||||
self.lcdNumber_5.setFont(font)
|
||||
self.lcdNumber_5.setStyleSheet("QLCDNumber { color: black; }")
|
||||
self.lcdNumber_5.setFrameShape(QtWidgets.QFrame.Box)
|
||||
self.lcdNumber_5.setSegmentStyle(QtWidgets.QLCDNumber.Flat)
|
||||
self.lcdNumber_5.setObjectName("lcdNumber_5")
|
||||
self.lcdNumber_6 = QtWidgets.QLCDNumber(self.centralwidget)
|
||||
self.lcdNumber_6.setGeometry(QtCore.QRect(700, 530, 81, 20))
|
||||
self.lcdNumber_6.setSmallDecimalPoint(False)
|
||||
self.lcdNumber_6.setSegmentStyle(QtWidgets.QLCDNumber.Flat)
|
||||
self.lcdNumber_6.setObjectName("lcdNumber_6")
|
||||
self.lcdNumber_9 = QtWidgets.QLCDNumber(self.centralwidget)
|
||||
self.lcdNumber_9.setGeometry(QtCore.QRect(620, 530, 81, 20))
|
||||
self.lcdNumber_9.setStyleSheet("color: rgb(0, 0, 0);")
|
||||
self.lcdNumber_9.setSegmentStyle(QtWidgets.QLCDNumber.Flat)
|
||||
self.lcdNumber_9.setObjectName("lcdNumber_9")
|
||||
self.label_16 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_16.setGeometry(QtCore.QRect(310, 460, 211, 41))
|
||||
font = QtGui.QFont()
|
||||
font.setPointSize(14)
|
||||
font.setBold(True)
|
||||
font.setWeight(75)
|
||||
self.label_16.setFont(font)
|
||||
self.label_16.setObjectName("label_16")
|
||||
self.label_10 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_10.setGeometry(QtCore.QRect(570, 560, 47, 13))
|
||||
self.label_10.setObjectName("label_10")
|
||||
self.label_11 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_11.setGeometry(QtCore.QRect(650, 560, 47, 13))
|
||||
self.label_11.setObjectName("label_11")
|
||||
self.label_12 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_12.setGeometry(QtCore.QRect(730, 560, 47, 13))
|
||||
self.label_12.setObjectName("label_12")
|
||||
self.label_4 = QtWidgets.QLabel(self.centralwidget)
|
||||
self.label_4.setGeometry(QtCore.QRect(900, 60, 81, 20))
|
||||
font = QtGui.QFont()
|
||||
font.setFamily("Times New Roman")
|
||||
font.setPointSize(12)
|
||||
font.setBold(True)
|
||||
font.setWeight(75)
|
||||
self.label_4.setFont(font)
|
||||
self.label_4.setObjectName("label_4")
|
||||
self.textEdit = QtWidgets.QTextEdit(self.centralwidget)
|
||||
self.textEdit.setGeometry(QtCore.QRect(10, 60, 291, 531))
|
||||
self.textEdit.setObjectName("textEdit")
|
||||
self.pushButton_5 = QtWidgets.QPushButton(self.centralwidget)
|
||||
self.pushButton_5.setGeometry(QtCore.QRect(1050, 50, 101, 21))
|
||||
self.pushButton_5.setObjectName("pushButton_5")
|
||||
self.lineEdit_2 = QtWidgets.QLineEdit(self.centralwidget)
|
||||
self.lineEdit_2.setGeometry(QtCore.QRect(790, 40, 241, 21))
|
||||
self.lineEdit_2.setObjectName("lineEdit_2")
|
||||
MainWindow.setCentralWidget(self.centralwidget)
|
||||
self.menubar = QtWidgets.QMenuBar(MainWindow)
|
||||
self.menubar.setGeometry(QtCore.QRect(0, 0, 1185, 21))
|
||||
self.menubar.setObjectName("menubar")
|
||||
MainWindow.setMenuBar(self.menubar)
|
||||
|
||||
self.retranslateUi(MainWindow)
|
||||
QtCore.QMetaObject.connectSlotsByName(MainWindow)
|
||||
|
||||
def retranslateUi(self, MainWindow):
|
||||
_translate = QtCore.QCoreApplication.translate
|
||||
MainWindow.setWindowTitle(_translate("MainWindow", "IoT pgrm v0_1_13"))
|
||||
self.pushButton.setText(_translate("MainWindow", "SEND Post"))
|
||||
self.label.setText(_translate("MainWindow", "URL"))
|
||||
self.label_2.setText(_translate("MainWindow", "Body message"))
|
||||
self.label_6.setText(_translate("MainWindow", "Температура"))
|
||||
self.lcdNumber_2.setToolTip(_translate("MainWindow", "<html><head/><body><p><br/></p></body></html>"))
|
||||
self.label_7.setText(_translate("MainWindow", "R"))
|
||||
self.label_8.setText(_translate("MainWindow", "G"))
|
||||
self.label_9.setText(_translate("MainWindow", "B"))
|
||||
self.pushButton_2.setText(_translate("MainWindow", "Вкл"))
|
||||
self.pushButton_3.setText(_translate("MainWindow", "Вкл"))
|
||||
self.pushButton_4.setText(_translate("MainWindow", "Вкл"))
|
||||
self.label_13.setText(_translate("MainWindow", "Давление"))
|
||||
self.label_14.setText(_translate("MainWindow", "Освещенность"))
|
||||
self.label_15.setText(_translate("MainWindow", "Освещенность"))
|
||||
self.label_34.setText(_translate("MainWindow", "Акселлерометр"))
|
||||
self.vkl_b.setText(_translate("MainWindow", "Вкл"))
|
||||
self.vikl_b.setText(_translate("MainWindow", "Выкл"))
|
||||
self.color_b.setText(_translate("MainWindow", "Цвет"))
|
||||
self.lcdNumber_5.setToolTip(_translate("MainWindow", "<html><head/><body><p><br/></p></body></html>"))
|
||||
self.label_16.setText(_translate("MainWindow", "Освещенность"))
|
||||
self.label_10.setText(_translate("MainWindow", "Х"))
|
||||
self.label_11.setText(_translate("MainWindow", "Y"))
|
||||
self.label_12.setText(_translate("MainWindow", "Z"))
|
||||
self.label_4.setText(_translate("MainWindow", "Тумблеры"))
|
||||
self.pushButton_5.setText(_translate("MainWindow", "SEND Get request"))
|
||||
import Res_rc
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
import sys
|
||||
app = QtWidgets.QApplication(sys.argv)
|
||||
MainWindow = QtWidgets.QMainWindow()
|
||||
ui = Ui_MainWindow()
|
||||
ui.setupUi(MainWindow)
|
||||
MainWindow.show()
|
||||
sys.exit(app.exec_())
|
Loading…
x
Reference in New Issue
Block a user