Advanced Distributed Systems module at HSLU
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
ADIS_Projects/ADIS_Csharp/RaspiControl/NavigationConstants.cs

9 lines
311 B

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;
}
}