Initial public release

This commit is contained in:
2026-07-17 15:29:53 -04:00
commit 2d71ce77a1
81 changed files with 32056 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
"""ATOMS3 MacroPad - Node-based macro keyboard programmer.
Launch this script to open the macro editor GUI.
Requires: Python 3.10+, pyserial, Pillow
"""
import sys
import os
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from app import MacroPadApp
def main():
app = MacroPadApp()
app.mainloop()
if __name__ == "__main__":
main()