An application for sending notifications via the SMS gateway API and recording events in the PostgreSQL DBMS about the status of the ATS (city power grid, generator, UPS)
$ curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
For Windows, visit this page
let resp = reqwest::blocking::get("https://api-mapper.clicksend.com/http/v2/send.php?method=http&username=development-service@yandex.ru&key=1E82A334-89D8-985C-526B-712DB70A713D&to=+79139402913&message=Сбой+питания+от+электросети.+Успешный+старт+генератора.").unwrap();
let mut client =
Client::connect("postgresql://postgres:postgres@localhost/postgres", NoTls)?;
Compile local packages and all their dependencies
$ cargo build --release
Install PostgreSQL
CREATE TABLE avr_control_insert (
mains_power_supply int NOT NULL,
start_generator int NOT NULL,
generator_faulty int NOT NULL,
generator_work int NOT NULL,
connection int NOT NULL,
mark timestamptz default current_timestamp
);
CREATE TABLE журнал_работы_приложения (
событие text NOT NULL,
время_и_дата timestamp default current_timestamp
);
CREATE TABLE события_авр (
событие text NOT NULL,
время_и_дата timestamp default current_timestamp
);
INSERT INTO avr_control_insert (mains_power_supply, start_generator, generator_faulty, generator_work, connection)
VALUES (Item(trim5.mains_power_supply), Item(trim5.start_generator), Item(trim5.generator_faulty), Item(trim5.generator_work), Item(trim5.connection));
Run ATS Monitoring
Сreate and save the report in the form you need in Orange Data Mining