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: 3 months 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 (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-04T18:49:15.000Z (over 3 years ago)
- Last Synced: 2026-01-03T16:22:15.631Z (6 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

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-end
npm install
npm run dev
```
### Web back end
```bash
# from project's root directory
cd web/front-end
# from front-end directory
cd ../back-end
poetry 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-controller
poetry install
poetry run python main.py
```