From 583f7c09ac7f107312ea9e42e55408d10a16f1c2 Mon Sep 17 00:00:00 2001 From: Aidan Brzezinski Date: Wed, 26 Nov 2025 16:45:15 -0500 Subject: [PATCH] Initial strcture for the repo --- .gitattributes | 13 +++++++++++++ .gitignore | 5 +++++ README.md | 32 +++++++++++++++++++++++++++++++- 3 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..405486b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,13 @@ +# 3D models - use Git LFS +*.step filter=lfs diff=lfs merge=lfs -text +*.stp filter=lfs diff=lfs merge=lfs -text +*.wrl filter=lfs diff=lfs merge=lfs -text +*.stl filter=lfs diff=lfs merge=lfs -text + +# PDFs - use Git LFS +*.pdf filter=lfs diff=lfs merge=lfs -text + +# Images - use Git LFS +*.png filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..063ac7b --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# KiCad temporary files +/~*.lck +/*-backups/**/* +/fp-info-cache +/*.kicad_prl diff --git a/README.md b/README.md index b922c7b..0d6daa7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,33 @@ # Digital-Nixie-Tube-Clock -A nixie tube clock that is powered completely by digital chips. \ No newline at end of file +A nixie tube clock that is powered completely by digital chips. + +![Project Status](https://img.shields.io/badge/status-in%20development-yellow) +![Hardware](https://img.shields.io/badge/hardware-rev%201.0-blue) + +## Overview + +This project implements a fully functional nixie tube clock using modern digital logic ICs. The goal is to have 6 digets, HH-MM-SS, and the ablilty to flash to MM-DD-YY to show date as well. There will be a button to intrement/decrement a selected number for time/date setting. As well as a button to pulse between time and date. + +## Repository Strcture +``` + +Digital-Nixie-Tube-Clock/ +├── hardware/ KiCad schematic and PCB files +├── parts/ Component library (symbols, footprints, 3D models) +├── datasheets/ Component datasheets by manufacturer part number +├── scripts/ Automation utilities +├── doc/ Project documentation +└── release/ Generated manufacturing files (current revision) +``` + +## License + +... + + +## Authors + +- Aidan Brzezinski + +