Initial public release
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user