namespace RaspiControl { public static class NavigationConstants { public const int TURN_ANGLE_LEFT = -10; public const int TURN_ANGLE_RIGHT = 10; public const int SPEED_FORWARD = 100; public const int SPEED_BACKWARD = -100; public const bool STOP = true; } }