https://github.com/mupq/pqm4
Revision 34d6ed00e2af553a6ddf6f764d04db8807bd745d authored by Ko- on 20 November 2020, 19:51:38 UTC, committed by GitHub on 20 November 2020, 19:51:38 UTC
1 parent 68007db
Raw File
Tip revision: 34d6ed00e2af553a6ddf6f764d04db8807bd745d authored by Ko- on 20 November 2020, 19:51:38 UTC
Clarify pyserial installation instructions (#169)
Tip revision: 34d6ed0
test.py
#!/usr/bin/env python3
from mupq import mupq
from interface import M4Settings, M4

import sys

if __name__ == "__main__":
    with M4() as m4:
        test = mupq.SimpleTest(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top