#[allow(unused_imports)]
use crate::{
byte_converter::*, device::*, error::TinkerforgeError, ip_connection::async_io::AsyncIpConnection, low_level_traits::LowLevelRead,
};
#[allow(unused_imports)]
use futures_core::Stream;
#[allow(unused_imports)]
use tokio_stream::StreamExt;
pub enum PerformanceDcBrickletFunction {
SetEnabled,
GetEnabled,
SetVelocity,
GetVelocity,
GetCurrentVelocity,
SetMotion,
GetMotion,
FullBrake,
SetDriveMode,
GetDriveMode,
SetPwmFrequency,
GetPwmFrequency,
GetPowerStatistics,
SetThermalShutdown,
GetThermalShutdown,
SetGpioConfiguration,
GetGpioConfiguration,
SetGpioAction,
GetGpioAction,
GetGpioState,
SetErrorLedConfig,
GetErrorLedConfig,
SetCwLedConfig,
GetCwLedConfig,
SetCcwLedConfig,
GetCcwLedConfig,
SetGpioLedConfig,
GetGpioLedConfig,
SetEmergencyShutdownCallbackConfiguration,
GetEmergencyShutdownCallbackConfiguration,
SetVelocityReachedCallbackConfiguration,
GetVelocityReachedCallbackConfiguration,
SetCurrentVelocityCallbackConfiguration,
GetCurrentVelocityCallbackConfiguration,
GetSpitfpErrorCount,
SetBootloaderMode,
GetBootloaderMode,
SetWriteFirmwarePointer,
WriteFirmware,
SetStatusLedConfig,
GetStatusLedConfig,
GetChipTemperature,
Reset,
WriteUid,
ReadUid,
GetIdentity,
CallbackEmergencyShutdown,
CallbackVelocityReached,
CallbackCurrentVelocity,
CallbackGpioState,
}
impl From<PerformanceDcBrickletFunction> for u8 {
fn from(fun: PerformanceDcBrickletFunction) -> Self {
match fun {
PerformanceDcBrickletFunction::SetEnabled => 1,
PerformanceDcBrickletFunction::GetEnabled => 2,
PerformanceDcBrickletFunction::SetVelocity => 3,
PerformanceDcBrickletFunction::GetVelocity => 4,
PerformanceDcBrickletFunction::GetCurrentVelocity => 5,
PerformanceDcBrickletFunction::SetMotion => 6,
PerformanceDcBrickletFunction::GetMotion => 7,
PerformanceDcBrickletFunction::FullBrake => 8,
PerformanceDcBrickletFunction::SetDriveMode => 9,
PerformanceDcBrickletFunction::GetDriveMode => 10,
PerformanceDcBrickletFunction::SetPwmFrequency => 11,
PerformanceDcBrickletFunction::GetPwmFrequency => 12,
PerformanceDcBrickletFunction::GetPowerStatistics => 13,
PerformanceDcBrickletFunction::SetThermalShutdown => 14,
PerformanceDcBrickletFunction::GetThermalShutdown => 15,
PerformanceDcBrickletFunction::SetGpioConfiguration => 16,
PerformanceDcBrickletFunction::GetGpioConfiguration => 17,
PerformanceDcBrickletFunction::SetGpioAction => 18,
PerformanceDcBrickletFunction::GetGpioAction => 19,
PerformanceDcBrickletFunction::GetGpioState => 20,
PerformanceDcBrickletFunction::SetErrorLedConfig => 21,
PerformanceDcBrickletFunction::GetErrorLedConfig => 22,
PerformanceDcBrickletFunction::SetCwLedConfig => 23,
PerformanceDcBrickletFunction::GetCwLedConfig => 24,
PerformanceDcBrickletFunction::SetCcwLedConfig => 25,
PerformanceDcBrickletFunction::GetCcwLedConfig => 26,
PerformanceDcBrickletFunction::SetGpioLedConfig => 27,
PerformanceDcBrickletFunction::GetGpioLedConfig => 28,
PerformanceDcBrickletFunction::SetEmergencyShutdownCallbackConfiguration => 29,
PerformanceDcBrickletFunction::GetEmergencyShutdownCallbackConfiguration => 30,
PerformanceDcBrickletFunction::SetVelocityReachedCallbackConfiguration => 31,
PerformanceDcBrickletFunction::GetVelocityReachedCallbackConfiguration => 32,
PerformanceDcBrickletFunction::SetCurrentVelocityCallbackConfiguration => 33,
PerformanceDcBrickletFunction::GetCurrentVelocityCallbackConfiguration => 34,
PerformanceDcBrickletFunction::GetSpitfpErrorCount => 234,
PerformanceDcBrickletFunction::SetBootloaderMode => 235,
PerformanceDcBrickletFunction::GetBootloaderMode => 236,
PerformanceDcBrickletFunction::SetWriteFirmwarePointer => 237,
PerformanceDcBrickletFunction::WriteFirmware => 238,
PerformanceDcBrickletFunction::SetStatusLedConfig => 239,
PerformanceDcBrickletFunction::GetStatusLedConfig => 240,
PerformanceDcBrickletFunction::GetChipTemperature => 242,
PerformanceDcBrickletFunction::Reset => 243,
PerformanceDcBrickletFunction::WriteUid => 248,
PerformanceDcBrickletFunction::ReadUid => 249,
PerformanceDcBrickletFunction::GetIdentity => 255,
PerformanceDcBrickletFunction::CallbackEmergencyShutdown => 35,
PerformanceDcBrickletFunction::CallbackVelocityReached => 36,
PerformanceDcBrickletFunction::CallbackCurrentVelocity => 37,
PerformanceDcBrickletFunction::CallbackGpioState => 38,
}
}
}
pub const PERFORMANCE_DC_BRICKLET_DRIVE_MODE_DRIVE_BRAKE: u8 = 0;
pub const PERFORMANCE_DC_BRICKLET_DRIVE_MODE_DRIVE_COAST: u8 = 1;
pub const PERFORMANCE_DC_BRICKLET_GPIO_ACTION_NONE: u32 = 0;
pub const PERFORMANCE_DC_BRICKLET_GPIO_ACTION_NORMAL_STOP_RISING_EDGE: u32 = 1;
pub const PERFORMANCE_DC_BRICKLET_GPIO_ACTION_NORMAL_STOP_FALLING_EDGE: u32 = 2;
pub const PERFORMANCE_DC_BRICKLET_GPIO_ACTION_FULL_BRAKE_RISING_EDGE: u32 = 4;
pub const PERFORMANCE_DC_BRICKLET_GPIO_ACTION_FULL_BRAKE_FALLING_EDGE: u32 = 8;
pub const PERFORMANCE_DC_BRICKLET_GPIO_ACTION_CALLBACK_RISING_EDGE: u32 = 16;
pub const PERFORMANCE_DC_BRICKLET_GPIO_ACTION_CALLBACK_FALLING_EDGE: u32 = 32;
pub const PERFORMANCE_DC_BRICKLET_ERROR_LED_CONFIG_OFF: u8 = 0;
pub const PERFORMANCE_DC_BRICKLET_ERROR_LED_CONFIG_ON: u8 = 1;
pub const PERFORMANCE_DC_BRICKLET_ERROR_LED_CONFIG_SHOW_HEARTBEAT: u8 = 2;
pub const PERFORMANCE_DC_BRICKLET_ERROR_LED_CONFIG_SHOW_ERROR: u8 = 3;
pub const PERFORMANCE_DC_BRICKLET_CW_LED_CONFIG_OFF: u8 = 0;
pub const PERFORMANCE_DC_BRICKLET_CW_LED_CONFIG_ON: u8 = 1;
pub const PERFORMANCE_DC_BRICKLET_CW_LED_CONFIG_SHOW_HEARTBEAT: u8 = 2;
pub const PERFORMANCE_DC_BRICKLET_CW_LED_CONFIG_SHOW_CW_AS_FORWARD: u8 = 3;
pub const PERFORMANCE_DC_BRICKLET_CW_LED_CONFIG_SHOW_CW_AS_BACKWARD: u8 = 4;
pub const PERFORMANCE_DC_BRICKLET_CCW_LED_CONFIG_OFF: u8 = 0;
pub const PERFORMANCE_DC_BRICKLET_CCW_LED_CONFIG_ON: u8 = 1;
pub const PERFORMANCE_DC_BRICKLET_CCW_LED_CONFIG_SHOW_HEARTBEAT: u8 = 2;
pub const PERFORMANCE_DC_BRICKLET_CCW_LED_CONFIG_SHOW_CCW_AS_FORWARD: u8 = 3;
pub const PERFORMANCE_DC_BRICKLET_CCW_LED_CONFIG_SHOW_CCW_AS_BACKWARD: u8 = 4;
pub const PERFORMANCE_DC_BRICKLET_GPIO_LED_CONFIG_OFF: u8 = 0;
pub const PERFORMANCE_DC_BRICKLET_GPIO_LED_CONFIG_ON: u8 = 1;
pub const PERFORMANCE_DC_BRICKLET_GPIO_LED_CONFIG_SHOW_HEARTBEAT: u8 = 2;
pub const PERFORMANCE_DC_BRICKLET_GPIO_LED_CONFIG_SHOW_GPIO_ACTIVE_HIGH: u8 = 3;
pub const PERFORMANCE_DC_BRICKLET_GPIO_LED_CONFIG_SHOW_GPIO_ACTIVE_LOW: u8 = 4;
pub const PERFORMANCE_DC_BRICKLET_BOOTLOADER_MODE_BOOTLOADER: u8 = 0;
pub const PERFORMANCE_DC_BRICKLET_BOOTLOADER_MODE_FIRMWARE: u8 = 1;
pub const PERFORMANCE_DC_BRICKLET_BOOTLOADER_MODE_BOOTLOADER_WAIT_FOR_REBOOT: u8 = 2;
pub const PERFORMANCE_DC_BRICKLET_BOOTLOADER_MODE_FIRMWARE_WAIT_FOR_REBOOT: u8 = 3;
pub const PERFORMANCE_DC_BRICKLET_BOOTLOADER_MODE_FIRMWARE_WAIT_FOR_ERASE_AND_REBOOT: u8 = 4;
pub const PERFORMANCE_DC_BRICKLET_BOOTLOADER_STATUS_OK: u8 = 0;
pub const PERFORMANCE_DC_BRICKLET_BOOTLOADER_STATUS_INVALID_MODE: u8 = 1;
pub const PERFORMANCE_DC_BRICKLET_BOOTLOADER_STATUS_NO_CHANGE: u8 = 2;
pub const PERFORMANCE_DC_BRICKLET_BOOTLOADER_STATUS_ENTRY_FUNCTION_NOT_PRESENT: u8 = 3;
pub const PERFORMANCE_DC_BRICKLET_BOOTLOADER_STATUS_DEVICE_IDENTIFIER_INCORRECT: u8 = 4;
pub const PERFORMANCE_DC_BRICKLET_BOOTLOADER_STATUS_CRC_MISMATCH: u8 = 5;
pub const PERFORMANCE_DC_BRICKLET_STATUS_LED_CONFIG_OFF: u8 = 0;
pub const PERFORMANCE_DC_BRICKLET_STATUS_LED_CONFIG_ON: u8 = 1;
pub const PERFORMANCE_DC_BRICKLET_STATUS_LED_CONFIG_SHOW_HEARTBEAT: u8 = 2;
pub const PERFORMANCE_DC_BRICKLET_STATUS_LED_CONFIG_SHOW_STATUS: u8 = 3;
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct Motion {
pub acceleration: u16,
pub deceleration: u16,
}
impl FromByteSlice for Motion {
fn bytes_expected() -> usize {
4
}
fn from_le_byte_slice(bytes: &[u8]) -> Motion {
Motion { acceleration: <u16>::from_le_byte_slice(&bytes[0..2]), deceleration: <u16>::from_le_byte_slice(&bytes[2..4]) }
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct PowerStatistics {
pub voltage: u16,
pub current: u16,
pub temperature: i16,
}
impl FromByteSlice for PowerStatistics {
fn bytes_expected() -> usize {
6
}
fn from_le_byte_slice(bytes: &[u8]) -> PowerStatistics {
PowerStatistics {
voltage: <u16>::from_le_byte_slice(&bytes[0..2]),
current: <u16>::from_le_byte_slice(&bytes[2..4]),
temperature: <i16>::from_le_byte_slice(&bytes[4..6]),
}
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct GpioConfiguration {
pub debounce: u16,
pub stop_deceleration: u16,
}
impl FromByteSlice for GpioConfiguration {
fn bytes_expected() -> usize {
4
}
fn from_le_byte_slice(bytes: &[u8]) -> GpioConfiguration {
GpioConfiguration { debounce: <u16>::from_le_byte_slice(&bytes[0..2]), stop_deceleration: <u16>::from_le_byte_slice(&bytes[2..4]) }
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct CurrentVelocityCallbackConfiguration {
pub period: u32,
pub value_has_to_change: bool,
}
impl FromByteSlice for CurrentVelocityCallbackConfiguration {
fn bytes_expected() -> usize {
5
}
fn from_le_byte_slice(bytes: &[u8]) -> CurrentVelocityCallbackConfiguration {
CurrentVelocityCallbackConfiguration {
period: <u32>::from_le_byte_slice(&bytes[0..4]),
value_has_to_change: <bool>::from_le_byte_slice(&bytes[4..5]),
}
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct SpitfpErrorCount {
pub error_count_ack_checksum: u32,
pub error_count_message_checksum: u32,
pub error_count_frame: u32,
pub error_count_overflow: u32,
}
impl FromByteSlice for SpitfpErrorCount {
fn bytes_expected() -> usize {
16
}
fn from_le_byte_slice(bytes: &[u8]) -> SpitfpErrorCount {
SpitfpErrorCount {
error_count_ack_checksum: <u32>::from_le_byte_slice(&bytes[0..4]),
error_count_message_checksum: <u32>::from_le_byte_slice(&bytes[4..8]),
error_count_frame: <u32>::from_le_byte_slice(&bytes[8..12]),
error_count_overflow: <u32>::from_le_byte_slice(&bytes[12..16]),
}
}
}
#[derive(Clone, Debug, Default, PartialEq, Eq, Hash)]
pub struct Identity {
pub uid: String,
pub connected_uid: String,
pub position: char,
pub hardware_version: [u8; 3],
pub firmware_version: [u8; 3],
pub device_identifier: u16,
}
impl FromByteSlice for Identity {
fn bytes_expected() -> usize {
25
}
fn from_le_byte_slice(bytes: &[u8]) -> Identity {
Identity {
uid: <String>::from_le_byte_slice(&bytes[0..8]),
connected_uid: <String>::from_le_byte_slice(&bytes[8..16]),
position: <char>::from_le_byte_slice(&bytes[16..17]),
hardware_version: <[u8; 3]>::from_le_byte_slice(&bytes[17..20]),
firmware_version: <[u8; 3]>::from_le_byte_slice(&bytes[20..23]),
device_identifier: <u16>::from_le_byte_slice(&bytes[23..25]),
}
}
}
#[derive(Clone)]
pub struct PerformanceDcBricklet {
device: Device,
}
impl PerformanceDcBricklet {
pub const DEVICE_IDENTIFIER: u16 = 2156;
pub const DEVICE_DISPLAY_NAME: &'static str = "Performance DC Bricklet";
pub fn new(uid: u32, connection: AsyncIpConnection) -> PerformanceDcBricklet {
let mut result = PerformanceDcBricklet { device: Device::new([2, 0, 10], uid, connection, Self::DEVICE_DISPLAY_NAME) };
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetEnabled) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetEnabled) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetVelocity) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetVelocity) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetCurrentVelocity) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetMotion) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetMotion) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::FullBrake) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetDriveMode) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetDriveMode) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetPwmFrequency) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetPwmFrequency) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetPowerStatistics) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetThermalShutdown) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetThermalShutdown) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetGpioConfiguration) as usize] =
ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetGpioConfiguration) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetGpioAction) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetGpioAction) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetGpioState) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetErrorLedConfig) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetErrorLedConfig) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetCwLedConfig) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetCwLedConfig) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetCcwLedConfig) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetCcwLedConfig) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetGpioLedConfig) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetGpioLedConfig) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetEmergencyShutdownCallbackConfiguration) as usize] =
ResponseExpectedFlag::True;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetEmergencyShutdownCallbackConfiguration) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetVelocityReachedCallbackConfiguration) as usize] =
ResponseExpectedFlag::True;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetVelocityReachedCallbackConfiguration) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetCurrentVelocityCallbackConfiguration) as usize] =
ResponseExpectedFlag::True;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetCurrentVelocityCallbackConfiguration) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetSpitfpErrorCount) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetBootloaderMode) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetBootloaderMode) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetWriteFirmwarePointer) as usize] =
ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::WriteFirmware) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::SetStatusLedConfig) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetStatusLedConfig) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetChipTemperature) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::Reset) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::WriteUid) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::ReadUid) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(PerformanceDcBrickletFunction::GetIdentity) as usize] = ResponseExpectedFlag::AlwaysTrue;
result
}
pub fn get_response_expected(&mut self, fun: PerformanceDcBrickletFunction) -> Result<bool, GetResponseExpectedError> {
self.device.get_response_expected(u8::from(fun))
}
pub fn set_response_expected(
&mut self,
fun: PerformanceDcBrickletFunction,
response_expected: bool,
) -> Result<(), SetResponseExpectedError> {
self.device.set_response_expected(u8::from(fun), response_expected)
}
pub fn set_response_expected_all(&mut self, response_expected: bool) {
self.device.set_response_expected_all(response_expected)
}
pub fn get_api_version(&self) -> [u8; 3] {
self.device.api_version
}
pub async fn get_emergency_shutdown_callback_receiver(&mut self) -> impl Stream<Item = ()> {
self.device.get_callback_receiver(u8::from(PerformanceDcBrickletFunction::CallbackEmergencyShutdown)).await.map(|_p| ())
}
pub async fn get_velocity_reached_callback_receiver(&mut self) -> impl Stream<Item = i16> {
self.device
.get_callback_receiver(u8::from(PerformanceDcBrickletFunction::CallbackVelocityReached))
.await
.map(|p| i16::from_le_byte_slice(p.body()))
}
pub async fn get_current_velocity_callback_receiver(&mut self) -> impl Stream<Item = i16> {
self.device
.get_callback_receiver(u8::from(PerformanceDcBrickletFunction::CallbackCurrentVelocity))
.await
.map(|p| i16::from_le_byte_slice(p.body()))
}
pub async fn get_gpio_state_callback_receiver(&mut self) -> impl Stream<Item = [bool; 2]> {
self.device
.get_callback_receiver(u8::from(PerformanceDcBrickletFunction::CallbackGpioState))
.await
.map(|p| <[bool; 2]>::from_le_byte_slice(p.body()))
}
pub async fn set_enabled(&mut self, enabled: bool) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
enabled.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetEnabled), &payload).await?;
Ok(())
}
pub async fn get_enabled(&mut self) -> Result<bool, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetEnabled), &payload).await?;
Ok(bool::from_le_byte_slice(result.body()))
}
pub async fn set_velocity(&mut self, velocity: i16) -> Result<(), TinkerforgeError> {
let mut payload = [0; 2];
velocity.write_to_slice(&mut payload[0..2]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetVelocity), &payload).await?;
Ok(())
}
pub async fn get_velocity(&mut self) -> Result<i16, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetVelocity), &payload).await?;
Ok(i16::from_le_byte_slice(result.body()))
}
pub async fn get_current_velocity(&mut self) -> Result<i16, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetCurrentVelocity), &payload).await?;
Ok(i16::from_le_byte_slice(result.body()))
}
pub async fn set_motion(&mut self, acceleration: u16, deceleration: u16) -> Result<(), TinkerforgeError> {
let mut payload = [0; 4];
acceleration.write_to_slice(&mut payload[0..2]);
deceleration.write_to_slice(&mut payload[2..4]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetMotion), &payload).await?;
Ok(())
}
pub async fn get_motion(&mut self) -> Result<Motion, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetMotion), &payload).await?;
Ok(Motion::from_le_byte_slice(result.body()))
}
pub async fn full_brake(&mut self) -> Result<(), TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::FullBrake), &payload).await?;
Ok(())
}
pub async fn set_drive_mode(&mut self, mode: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
mode.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetDriveMode), &payload).await?;
Ok(())
}
pub async fn get_drive_mode(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetDriveMode), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_pwm_frequency(&mut self, frequency: u16) -> Result<(), TinkerforgeError> {
let mut payload = [0; 2];
frequency.write_to_slice(&mut payload[0..2]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetPwmFrequency), &payload).await?;
Ok(())
}
pub async fn get_pwm_frequency(&mut self) -> Result<u16, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetPwmFrequency), &payload).await?;
Ok(u16::from_le_byte_slice(result.body()))
}
pub async fn get_power_statistics(&mut self) -> Result<PowerStatistics, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetPowerStatistics), &payload).await?;
Ok(PowerStatistics::from_le_byte_slice(result.body()))
}
pub async fn set_thermal_shutdown(&mut self, temperature: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
temperature.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetThermalShutdown), &payload).await?;
Ok(())
}
pub async fn get_thermal_shutdown(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetThermalShutdown), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_gpio_configuration(&mut self, channel: u8, debounce: u16, stop_deceleration: u16) -> Result<(), TinkerforgeError> {
let mut payload = [0; 5];
channel.write_to_slice(&mut payload[0..1]);
debounce.write_to_slice(&mut payload[1..3]);
stop_deceleration.write_to_slice(&mut payload[3..5]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetGpioConfiguration), &payload).await?;
Ok(())
}
pub async fn get_gpio_configuration(&mut self, channel: u8) -> Result<GpioConfiguration, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetGpioConfiguration), &payload).await?;
Ok(GpioConfiguration::from_le_byte_slice(result.body()))
}
pub async fn set_gpio_action(&mut self, channel: u8, action: u32) -> Result<(), TinkerforgeError> {
let mut payload = [0; 5];
channel.write_to_slice(&mut payload[0..1]);
action.write_to_slice(&mut payload[1..5]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetGpioAction), &payload).await?;
Ok(())
}
pub async fn get_gpio_action(&mut self, channel: u8) -> Result<u32, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetGpioAction), &payload).await?;
Ok(u32::from_le_byte_slice(result.body()))
}
pub async fn get_gpio_state(&mut self) -> Result<Box<[bool; 2]>, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetGpioState), &payload).await?;
Ok(Box::<[bool; 2]>::from_le_byte_slice(result.body()))
}
pub async fn set_error_led_config(&mut self, config: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
config.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetErrorLedConfig), &payload).await?;
Ok(())
}
pub async fn get_error_led_config(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetErrorLedConfig), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_cw_led_config(&mut self, config: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
config.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetCwLedConfig), &payload).await?;
Ok(())
}
pub async fn get_cw_led_config(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetCwLedConfig), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_ccw_led_config(&mut self, config: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
config.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetCcwLedConfig), &payload).await?;
Ok(())
}
pub async fn get_ccw_led_config(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetCcwLedConfig), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_gpio_led_config(&mut self, channel: u8, config: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 2];
channel.write_to_slice(&mut payload[0..1]);
config.write_to_slice(&mut payload[1..2]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetGpioLedConfig), &payload).await?;
Ok(())
}
pub async fn get_gpio_led_config(&mut self, channel: u8) -> Result<u8, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetGpioLedConfig), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_emergency_shutdown_callback_configuration(&mut self, enabled: bool) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
enabled.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetEmergencyShutdownCallbackConfiguration), &payload).await?;
Ok(())
}
pub async fn get_emergency_shutdown_callback_configuration(&mut self) -> Result<bool, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetEmergencyShutdownCallbackConfiguration), &payload).await?;
Ok(bool::from_le_byte_slice(result.body()))
}
pub async fn set_velocity_reached_callback_configuration(&mut self, enabled: bool) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
enabled.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetVelocityReachedCallbackConfiguration), &payload).await?;
Ok(())
}
pub async fn get_velocity_reached_callback_configuration(&mut self) -> Result<bool, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetVelocityReachedCallbackConfiguration), &payload).await?;
Ok(bool::from_le_byte_slice(result.body()))
}
pub async fn set_current_velocity_callback_configuration(
&mut self,
period: u32,
value_has_to_change: bool,
) -> Result<(), TinkerforgeError> {
let mut payload = [0; 5];
period.write_to_slice(&mut payload[0..4]);
value_has_to_change.write_to_slice(&mut payload[4..5]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetCurrentVelocityCallbackConfiguration), &payload).await?;
Ok(())
}
pub async fn get_current_velocity_callback_configuration(&mut self) -> Result<CurrentVelocityCallbackConfiguration, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetCurrentVelocityCallbackConfiguration), &payload).await?;
Ok(CurrentVelocityCallbackConfiguration::from_le_byte_slice(result.body()))
}
pub async fn get_spitfp_error_count(&mut self) -> Result<SpitfpErrorCount, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetSpitfpErrorCount), &payload).await?;
Ok(SpitfpErrorCount::from_le_byte_slice(result.body()))
}
pub async fn set_bootloader_mode(&mut self, mode: u8) -> Result<u8, TinkerforgeError> {
let mut payload = [0; 1];
mode.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::SetBootloaderMode), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn get_bootloader_mode(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetBootloaderMode), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_write_firmware_pointer(&mut self, pointer: u32) -> Result<(), TinkerforgeError> {
let mut payload = [0; 4];
pointer.write_to_slice(&mut payload[0..4]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetWriteFirmwarePointer), &payload).await?;
Ok(())
}
pub async fn write_firmware(&mut self, data: &[u8; 64]) -> Result<u8, TinkerforgeError> {
let mut payload = [0; 64];
data.write_to_slice(&mut payload[0..64]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::WriteFirmware), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn set_status_led_config(&mut self, config: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
config.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::SetStatusLedConfig), &payload).await?;
Ok(())
}
pub async fn get_status_led_config(&mut self) -> Result<u8, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetStatusLedConfig), &payload).await?;
Ok(u8::from_le_byte_slice(result.body()))
}
pub async fn get_chip_temperature(&mut self) -> Result<i16, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetChipTemperature), &payload).await?;
Ok(i16::from_le_byte_slice(result.body()))
}
pub async fn reset(&mut self) -> Result<(), TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::Reset), &payload).await?;
Ok(())
}
pub async fn write_uid(&mut self, uid: u32) -> Result<(), TinkerforgeError> {
let mut payload = [0; 4];
uid.write_to_slice(&mut payload[0..4]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(PerformanceDcBrickletFunction::WriteUid), &payload).await?;
Ok(())
}
pub async fn read_uid(&mut self) -> Result<u32, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::ReadUid), &payload).await?;
Ok(u32::from_le_byte_slice(result.body()))
}
pub async fn get_identity(&mut self) -> Result<Identity, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(PerformanceDcBrickletFunction::GetIdentity), &payload).await?;
Ok(Identity::from_le_byte_slice(result.body()))
}
}