├── .gitattributes ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | I'm still deciding which to use exactly but the TL;DR is 2 | 3 | You can make your own for you and your friends. 4 | You can fork and modify the hardware and software but keep the same license as the source. 5 | 6 | You can not sell the hardware as your own. 7 | You can not sell the software as your own. 8 | If you make your own hardware that works with this software, then sell your own hardware and credit the source of the software please. 9 | 10 | 11 | Not that you'd want to use this in it's current state. 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # USB-2-232-KBD 3 | Converts USB mice and USB keyboards to serial mice and XT-AT-PS/2 keyboards. 4 | 5 | 6 | ## In development 7 | See the dev branch 8 | --------------------------------------------------------------------------------