Files
kick-it/pykick/kick.py
2018-06-15 15:20:22 +02:00

10 lines
186 B
Python

from .utils import read_config
from .movements import NaoMover
if __name__ == "__main__":
cfg = read_config()
mover = NaoMover(cfg['ip'])
mover.stand_up()
mover.kick()