This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open System | |
let L = 14. // Space between wheels || Your values might be quite different | |
let R = 2.7 // Wheel's radius || | |
let ticksPerRotation = 12000. // ~ amount of ticks is taken by one full rotation | |
let desiredAngle = int ((L/R/4.) * ticksPerRotation) // Math routine to calculate how many ticks is taken to turn | |
type Direction = Forward | Backward | Left | Right | |
// <Twitter boilerplate part> |