https://github.com/nathancy/datalogger-server
Datalogger webserver to log data via UART on a Raspberry Pi using the Django framework
https://github.com/nathancy/datalogger-server
Last synced: 13 days ago
JSON representation
Datalogger webserver to log data via UART on a Raspberry Pi using the Django framework
- Host: GitHub
- URL: https://github.com/nathancy/datalogger-server
- Owner: nathancy
- Created: 2017-01-13T10:23:07.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-26T02:33:54.000Z (almost 9 years ago)
- Last Synced: 2025-03-04T22:19:55.092Z (over 1 year ago)
- Language: Python
- Size: 47.1 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Datalogger Webserver
A portable datalogger webserver capable of running on any local connection. Includes Python scripts to timestamp and log GPS data (or any data stream via UART) on a Raspberry Pi into .csv files. Implemented using HTML5/CSS web interface to create, edit, remove, or view logging data history.
# Datalogger Features
- Ability to create new logger with specified and standard/default settings. Choose baudrate, desired .csv file name, data stream update rate, port, and timeout.
- File hosting capability.
- View, download, or delete individual files.
- Current logging status with ability to stop logger.
# Developers Guide
In the "Logging History" tab, to show past loggers admin credentials are:
Username: `admin`
Password: `spectrum`
To start the server:
Go to directory with the "manage.py" inside. Enter:
```
python manage.py runserver 0.0.0.0:8000
```
To access, go to "IPv4 address:8000" on any web browser.
For example: IPv4 address = 192.168.200.76. Thus run "192.168.200.76:8000" in address bar.
To check if logger is alive:
```
ps aux | grep "python"
```
To check real-time datastream:
```
tail -f "manage.py"
```