Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mokyabun/universal-kiosk
Web ordering system with universal design
https://github.com/mokyabun/universal-kiosk
disabilities disability esp-now esp8266 esp8266-arduino flask javascript platformio python selenium selenium-python svelte sveltejs sveltekit
Last synced: about 1 month ago
JSON representation
Web ordering system with universal design
- Host: GitHub
- URL: https://github.com/mokyabun/universal-kiosk
- Owner: mokyabun
- Created: 2022-11-25T16:47:08.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-04T18:49:15.000Z (about 2 years ago)
- Last Synced: 2024-11-16T01:38:23.160Z (2 months ago)
- Topics: disabilities, disability, esp-now, esp8266, esp8266-arduino, flask, javascript, platformio, python, selenium, selenium-python, svelte, sveltejs, sveltekit
- Language: Svelte
- Homepage:
- Size: 367 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# universal-kiosk
![preview](preview.png)Universal Kiosk is an web ordering system with universal design.
## Universal design
- ### For blind & senior citizens
They can operate ordering system using physical device + TTS system.- ### For kids & locomotor disabled people
They can scan the QR code on the main page and use web ordering system.## Built with & Requirements
- ### Web back end
- Python
- Poetry (for dependency management)
- Flask- ### Web front end
- Javascript
- SvelteKit- ### Physical device
- #### Keypad
- Arduino SDK
- ESP8266 (NodeMCU)
- ESP-NOW
- Keypad
- PlatformIO- #### Web controller
- Selenium
- pydub
- pyserial## Setup
### Clone repository to local
```bash
git clone https://github.com/krome0/universal-kiosk
```### Web front end
```bash
cd universal-kiosk/web/front-endnpm install
npm run dev
```### Web back end
```bash
# from project's root directory
cd web/front-end# from front-end directory
cd ../back-endpoetry install
poetry run python main.py
```### Physical device
- #### Keypad device
1. Install PlatformIO on Visual Stduio Code.
2. Open esp8266-recv, esp8266-send with PlatformIO.
3. Build and Upload to your ESP8266(recommend NodeMCU) board.- #### Web controller
```bash
# from project's root directory
cd physical-devices/web-controllerpoetry install
poetry run python main.py
```