Tyill / SVisual

Monitoring and record(save) of data for Arduino and STM32

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Docker License
Build Status License: MIT

The SVisual software is designed to monitor the operation of the MK devices, debug the program, alert the user to the events that have occurred.

Features

  • connection to the MK via COM port (usb for arduino), over Ethernet or Wi-Fi protocol TCP;

  • Interrogation of values of signals in real time with frequency before 100 Hz (default 10 Hz), the number of devices and signals is selected by the user;

  • the permissible number of signals for recording 2048;

  • output of the values of the selected signals to the monitor screen in real time;

  • record the archive of signals to the PC hard disk;

  • viewing the archive using additional SVViewer software;

  • ability to set alerts for an event (triggers) that have occurred, start a custom process when the trigger is triggered;

  • adding a signal for viewing / recording only by the client, no additional movements are required

  • export data to xlsx, json or txt

  • client UART+DMA for stm32f1 https://github.com/burrbull/svisual-stm32f1

  • docker image https://hub.docker.com/r/tyiler/svdocker

  • viewing in a web browser

  • Zabbix agent supported

  • Save into ClickHouseDb supported

Demo

https://www.youtube.com/watch?v=LR0Rb964DLA&feature=youtu.be

https://www.youtube.com/watch?v=wlvArf7h6lE

Arduino example

#include <SVClient.h>
void setup() {

  bool ok = svisual::connectOfCOM("test");

}
int cnt = 0;
void loop() {

  svisual::addIntValue("dfv", cnt);

  ++cnt;
  if (cnt > 10) cnt = 0;

  bool odd_cnt = cnt % 2;

  svisual::addBoolValue("bFW", odd_cnt);

  svisual::addBoolValue("bBW", !odd_cnt);

  delay(200);
}

As a result


Use in Linux

Should be installed:

  • qt
  • sqlite: sudo apt install libsqlite3-dev
  • libuv: sudo apt install libuv1-dev
  • clickhouse-cpp

Aux dependences here:

  • lua53
  • qtXlsxWriter

Build from QtCreator:

Build with cmake:

cd src
rm -rf build  
mkdir build  
cmake -B build -S . -DCMAKE_BUILD_TYPE="Release" && cmake --build build --parallel  

License

Licensed under an [MIT-2.0]-license.

About

Monitoring and record(save) of data for Arduino and STM32

License:MIT License


Languages

Language:C++ 75.5%Language:C 13.1%Language:JavaScript 10.0%Language:CMake 1.1%Language:Shell 0.2%Language:CSS 0.1%Language:Dockerfile 0.1%Language:HTML 0.0%