robolab/src/odometry.py

12 lines
291 B
Python

#!/usr/bin/env python3
# Suggestion: implement odometry as class that is not using the ev3dev.ev3 package
# establish value exchange with main driving class via getters and setters
import time
from planet import Direction
class Odometry:
def __init__(self, planet):
pass