DexterInd / GoPiGo3

The GoPiGo3 is a Raspberry Pi Robot!
https://gopigo.io
Other
96 stars 85 forks source link

GoPiGo3 Control Panel Should Display Precise Wheel Base Values #286

Closed slowrunner closed 3 years ago

slowrunner commented 3 years ago

The current edit boxes for Wheel Diameter and Wheel Base are both (60, 40) which does not display a user determined Wheel Base value having two digit precision (e.g. 114.05 the last digit will be cut off)

GoPiGo3_Control_Panel_WB_EditBox

Fix is to expand the Wheel Base edit box:

        # self.wheel_base_input = wx.TextCtrl(self, value=str(wheel_base_width), size=(60, 40))
        self.wheel_base_input = wx.TextCtrl(self, value=str(wheel_base_width), size=(70, 40))

GoPiGo3_Ctl_Pnl_WB_fix