https://github.com/jsonfm/remio-inclinated-plane
🥎 A inclinated plane experiment. 🏗
https://github.com/jsonfm/remio-inclinated-plane
css html js pyqt5 python socket-io
Last synced: 2 months ago
JSON representation
🥎 A inclinated plane experiment. 🏗
- Host: GitHub
- URL: https://github.com/jsonfm/remio-inclinated-plane
- Owner: jsonfm
- License: apache-2.0
- Created: 2022-08-15T22:15:44.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-16T18:08:34.000Z (almost 4 years ago)
- Last Synced: 2025-03-25T13:47:06.016Z (over 1 year ago)
- Topics: css, html, js, pyqt5, python, socket-io
- Language: Python
- Homepage:
- Size: 256 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## INCLINATED PLANE ⚡️
This is a python remio mockup template, structured to be used as experiment of a remote lab.
## GUI
This project was made with PyQt5:

## Communications Schema
The present project uses socketio for remote control.

## Structure
```
.
├── arduino
│ └── mockup
│ └── mockup.ino
├── docs
├── public
├── server
├── utils
├── gui.py
├── gui.ui
├── production.py
├── README.md
├── requirements.txt
└── settings.py
```
## Installation
First you probabily want to create and activate a virtual env
```bash
python3 -m venv venv
source venv/bin/activate
```
## Dependencies
After you set the virutal env, you should install dependencies as follows:
```
pip install -r requirements.txt
```
## Run Mockup GUI
This experiment uses PyQt5 framework to provide a GUI.
```
python gui.py
```
## Run Mockup without GUI (Production)
This experiment also, could be controlled remotly, then you probably not want to use the local gui.
```
python production.py
```
## SocketIO Server
A socketio server was added for do some tests.
```
python run_server.py
```