Last active
June 3, 2019 12:50
-
-
Save trevphil/2c0fafbb651b778a73d6c7d3e395b927 to your computer and use it in GitHub Desktop.
Parameters
This file contains 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
enum PathType: String, CaseIterable { | |
case outAndBack, loop | |
} | |
enum Distance: Double, CaseIterable { | |
case short = 1000 // in meters | |
case medium = 5000 | |
case long = 15000 | |
} | |
enum Speed: Double, CaseIterable { | |
case slow = 2.40 // in meters per sec | |
case medium = 3.16 | |
case fast = 4.47 | |
} | |
enum SignalStrength: String, CaseIterable { | |
case weak, varied, strong | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment