Increase acceleration bound on spline UI
We can accelerate harder than 5 m/s^2, so let's open it up.
Change-Id: I05b264bd1cc737e327a44f49a48ed3eda3d3db47
diff --git a/frc971/control_loops/python/spline_graph.py b/frc971/control_loops/python/spline_graph.py
index f10746f..e57b64a 100755
--- a/frc971/control_loops/python/spline_graph.py
+++ b/frc971/control_loops/python/spline_graph.py
@@ -127,7 +127,7 @@
self.long_input = Gtk.SpinButton()
self.long_input.set_size_request(100, 20)
self.long_input.set_numeric(True)
- self.long_input.set_range(0, 5)
+ self.long_input.set_range(0, 20)
self.long_input.set_digits(3)
self.long_input.set_increments(0.1, 100)
self.long_input.connect("value-changed", self.long_changed)
@@ -140,7 +140,7 @@
self.lat_input = Gtk.SpinButton()
self.lat_input.set_size_request(100, 20)
self.lat_input.set_numeric(True)
- self.lat_input.set_range(0, 5)
+ self.lat_input.set_range(0, 20)
self.lat_input.set_digits(3)
self.lat_input.set_increments(0.1, 100)
self.lat_input.connect("value-changed", self.lat_changed)