#[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 Io4V2BrickletFunction {
SetValue,
GetValue,
SetSelectedValue,
SetConfiguration,
GetConfiguration,
SetInputValueCallbackConfiguration,
GetInputValueCallbackConfiguration,
SetAllInputValueCallbackConfiguration,
GetAllInputValueCallbackConfiguration,
SetMonoflop,
GetMonoflop,
GetEdgeCount,
SetEdgeCountConfiguration,
GetEdgeCountConfiguration,
SetPwmConfiguration,
GetPwmConfiguration,
GetSpitfpErrorCount,
SetBootloaderMode,
GetBootloaderMode,
SetWriteFirmwarePointer,
WriteFirmware,
SetStatusLedConfig,
GetStatusLedConfig,
GetChipTemperature,
Reset,
WriteUid,
ReadUid,
GetIdentity,
CallbackInputValue,
CallbackAllInputValue,
CallbackMonoflopDone,
}
impl From<Io4V2BrickletFunction> for u8 {
fn from(fun: Io4V2BrickletFunction) -> Self {
match fun {
Io4V2BrickletFunction::SetValue => 1,
Io4V2BrickletFunction::GetValue => 2,
Io4V2BrickletFunction::SetSelectedValue => 3,
Io4V2BrickletFunction::SetConfiguration => 4,
Io4V2BrickletFunction::GetConfiguration => 5,
Io4V2BrickletFunction::SetInputValueCallbackConfiguration => 6,
Io4V2BrickletFunction::GetInputValueCallbackConfiguration => 7,
Io4V2BrickletFunction::SetAllInputValueCallbackConfiguration => 8,
Io4V2BrickletFunction::GetAllInputValueCallbackConfiguration => 9,
Io4V2BrickletFunction::SetMonoflop => 10,
Io4V2BrickletFunction::GetMonoflop => 11,
Io4V2BrickletFunction::GetEdgeCount => 12,
Io4V2BrickletFunction::SetEdgeCountConfiguration => 13,
Io4V2BrickletFunction::GetEdgeCountConfiguration => 14,
Io4V2BrickletFunction::SetPwmConfiguration => 15,
Io4V2BrickletFunction::GetPwmConfiguration => 16,
Io4V2BrickletFunction::GetSpitfpErrorCount => 234,
Io4V2BrickletFunction::SetBootloaderMode => 235,
Io4V2BrickletFunction::GetBootloaderMode => 236,
Io4V2BrickletFunction::SetWriteFirmwarePointer => 237,
Io4V2BrickletFunction::WriteFirmware => 238,
Io4V2BrickletFunction::SetStatusLedConfig => 239,
Io4V2BrickletFunction::GetStatusLedConfig => 240,
Io4V2BrickletFunction::GetChipTemperature => 242,
Io4V2BrickletFunction::Reset => 243,
Io4V2BrickletFunction::WriteUid => 248,
Io4V2BrickletFunction::ReadUid => 249,
Io4V2BrickletFunction::GetIdentity => 255,
Io4V2BrickletFunction::CallbackInputValue => 17,
Io4V2BrickletFunction::CallbackAllInputValue => 18,
Io4V2BrickletFunction::CallbackMonoflopDone => 19,
}
}
}
pub const IO4_V2_BRICKLET_DIRECTION_IN: char = 'i';
pub const IO4_V2_BRICKLET_DIRECTION_OUT: char = 'o';
pub const IO4_V2_BRICKLET_EDGE_TYPE_RISING: u8 = 0;
pub const IO4_V2_BRICKLET_EDGE_TYPE_FALLING: u8 = 1;
pub const IO4_V2_BRICKLET_EDGE_TYPE_BOTH: u8 = 2;
pub const IO4_V2_BRICKLET_BOOTLOADER_MODE_BOOTLOADER: u8 = 0;
pub const IO4_V2_BRICKLET_BOOTLOADER_MODE_FIRMWARE: u8 = 1;
pub const IO4_V2_BRICKLET_BOOTLOADER_MODE_BOOTLOADER_WAIT_FOR_REBOOT: u8 = 2;
pub const IO4_V2_BRICKLET_BOOTLOADER_MODE_FIRMWARE_WAIT_FOR_REBOOT: u8 = 3;
pub const IO4_V2_BRICKLET_BOOTLOADER_MODE_FIRMWARE_WAIT_FOR_ERASE_AND_REBOOT: u8 = 4;
pub const IO4_V2_BRICKLET_BOOTLOADER_STATUS_OK: u8 = 0;
pub const IO4_V2_BRICKLET_BOOTLOADER_STATUS_INVALID_MODE: u8 = 1;
pub const IO4_V2_BRICKLET_BOOTLOADER_STATUS_NO_CHANGE: u8 = 2;
pub const IO4_V2_BRICKLET_BOOTLOADER_STATUS_ENTRY_FUNCTION_NOT_PRESENT: u8 = 3;
pub const IO4_V2_BRICKLET_BOOTLOADER_STATUS_DEVICE_IDENTIFIER_INCORRECT: u8 = 4;
pub const IO4_V2_BRICKLET_BOOTLOADER_STATUS_CRC_MISMATCH: u8 = 5;
pub const IO4_V2_BRICKLET_STATUS_LED_CONFIG_OFF: u8 = 0;
pub const IO4_V2_BRICKLET_STATUS_LED_CONFIG_ON: u8 = 1;
pub const IO4_V2_BRICKLET_STATUS_LED_CONFIG_SHOW_HEARTBEAT: u8 = 2;
pub const IO4_V2_BRICKLET_STATUS_LED_CONFIG_SHOW_STATUS: u8 = 3;
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct Configuration {
pub direction: char,
pub value: bool,
}
impl FromByteSlice for Configuration {
fn bytes_expected() -> usize {
2
}
fn from_le_byte_slice(bytes: &[u8]) -> Configuration {
Configuration { direction: <char>::from_le_byte_slice(&bytes[0..1]), value: <bool>::from_le_byte_slice(&bytes[1..2]) }
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct InputValueCallbackConfiguration {
pub period: u32,
pub value_has_to_change: bool,
}
impl FromByteSlice for InputValueCallbackConfiguration {
fn bytes_expected() -> usize {
5
}
fn from_le_byte_slice(bytes: &[u8]) -> InputValueCallbackConfiguration {
InputValueCallbackConfiguration {
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 AllInputValueCallbackConfiguration {
pub period: u32,
pub value_has_to_change: bool,
}
impl FromByteSlice for AllInputValueCallbackConfiguration {
fn bytes_expected() -> usize {
5
}
fn from_le_byte_slice(bytes: &[u8]) -> AllInputValueCallbackConfiguration {
AllInputValueCallbackConfiguration {
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 Monoflop {
pub value: bool,
pub time: u32,
pub time_remaining: u32,
}
impl FromByteSlice for Monoflop {
fn bytes_expected() -> usize {
9
}
fn from_le_byte_slice(bytes: &[u8]) -> Monoflop {
Monoflop {
value: <bool>::from_le_byte_slice(&bytes[0..1]),
time: <u32>::from_le_byte_slice(&bytes[1..5]),
time_remaining: <u32>::from_le_byte_slice(&bytes[5..9]),
}
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct EdgeCountConfiguration {
pub edge_type: u8,
pub debounce: u8,
}
impl FromByteSlice for EdgeCountConfiguration {
fn bytes_expected() -> usize {
2
}
fn from_le_byte_slice(bytes: &[u8]) -> EdgeCountConfiguration {
EdgeCountConfiguration { edge_type: <u8>::from_le_byte_slice(&bytes[0..1]), debounce: <u8>::from_le_byte_slice(&bytes[1..2]) }
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct PwmConfiguration {
pub frequency: u32,
pub duty_cycle: u16,
}
impl FromByteSlice for PwmConfiguration {
fn bytes_expected() -> usize {
6
}
fn from_le_byte_slice(bytes: &[u8]) -> PwmConfiguration {
PwmConfiguration { frequency: <u32>::from_le_byte_slice(&bytes[0..4]), duty_cycle: <u16>::from_le_byte_slice(&bytes[4..6]) }
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct InputValueEvent {
pub channel: u8,
pub changed: bool,
pub value: bool,
}
impl FromByteSlice for InputValueEvent {
fn bytes_expected() -> usize {
3
}
fn from_le_byte_slice(bytes: &[u8]) -> InputValueEvent {
InputValueEvent {
channel: <u8>::from_le_byte_slice(&bytes[0..1]),
changed: <bool>::from_le_byte_slice(&bytes[1..2]),
value: <bool>::from_le_byte_slice(&bytes[2..3]),
}
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct AllInputValueEvent {
pub changed: [bool; 4],
pub value: [bool; 4],
}
impl FromByteSlice for AllInputValueEvent {
fn bytes_expected() -> usize {
2
}
fn from_le_byte_slice(bytes: &[u8]) -> AllInputValueEvent {
AllInputValueEvent { changed: <[bool; 4]>::from_le_byte_slice(&bytes[0..1]), value: <[bool; 4]>::from_le_byte_slice(&bytes[1..2]) }
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct MonoflopDoneEvent {
pub channel: u8,
pub value: bool,
}
impl FromByteSlice for MonoflopDoneEvent {
fn bytes_expected() -> usize {
2
}
fn from_le_byte_slice(bytes: &[u8]) -> MonoflopDoneEvent {
MonoflopDoneEvent { channel: <u8>::from_le_byte_slice(&bytes[0..1]), value: <bool>::from_le_byte_slice(&bytes[1..2]) }
}
}
#[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 Io4V2Bricklet {
device: Device,
}
impl Io4V2Bricklet {
pub const DEVICE_IDENTIFIER: u16 = 2111;
pub const DEVICE_DISPLAY_NAME: &'static str = "IO-4 Bricklet 2.0";
pub fn new(uid: u32, connection: AsyncIpConnection) -> Io4V2Bricklet {
let mut result = Io4V2Bricklet { device: Device::new([2, 0, 10], uid, connection, Self::DEVICE_DISPLAY_NAME) };
result.device.response_expected[u8::from(Io4V2BrickletFunction::SetValue) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetValue) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::SetSelectedValue) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(Io4V2BrickletFunction::SetConfiguration) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetConfiguration) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::SetInputValueCallbackConfiguration) as usize] =
ResponseExpectedFlag::True;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetInputValueCallbackConfiguration) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::SetAllInputValueCallbackConfiguration) as usize] =
ResponseExpectedFlag::True;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetAllInputValueCallbackConfiguration) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::SetMonoflop) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetMonoflop) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetEdgeCount) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::SetEdgeCountConfiguration) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetEdgeCountConfiguration) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::SetPwmConfiguration) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetPwmConfiguration) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetSpitfpErrorCount) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::SetBootloaderMode) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetBootloaderMode) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::SetWriteFirmwarePointer) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(Io4V2BrickletFunction::WriteFirmware) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::SetStatusLedConfig) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetStatusLedConfig) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetChipTemperature) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::Reset) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(Io4V2BrickletFunction::WriteUid) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(Io4V2BrickletFunction::ReadUid) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(Io4V2BrickletFunction::GetIdentity) as usize] = ResponseExpectedFlag::AlwaysTrue;
result
}
pub fn get_response_expected(&mut self, fun: Io4V2BrickletFunction) -> Result<bool, GetResponseExpectedError> {
self.device.get_response_expected(u8::from(fun))
}
pub fn set_response_expected(&mut self, fun: Io4V2BrickletFunction, 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_input_value_callback_receiver(&mut self) -> impl Stream<Item = InputValueEvent> {
self.device
.get_callback_receiver(u8::from(Io4V2BrickletFunction::CallbackInputValue))
.await
.map(|p| InputValueEvent::from_le_byte_slice(p.body()))
}
pub async fn get_all_input_value_callback_receiver(&mut self) -> impl Stream<Item = AllInputValueEvent> {
self.device
.get_callback_receiver(u8::from(Io4V2BrickletFunction::CallbackAllInputValue))
.await
.map(|p| AllInputValueEvent::from_le_byte_slice(p.body()))
}
pub async fn get_monoflop_done_callback_receiver(&mut self) -> impl Stream<Item = MonoflopDoneEvent> {
self.device
.get_callback_receiver(u8::from(Io4V2BrickletFunction::CallbackMonoflopDone))
.await
.map(|p| MonoflopDoneEvent::from_le_byte_slice(p.body()))
}
pub async fn set_value(&mut self, value: &[bool; 4]) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
value.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(Io4V2BrickletFunction::SetValue), &payload).await?;
Ok(())
}
pub async fn get_value(&mut self) -> Result<Box<[bool; 4]>, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(Io4V2BrickletFunction::GetValue), &payload).await?;
Ok(Box::<[bool; 4]>::from_le_byte_slice(result.body()))
}
pub async fn set_selected_value(&mut self, channel: u8, value: bool) -> Result<(), TinkerforgeError> {
let mut payload = [0; 2];
channel.write_to_slice(&mut payload[0..1]);
value.write_to_slice(&mut payload[1..2]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(Io4V2BrickletFunction::SetSelectedValue), &payload).await?;
Ok(())
}
pub async fn set_configuration(&mut self, channel: u8, direction: char, value: bool) -> Result<(), TinkerforgeError> {
let mut payload = [0; 3];
channel.write_to_slice(&mut payload[0..1]);
direction.write_to_slice(&mut payload[1..2]);
value.write_to_slice(&mut payload[2..3]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(Io4V2BrickletFunction::SetConfiguration), &payload).await?;
Ok(())
}
pub async fn get_configuration(&mut self, channel: u8) -> Result<Configuration, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(Io4V2BrickletFunction::GetConfiguration), &payload).await?;
Ok(Configuration::from_le_byte_slice(result.body()))
}
pub async fn set_input_value_callback_configuration(
&mut self,
channel: u8,
period: u32,
value_has_to_change: bool,
) -> Result<(), TinkerforgeError> {
let mut payload = [0; 6];
channel.write_to_slice(&mut payload[0..1]);
period.write_to_slice(&mut payload[1..5]);
value_has_to_change.write_to_slice(&mut payload[5..6]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(Io4V2BrickletFunction::SetInputValueCallbackConfiguration), &payload).await?;
Ok(())
}
pub async fn get_input_value_callback_configuration(
&mut self,
channel: u8,
) -> Result<InputValueCallbackConfiguration, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(Io4V2BrickletFunction::GetInputValueCallbackConfiguration), &payload).await?;
Ok(InputValueCallbackConfiguration::from_le_byte_slice(result.body()))
}
pub async fn set_all_input_value_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(Io4V2BrickletFunction::SetAllInputValueCallbackConfiguration), &payload).await?;
Ok(())
}
pub async fn get_all_input_value_callback_configuration(&mut self) -> Result<AllInputValueCallbackConfiguration, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(Io4V2BrickletFunction::GetAllInputValueCallbackConfiguration), &payload).await?;
Ok(AllInputValueCallbackConfiguration::from_le_byte_slice(result.body()))
}
pub async fn set_monoflop(&mut self, channel: u8, value: bool, time: u32) -> Result<(), TinkerforgeError> {
let mut payload = [0; 6];
channel.write_to_slice(&mut payload[0..1]);
value.write_to_slice(&mut payload[1..2]);
time.write_to_slice(&mut payload[2..6]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(Io4V2BrickletFunction::SetMonoflop), &payload).await?;
Ok(())
}
pub async fn get_monoflop(&mut self, channel: u8) -> Result<Monoflop, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(Io4V2BrickletFunction::GetMonoflop), &payload).await?;
Ok(Monoflop::from_le_byte_slice(result.body()))
}
pub async fn get_edge_count(&mut self, channel: u8, reset_counter: bool) -> Result<u32, TinkerforgeError> {
let mut payload = [0; 2];
channel.write_to_slice(&mut payload[0..1]);
reset_counter.write_to_slice(&mut payload[1..2]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(Io4V2BrickletFunction::GetEdgeCount), &payload).await?;
Ok(u32::from_le_byte_slice(result.body()))
}
pub async fn set_edge_count_configuration(&mut self, channel: u8, edge_type: u8, debounce: u8) -> Result<(), TinkerforgeError> {
let mut payload = [0; 3];
channel.write_to_slice(&mut payload[0..1]);
edge_type.write_to_slice(&mut payload[1..2]);
debounce.write_to_slice(&mut payload[2..3]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(Io4V2BrickletFunction::SetEdgeCountConfiguration), &payload).await?;
Ok(())
}
pub async fn get_edge_count_configuration(&mut self, channel: u8) -> Result<EdgeCountConfiguration, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(Io4V2BrickletFunction::GetEdgeCountConfiguration), &payload).await?;
Ok(EdgeCountConfiguration::from_le_byte_slice(result.body()))
}
pub async fn set_pwm_configuration(&mut self, channel: u8, frequency: u32, duty_cycle: u16) -> Result<(), TinkerforgeError> {
let mut payload = [0; 7];
channel.write_to_slice(&mut payload[0..1]);
frequency.write_to_slice(&mut payload[1..5]);
duty_cycle.write_to_slice(&mut payload[5..7]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(Io4V2BrickletFunction::SetPwmConfiguration), &payload).await?;
Ok(())
}
pub async fn get_pwm_configuration(&mut self, channel: u8) -> Result<PwmConfiguration, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(Io4V2BrickletFunction::GetPwmConfiguration), &payload).await?;
Ok(PwmConfiguration::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(Io4V2BrickletFunction::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(Io4V2BrickletFunction::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(Io4V2BrickletFunction::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(Io4V2BrickletFunction::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(Io4V2BrickletFunction::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(Io4V2BrickletFunction::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(Io4V2BrickletFunction::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(Io4V2BrickletFunction::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(Io4V2BrickletFunction::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(Io4V2BrickletFunction::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(Io4V2BrickletFunction::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(Io4V2BrickletFunction::GetIdentity), &payload).await?;
Ok(Identity::from_le_byte_slice(result.body()))
}
}