[go: nahoru, domu]

Skip to content

Flutter codebase for all OpenView2 apps launched since May 2024

License

Notifications You must be signed in to change notification settings

Protocentral/protocentral_openview2

Repository files navigation

Protocentral Logo

OpenView 2

Openview 2 is designed as a companion application to receive data from various Protocentral boards. It can be used to visualize the data in real-time and also store the data in CSV format.

Openview Desktop App

Openview Mobile App

OpenView 2 will replace the existing OpenView app written in Processing and will be the primary supported app for all Protocentral boards. OpenView 2 is based on the more modern Flutter framework and is available for Windows, MacOS, Linux, Android, and iOS.

The Android and iOS mobile versions use BLE to connect to the boards (when used with a microcontroller with BLE support), while the desktop version uses USB/UART to connect to the boards.

Features:

  • Multiple boards, one unified interface
  • Mobile platforms: Android and iOS
  • Desktop platforms: Windows, MacOS, and Linux
  • Code development environment: Flutter
  • Data storage option to CSV files
  • You can add your own board by editing the source (for now, in the future we will add a more configurable way to add new boards)

Supported Boards

Installing and using Protocentral OpenView 2

You can download the latest version for your operating system from the Releases page.

OpenView 2 is written on the Flutter and is fully open source. You can compile your own from the source code provide in this GitHub repository.

Using on Desktop Platforms:

  1. Download the zip file from the Releases page.
  2. Extract the zip file installed
  3. Open the app in the folder extracted and run the application

Using on Mobile Platforms:

Download the openview app from the Google Play store for Android and from the Apple App Store for iOS.

Download from Google Play Download from App Store

Packet Format

Protocentral OpenView 2 is compatible with any device that can send data through Serial port over UART/USB/Bluetooth-SPP/BLE

Position Value
0 0x0A
1 0xFA
2 Payload Length LSB
3 Payload Length MSB
4 0x02 (Type - Data)
5 Payload 0
.. Payload (...)
n Payload n+5
(PL Len + 5) 0x0B

License

This software is open source and licensed under the following license:

MIT License

Copyright (c) 2019 Protocentral

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.