https://github.com/robert-96/raspberry-pi-remote
Use your phone as a remote for your Raspberry Pi.
https://github.com/robert-96/raspberry-pi-remote
flask python raspberry-pi
Last synced: about 2 months ago
JSON representation
Use your phone as a remote for your Raspberry Pi.
- Host: GitHub
- URL: https://github.com/robert-96/raspberry-pi-remote
- Owner: Robert-96
- License: mit
- Created: 2022-04-11T23:40:49.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-01T21:47:56.000Z (over 1 year ago)
- Last Synced: 2025-07-06T01:03:33.263Z (12 months ago)
- Topics: flask, python, raspberry-pi
- Language: HTML
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# raspberry-pi-remote
Use your phone as a remote controller for your Raspberry Pi.
## Install
Clone the repository:
```bash
$ git clone
$ cd raspberry-pi-remote
```
Install **Raspberry-Pi-Remote**:
```bash
$ python -m pip install -e .
```
Or install the dependencies from `requirements.txt`:
```bash
$ python -m pip install -r requirements.txt
```
## Run
```
$ export FLASK_APP=remote
$ export FLASK_ENV=development
$ python -m flask run
```
Open http://127.0.0.1:5000 in a browser.
## Usage
TODO.
## Test
Install the development dependencies from `requirements-dev.txt`:
```bash
$ python -m pip install -r requirements-dev.txt
```
Run the tests:
```
$ python -m pytest
```
## License
This project is licensed under the [MIT License](./LICENSE).