{"id":20266653,"url":"https://github.com/jdub-2000/lildaq","last_synced_at":"2026-06-01T06:32:15.194Z","repository":{"id":250511194,"uuid":"834666954","full_name":"jdub-2000/lildaq","owner":"jdub-2000","description":"A lil' Data Acquisition System (DAQ) in the form of a lightweight CLI that collects serial input and dumps it with a timestamp to a local CSV file.  Built for Ardunio/IoT applications","archived":false,"fork":false,"pushed_at":"2024-07-28T03:46:52.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-04T02:44:32.443Z","etag":null,"topics":["ardunio","daq"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jdub-2000.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-28T01:35:44.000Z","updated_at":"2025-03-05T03:13:14.000Z","dependencies_parsed_at":"2024-07-28T03:00:00.018Z","dependency_job_id":"85fe82b9-1c23-4e32-9cb1-6a36fbc107d3","html_url":"https://github.com/jdub-2000/lildaq","commit_stats":null,"previous_names":["jdub-2000/lildaq"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jdub-2000/lildaq","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdub-2000%2Flildaq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdub-2000%2Flildaq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdub-2000%2Flildaq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdub-2000%2Flildaq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jdub-2000","download_url":"https://codeload.github.com/jdub-2000/lildaq/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdub-2000%2Flildaq/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33763649,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ardunio","daq"],"created_at":"2024-11-14T12:10:44.387Z","updated_at":"2026-06-01T06:32:15.178Z","avatar_url":"https://github.com/jdub-2000.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lildaq (WIP)\n\nA lil' Data Acquisition System (DAQ) in the form of a lightweight CLI that collects serial input and dumps it with a timestamp to a local CSV file.  Built for Ardunio/IoT applications.  I built `lildaq` because I thought it would be cool if logging data from serial inputs from things like `Ardunio` projects was easier/more repeatable for me.  It would be even cooler if other folks get some use out of it too!\n\n\n## Installation WIP\n\n1. Clone this repository\n2. Create a virtual environment (Optional, but recommended)\n3. Install dependencies \n\n```\ncd lildaq\npip install -r \"setup/requirements.txt\"\n```\n4. Log data to your heart's content!\n\n\n## Usage WIP\n\n### General Usage:\n\n```\nlildaq.py [-h] [-p PORT] [-o OUTPUT_PATH] [-b BAUD_RATE] [-e]\n                 [-f FILE_HEADER [FILE_HEADER ...]] [-q]\n```\nto stop logging, hit **Ctrl-C**\n\n### CLI Options\n```\n  -h, --help            show this help message and exit\n  -p PORT, --port PORT  The serial port to monitor\n  -o OUTPUT_PATH, --output_path OUTPUT_PATH\n                        Local path to write the output file.\n  -b BAUD_RATE, --baud_rate BAUD_RATE\n                        The serial port baud raute in bps; default is 9600\n  -e, --epoch_timestamps\n                        If enabled, reports timestamps as epoch/UNIX\n                        timestamps\n  -f FILE_HEADER [FILE_HEADER ...], --file_header FILE_HEADER [FILE_HEADER ...]\n                        List of column names to form the header; be sure to\n                        check your Arduino setup first :)\n  -q, --quiet           When flag is used, serial data will not be displayed\n                        as it collects\n\n```\n\nA note about baudrates...\nFrom the `pySerial` documentation:\n\n```\nThe parameter baudrate can be one of the standard values: 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, 9600, 19200, 38400, 57600, 115200. These are well supported on all platforms.\n\nStandard values above 115200, such as: 230400, 460800, 500000, 576000, 921600, 1000000, 1152000, 1500000, 2000000, 2500000, 3000000, 3500000, 4000000 also work on many platforms and devices.\n\nNon-standard values are also supported on some platforms (GNU/Linux, MAC OSX \u003e= Tiger, Windows). Though, even on these platforms some serial ports may reject non-standard values.\n```\n\n## Examples \n\nIn the `/ardunio` directory there is some example `Processing` code and a `.zip` file contianing a an `Arduino` library that is used in the code.  For more information regarding installing/using `Arduino` libraries, check out this [page](http://www.arduino.cc/en/Guide/Libraries).\n\nUsing this code conjction with a `DH11 Temperature and Humidity Logger` in the configuration shown [here](https://www.circuitbasics.com/how-to-set-up-the-dht11-humidity-sensor-on-an-arduino/), you should be logging temperature in `degrees Fahrenheit` and the humidity in `percentage`.  \n\n\n\n\n\n## Acknowledgements\n\nThis whole thing is just a wrapper for the very nicely built [pySerial](https://pyserial.readthedocs.io/en/latest/#), I really appreciate all their work.\n\n[pyFiglet](https://github.com/pwaller/pyfiglet) Is another awesome library I used to make the text graphics in the CLI.  :)\n\nThe awesome [DHTLib](http://arduino.cc/playground/Main/DHTLib) by Rob Tillaart was used in the Ardunio example code.\n\nThis very [helpful blog post](https://www.circuitbasics.com/how-to-set-up-the-dht11-humidity-sensor-on-an-arduino/) at `Circuit Basics` by Scott Campbell was instrumental to me ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjdub-2000%2Flildaq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjdub-2000%2Flildaq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjdub-2000%2Flildaq/lists"}