Files
2026-07-17 15:29:53 -04:00

22 lines
366 B
Python

"""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()