Open wt19 opened 2 years ago
I had the same problem, but in fact the argument purpose is to disable maps :
parser.add_argument(
'-m', '--drawmap',
action='store_false',
default = True,
help='Draw Roomba cleaning map (default: %(default)s)')
Just remove the parameter to enable maps drawing (it is the default behavior).
-m
is a toggle, no need for True or False.
./roomba.py -m
disables map drawing.
README mentions the argument -m (--drawmap) but this seems to be not available.
same if I use --drawmap