diff --git a/README.md b/README.md index 0a7bbef..eb7574c 100644 --- a/README.md +++ b/README.md @@ -640,6 +640,7 @@ Methods: from gui.core.colors import * # Colors and shapes from gui.widgets.buttons import Button ``` +![Image](./images/pushbuttons.JPG) This emulates a pushbutton, with a callback being executed each time the button is pressed. Physically this consists of pressing the `select` button when the @@ -739,6 +740,7 @@ for t in table: # Buttons overlay each other at same location from gui.core.colors import * # Colors and shapes from gui.widgets.buttons import Button, RadioButtons ``` +![Image](./images/radiobuttons.JPG) This object groups a set of buttons at different locations. When a button is pressed, it becomes highlighted and remains so until another button is pressed. @@ -1124,6 +1126,7 @@ change. See `gui/demos/active.py`. ```python from gui.widgets.scale import Scale ``` +![Image](./images/scale.JPG) This displays floating point data having a wide dynamic range, and optionally provides for user input of such values. It is modelled on old radios where a @@ -1231,6 +1234,7 @@ precision. Each visible division on the control represents 10 integer units. ```python from gui.widgets.scale_log import ScaleLog ``` +![Image](./images/log_scale.JPG) This enables the input and/or display of floating point values with extremely wide dynamic range. This is done by means of a base 10 logarithmic scale. In diff --git a/images/dial.JPG b/images/dial.JPG new file mode 100644 index 0000000..0c6c0cc Binary files /dev/null and b/images/dial.JPG differ diff --git a/images/horiz_slider.JPG b/images/horiz_slider.JPG new file mode 100644 index 0000000..f32a082 Binary files /dev/null and b/images/horiz_slider.JPG differ diff --git a/images/knob.JPG b/images/knob.JPG new file mode 100644 index 0000000..d96095d Binary files /dev/null and b/images/knob.JPG differ diff --git a/images/label.JPG b/images/label.JPG new file mode 100644 index 0000000..7d1b782 Binary files /dev/null and b/images/label.JPG differ diff --git a/images/log_scale.JPG b/images/log_scale.JPG new file mode 100644 index 0000000..364ffbe Binary files /dev/null and b/images/log_scale.JPG differ diff --git a/images/meter.JPG b/images/meter.JPG new file mode 100644 index 0000000..ee33ecc Binary files /dev/null and b/images/meter.JPG differ diff --git a/images/pushbuttons.JPG b/images/pushbuttons.JPG new file mode 100644 index 0000000..75515ad Binary files /dev/null and b/images/pushbuttons.JPG differ diff --git a/images/radiobuttons.JPG b/images/radiobuttons.JPG new file mode 100644 index 0000000..62c1855 Binary files /dev/null and b/images/radiobuttons.JPG differ diff --git a/images/rp2_test_fixture.JPG b/images/rp2_test_fixture.JPG new file mode 100644 index 0000000..d52ef14 Binary files /dev/null and b/images/rp2_test_fixture.JPG differ diff --git a/images/scale.JPG b/images/scale.JPG new file mode 100644 index 0000000..d6b50b4 Binary files /dev/null and b/images/scale.JPG differ diff --git a/images/vert_slider.JPG b/images/vert_slider.JPG new file mode 100644 index 0000000..3bf5802 Binary files /dev/null and b/images/vert_slider.JPG differ