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 = -15;
public const int TURN_ANGLE_RIGHT = 15;
public const int SPEED_FORWARD = 350;
public const int SPEED_BACKWARD = -350;
public const bool STOP = true;
}
}