Releases: rahul-thakoor/rust_gpiozero
Releases · rahul-thakoor/rust_gpiozero
Change license to MIT OR Apache-2.0 and add support for Raspberry Pi 4
-
Fix clippy and fmt warnings. Thanks @AldaronLau
-
change license to either of MIT OR Apache-2.0. Thanks @owenbrooks
-
upgraded rppal to 0.12.0. See Issue #22 and Issue #23. Thanks @dmalenic
Release v0.2.0
rust_gpiozero
now uses Rust 2018 edition and rppal for gpio access
-
input_devices
-
InputDevice changes:
pin
is nowu8
new
configures device with the pin pulled to low by default- Added
new_with_pullup
: create InputDevice with the pin number given with the pin pulled high with an internal resistor by default value
returns abool
-
DigitalInputDevice changes:
pin
is nowu8
new
configures device with the pin pulled to low by default- Added
new_with_pullup
: create InputDevice with the pin number given with the pin pulled high with an internal resistor by default value
returns abool
wait_for_inactive
takes an argumenttimeout
(Option)wait_for_active
takes an argumenttimeout
(Option)
-
Button changes:
pin
is nowu8
new
configures device with the pin pulled tohigh
by default- Added
new_with_pulldown
: create InputDevice with the pin number given with the pin pulled low with an internal resistor by default value
returns abool
wait_for_inactive
takes an argumenttimeout
(Option)wait_for_active
takes an argumenttimeout
(Option)
-
-
output_devices
-
PWMOutputDevice (New)
- A generic output device configured for software pulse-width modulation (PWM)
- Values can be specified between 0.0 and 1.0 for varying levels of power in the device.
-
PWMLED (New)
- Represents a light emitting diode (LED) with variable brightness.
- Values can be specified between 0.0 and 1.0 for varying levels of brightness.
-
Servo (New)
- Represents a PWM-controlled servo motor connected to a GPIO pin
-
OutputDevice changes:
pin
is nowu8
- Added
active_high
: When True, the value property is True when the device's pin is high. When False the value property is True when the device's pin is low (i.e. the value is inverted). - Added
set_active_high
to set the state foractive_high
-
DigitalOutputDevice changes:
pin
is nowu8
- Added
active_high
: When True, the value property is True when the device's pin is high. When False the value property is True when the device's pin is low (i.e. the value is inverted). - Added
set_active_high
to set the state foractive_high
- Added
blink
to make the device turn on and off repeatedly in the background. - Added
set_blink_count
to set the number of times to blink the device - Added
wait
which blocks until background blinking process is done
-
LED changes:
pin
is nowu8
- Added
active_high
: When True, the value property is True when the device's pin is high. When False the value property is True when the device's pin is low (i.e. the value is inverted). - Added
set_active_high
to set the state foractive_high
blink
now takesf32
foron_time
andoff_time
.- Added
set_blink_count
to set the number of times to blink the device - Added
wait
which blocks until background blinking process is done - Added
is_lit
which returns True if the device is currently active and False otherwise.
-
Buzzer changes:
pin
is nowu8
- Added
active_high
: When True, the value property is True when the device's pin is high. When False the value property is True when the device's pin is low (i.e. the value is inverted). - Added
set_active_high
to set the state foractive_high
- Added
beep
to make the device turn on and off repeatedly in the background. - Added
set_beep_count
to set the number of times to beep the device - Added
wait
which blocks until background beeping process is done - Removed
blink
method
-
Motor changes:
forward_pin
andbackward_pin
are nowu8
- Added
set_speed
method: Useset_speed
to change the speed at which motors should turn. Can be any value between 0.0 and the default 1.0 (maximum speed)
-
-
device
- Renamed
GPIODevice
toGpioDevice
- Renamed