#[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 IndustrialCounterBrickletFunction {
GetCounter,
GetAllCounter,
SetCounter,
SetAllCounter,
GetSignalData,
GetAllSignalData,
SetCounterActive,
SetAllCounterActive,
GetCounterActive,
GetAllCounterActive,
SetCounterConfiguration,
GetCounterConfiguration,
SetAllCounterCallbackConfiguration,
GetAllCounterCallbackConfiguration,
SetAllSignalDataCallbackConfiguration,
GetAllSignalDataCallbackConfiguration,
SetChannelLedConfig,
GetChannelLedConfig,
GetSpitfpErrorCount,
SetBootloaderMode,
GetBootloaderMode,
SetWriteFirmwarePointer,
WriteFirmware,
SetStatusLedConfig,
GetStatusLedConfig,
GetChipTemperature,
Reset,
WriteUid,
ReadUid,
GetIdentity,
CallbackAllCounter,
CallbackAllSignalData,
}
impl From<IndustrialCounterBrickletFunction> for u8 {
fn from(fun: IndustrialCounterBrickletFunction) -> Self {
match fun {
IndustrialCounterBrickletFunction::GetCounter => 1,
IndustrialCounterBrickletFunction::GetAllCounter => 2,
IndustrialCounterBrickletFunction::SetCounter => 3,
IndustrialCounterBrickletFunction::SetAllCounter => 4,
IndustrialCounterBrickletFunction::GetSignalData => 5,
IndustrialCounterBrickletFunction::GetAllSignalData => 6,
IndustrialCounterBrickletFunction::SetCounterActive => 7,
IndustrialCounterBrickletFunction::SetAllCounterActive => 8,
IndustrialCounterBrickletFunction::GetCounterActive => 9,
IndustrialCounterBrickletFunction::GetAllCounterActive => 10,
IndustrialCounterBrickletFunction::SetCounterConfiguration => 11,
IndustrialCounterBrickletFunction::GetCounterConfiguration => 12,
IndustrialCounterBrickletFunction::SetAllCounterCallbackConfiguration => 13,
IndustrialCounterBrickletFunction::GetAllCounterCallbackConfiguration => 14,
IndustrialCounterBrickletFunction::SetAllSignalDataCallbackConfiguration => 15,
IndustrialCounterBrickletFunction::GetAllSignalDataCallbackConfiguration => 16,
IndustrialCounterBrickletFunction::SetChannelLedConfig => 17,
IndustrialCounterBrickletFunction::GetChannelLedConfig => 18,
IndustrialCounterBrickletFunction::GetSpitfpErrorCount => 234,
IndustrialCounterBrickletFunction::SetBootloaderMode => 235,
IndustrialCounterBrickletFunction::GetBootloaderMode => 236,
IndustrialCounterBrickletFunction::SetWriteFirmwarePointer => 237,
IndustrialCounterBrickletFunction::WriteFirmware => 238,
IndustrialCounterBrickletFunction::SetStatusLedConfig => 239,
IndustrialCounterBrickletFunction::GetStatusLedConfig => 240,
IndustrialCounterBrickletFunction::GetChipTemperature => 242,
IndustrialCounterBrickletFunction::Reset => 243,
IndustrialCounterBrickletFunction::WriteUid => 248,
IndustrialCounterBrickletFunction::ReadUid => 249,
IndustrialCounterBrickletFunction::GetIdentity => 255,
IndustrialCounterBrickletFunction::CallbackAllCounter => 19,
IndustrialCounterBrickletFunction::CallbackAllSignalData => 20,
}
}
}
pub const INDUSTRIAL_COUNTER_BRICKLET_CHANNEL_0: u8 = 0;
pub const INDUSTRIAL_COUNTER_BRICKLET_CHANNEL_1: u8 = 1;
pub const INDUSTRIAL_COUNTER_BRICKLET_CHANNEL_2: u8 = 2;
pub const INDUSTRIAL_COUNTER_BRICKLET_CHANNEL_3: u8 = 3;
pub const INDUSTRIAL_COUNTER_BRICKLET_COUNT_EDGE_RISING: u8 = 0;
pub const INDUSTRIAL_COUNTER_BRICKLET_COUNT_EDGE_FALLING: u8 = 1;
pub const INDUSTRIAL_COUNTER_BRICKLET_COUNT_EDGE_BOTH: u8 = 2;
pub const INDUSTRIAL_COUNTER_BRICKLET_COUNT_DIRECTION_UP: u8 = 0;
pub const INDUSTRIAL_COUNTER_BRICKLET_COUNT_DIRECTION_DOWN: u8 = 1;
pub const INDUSTRIAL_COUNTER_BRICKLET_COUNT_DIRECTION_EXTERNAL_UP: u8 = 2;
pub const INDUSTRIAL_COUNTER_BRICKLET_COUNT_DIRECTION_EXTERNAL_DOWN: u8 = 3;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_1: u8 = 0;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_2: u8 = 1;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_4: u8 = 2;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_8: u8 = 3;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_16: u8 = 4;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_32: u8 = 5;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_64: u8 = 6;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_128: u8 = 7;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_256: u8 = 8;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_512: u8 = 9;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_1024: u8 = 10;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_2048: u8 = 11;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_4096: u8 = 12;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_8192: u8 = 13;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_16384: u8 = 14;
pub const INDUSTRIAL_COUNTER_BRICKLET_DUTY_CYCLE_PRESCALER_32768: u8 = 15;
pub const INDUSTRIAL_COUNTER_BRICKLET_FREQUENCY_INTEGRATION_TIME_128_MS: u8 = 0;
pub const INDUSTRIAL_COUNTER_BRICKLET_FREQUENCY_INTEGRATION_TIME_256_MS: u8 = 1;
pub const INDUSTRIAL_COUNTER_BRICKLET_FREQUENCY_INTEGRATION_TIME_512_MS: u8 = 2;
pub const INDUSTRIAL_COUNTER_BRICKLET_FREQUENCY_INTEGRATION_TIME_1024_MS: u8 = 3;
pub const INDUSTRIAL_COUNTER_BRICKLET_FREQUENCY_INTEGRATION_TIME_2048_MS: u8 = 4;
pub const INDUSTRIAL_COUNTER_BRICKLET_FREQUENCY_INTEGRATION_TIME_4096_MS: u8 = 5;
pub const INDUSTRIAL_COUNTER_BRICKLET_FREQUENCY_INTEGRATION_TIME_8192_MS: u8 = 6;
pub const INDUSTRIAL_COUNTER_BRICKLET_FREQUENCY_INTEGRATION_TIME_16384_MS: u8 = 7;
pub const INDUSTRIAL_COUNTER_BRICKLET_FREQUENCY_INTEGRATION_TIME_32768_MS: u8 = 8;
pub const INDUSTRIAL_COUNTER_BRICKLET_CHANNEL_LED_CONFIG_OFF: u8 = 0;
pub const INDUSTRIAL_COUNTER_BRICKLET_CHANNEL_LED_CONFIG_ON: u8 = 1;
pub const INDUSTRIAL_COUNTER_BRICKLET_CHANNEL_LED_CONFIG_SHOW_HEARTBEAT: u8 = 2;
pub const INDUSTRIAL_COUNTER_BRICKLET_CHANNEL_LED_CONFIG_SHOW_CHANNEL_STATUS: u8 = 3;
pub const INDUSTRIAL_COUNTER_BRICKLET_BOOTLOADER_MODE_BOOTLOADER: u8 = 0;
pub const INDUSTRIAL_COUNTER_BRICKLET_BOOTLOADER_MODE_FIRMWARE: u8 = 1;
pub const INDUSTRIAL_COUNTER_BRICKLET_BOOTLOADER_MODE_BOOTLOADER_WAIT_FOR_REBOOT: u8 = 2;
pub const INDUSTRIAL_COUNTER_BRICKLET_BOOTLOADER_MODE_FIRMWARE_WAIT_FOR_REBOOT: u8 = 3;
pub const INDUSTRIAL_COUNTER_BRICKLET_BOOTLOADER_MODE_FIRMWARE_WAIT_FOR_ERASE_AND_REBOOT: u8 = 4;
pub const INDUSTRIAL_COUNTER_BRICKLET_BOOTLOADER_STATUS_OK: u8 = 0;
pub const INDUSTRIAL_COUNTER_BRICKLET_BOOTLOADER_STATUS_INVALID_MODE: u8 = 1;
pub const INDUSTRIAL_COUNTER_BRICKLET_BOOTLOADER_STATUS_NO_CHANGE: u8 = 2;
pub const INDUSTRIAL_COUNTER_BRICKLET_BOOTLOADER_STATUS_ENTRY_FUNCTION_NOT_PRESENT: u8 = 3;
pub const INDUSTRIAL_COUNTER_BRICKLET_BOOTLOADER_STATUS_DEVICE_IDENTIFIER_INCORRECT: u8 = 4;
pub const INDUSTRIAL_COUNTER_BRICKLET_BOOTLOADER_STATUS_CRC_MISMATCH: u8 = 5;
pub const INDUSTRIAL_COUNTER_BRICKLET_STATUS_LED_CONFIG_OFF: u8 = 0;
pub const INDUSTRIAL_COUNTER_BRICKLET_STATUS_LED_CONFIG_ON: u8 = 1;
pub const INDUSTRIAL_COUNTER_BRICKLET_STATUS_LED_CONFIG_SHOW_HEARTBEAT: u8 = 2;
pub const INDUSTRIAL_COUNTER_BRICKLET_STATUS_LED_CONFIG_SHOW_STATUS: u8 = 3;
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct SignalData {
pub duty_cycle: u16,
pub period: u64,
pub frequency: u32,
pub value: bool,
}
impl FromByteSlice for SignalData {
fn bytes_expected() -> usize {
15
}
fn from_le_byte_slice(bytes: &[u8]) -> SignalData {
SignalData {
duty_cycle: <u16>::from_le_byte_slice(&bytes[0..2]),
period: <u64>::from_le_byte_slice(&bytes[2..10]),
frequency: <u32>::from_le_byte_slice(&bytes[10..14]),
value: <bool>::from_le_byte_slice(&bytes[14..15]),
}
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct AllSignalData {
pub duty_cycle: [u16; 4],
pub period: [u64; 4],
pub frequency: [u32; 4],
pub value: [bool; 4],
}
impl FromByteSlice for AllSignalData {
fn bytes_expected() -> usize {
57
}
fn from_le_byte_slice(bytes: &[u8]) -> AllSignalData {
AllSignalData {
duty_cycle: <[u16; 4]>::from_le_byte_slice(&bytes[0..8]),
period: <[u64; 4]>::from_le_byte_slice(&bytes[8..40]),
frequency: <[u32; 4]>::from_le_byte_slice(&bytes[40..56]),
value: <[bool; 4]>::from_le_byte_slice(&bytes[56..57]),
}
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct CounterConfiguration {
pub count_edge: u8,
pub count_direction: u8,
pub duty_cycle_prescaler: u8,
pub frequency_integration_time: u8,
}
impl FromByteSlice for CounterConfiguration {
fn bytes_expected() -> usize {
4
}
fn from_le_byte_slice(bytes: &[u8]) -> CounterConfiguration {
CounterConfiguration {
count_edge: <u8>::from_le_byte_slice(&bytes[0..1]),
count_direction: <u8>::from_le_byte_slice(&bytes[1..2]),
duty_cycle_prescaler: <u8>::from_le_byte_slice(&bytes[2..3]),
frequency_integration_time: <u8>::from_le_byte_slice(&bytes[3..4]),
}
}
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub struct AllCounterCallbackConfiguration {
pub period: u32,
pub value_has_to_change: bool,
}
impl FromByteSlice for AllCounterCallbackConfiguration {
fn bytes_expected() -> usize {
5
}
fn from_le_byte_slice(bytes: &[u8]) -> AllCounterCallbackConfiguration {
AllCounterCallbackConfiguration {
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 AllSignalDataCallbackConfiguration {
pub period: u32,
pub value_has_to_change: bool,
}
impl FromByteSlice for AllSignalDataCallbackConfiguration {
fn bytes_expected() -> usize {
5
}
fn from_le_byte_slice(bytes: &[u8]) -> AllSignalDataCallbackConfiguration {
AllSignalDataCallbackConfiguration {
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 AllSignalDataEvent {
pub duty_cycle: [u16; 4],
pub period: [u64; 4],
pub frequency: [u32; 4],
pub value: [bool; 4],
}
impl FromByteSlice for AllSignalDataEvent {
fn bytes_expected() -> usize {
57
}
fn from_le_byte_slice(bytes: &[u8]) -> AllSignalDataEvent {
AllSignalDataEvent {
duty_cycle: <[u16; 4]>::from_le_byte_slice(&bytes[0..8]),
period: <[u64; 4]>::from_le_byte_slice(&bytes[8..40]),
frequency: <[u32; 4]>::from_le_byte_slice(&bytes[40..56]),
value: <[bool; 4]>::from_le_byte_slice(&bytes[56..57]),
}
}
}
#[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 IndustrialCounterBricklet {
device: Device,
}
impl IndustrialCounterBricklet {
pub const DEVICE_IDENTIFIER: u16 = 293;
pub const DEVICE_DISPLAY_NAME: &'static str = "Industrial Counter Bricklet";
pub fn new(uid: &str, connection: AsyncIpConnection) -> IndustrialCounterBricklet {
let mut result = IndustrialCounterBricklet { device: Device::new([2, 0, 10], uid, connection, Self::DEVICE_DISPLAY_NAME) };
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetCounter) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetAllCounter) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::SetCounter) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::SetAllCounter) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetSignalData) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetAllSignalData) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::SetCounterActive) as usize] =
ResponseExpectedFlag::False;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::SetAllCounterActive) as usize] =
ResponseExpectedFlag::False;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetCounterActive) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetAllCounterActive) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::SetCounterConfiguration) as usize] =
ResponseExpectedFlag::False;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetCounterConfiguration) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::SetAllCounterCallbackConfiguration) as usize] =
ResponseExpectedFlag::True;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetAllCounterCallbackConfiguration) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::SetAllSignalDataCallbackConfiguration) as usize] =
ResponseExpectedFlag::True;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetAllSignalDataCallbackConfiguration) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::SetChannelLedConfig) as usize] =
ResponseExpectedFlag::False;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetChannelLedConfig) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetSpitfpErrorCount) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::SetBootloaderMode) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetBootloaderMode) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::SetWriteFirmwarePointer) as usize] =
ResponseExpectedFlag::False;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::WriteFirmware) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::SetStatusLedConfig) as usize] =
ResponseExpectedFlag::False;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetStatusLedConfig) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetChipTemperature) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::Reset) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::WriteUid) as usize] = ResponseExpectedFlag::False;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::ReadUid) as usize] = ResponseExpectedFlag::AlwaysTrue;
result.device.response_expected[u8::from(IndustrialCounterBrickletFunction::GetIdentity) as usize] =
ResponseExpectedFlag::AlwaysTrue;
result
}
pub fn get_response_expected(&mut self, fun: IndustrialCounterBrickletFunction) -> Result<bool, GetResponseExpectedError> {
self.device.get_response_expected(u8::from(fun))
}
pub fn set_response_expected(
&mut self,
fun: IndustrialCounterBrickletFunction,
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_all_counter_callback_receiver(&mut self) -> impl Stream<Item = [i64; 4]> {
self.device
.get_callback_receiver(u8::from(IndustrialCounterBrickletFunction::CallbackAllCounter))
.await
.map(|p| <[i64; 4]>::from_le_byte_slice(p.body()))
}
pub async fn get_all_signal_data_callback_receiver(&mut self) -> impl Stream<Item = AllSignalDataEvent> {
self.device
.get_callback_receiver(u8::from(IndustrialCounterBrickletFunction::CallbackAllSignalData))
.await
.map(|p| AllSignalDataEvent::from_le_byte_slice(p.body()))
}
pub async fn get_counter(&mut self, channel: u8) -> Result<i64, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(IndustrialCounterBrickletFunction::GetCounter), &payload).await?;
Ok(i64::from_le_byte_slice(result.body()))
}
pub async fn get_all_counter(&mut self) -> Result<Box<[i64; 4]>, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(IndustrialCounterBrickletFunction::GetAllCounter), &payload).await?;
Ok(Box::<[i64; 4]>::from_le_byte_slice(result.body()))
}
pub async fn set_counter(&mut self, channel: u8, counter: i64) -> Result<(), TinkerforgeError> {
let mut payload = [0; 9];
channel.write_to_slice(&mut payload[0..1]);
counter.write_to_slice(&mut payload[1..9]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(IndustrialCounterBrickletFunction::SetCounter), &payload).await?;
Ok(())
}
pub async fn set_all_counter(&mut self, counter: &[i64; 4]) -> Result<(), TinkerforgeError> {
let mut payload = [0; 32];
counter.write_to_slice(&mut payload[0..32]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(IndustrialCounterBrickletFunction::SetAllCounter), &payload).await?;
Ok(())
}
pub async fn get_signal_data(&mut self, channel: u8) -> Result<SignalData, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(IndustrialCounterBrickletFunction::GetSignalData), &payload).await?;
Ok(SignalData::from_le_byte_slice(result.body()))
}
pub async fn get_all_signal_data(&mut self) -> Result<AllSignalData, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(IndustrialCounterBrickletFunction::GetAllSignalData), &payload).await?;
Ok(AllSignalData::from_le_byte_slice(result.body()))
}
pub async fn set_counter_active(&mut self, channel: u8, active: bool) -> Result<(), TinkerforgeError> {
let mut payload = [0; 2];
channel.write_to_slice(&mut payload[0..1]);
active.write_to_slice(&mut payload[1..2]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(IndustrialCounterBrickletFunction::SetCounterActive), &payload).await?;
Ok(())
}
pub async fn set_all_counter_active(&mut self, active: &[bool; 4]) -> Result<(), TinkerforgeError> {
let mut payload = [0; 1];
active.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(IndustrialCounterBrickletFunction::SetAllCounterActive), &payload).await?;
Ok(())
}
pub async fn get_counter_active(&mut self, channel: u8) -> Result<bool, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(IndustrialCounterBrickletFunction::GetCounterActive), &payload).await?;
Ok(bool::from_le_byte_slice(result.body()))
}
pub async fn get_all_counter_active(&mut self) -> Result<Box<[bool; 4]>, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(IndustrialCounterBrickletFunction::GetAllCounterActive), &payload).await?;
Ok(Box::<[bool; 4]>::from_le_byte_slice(result.body()))
}
pub async fn set_counter_configuration(
&mut self,
channel: u8,
count_edge: u8,
count_direction: u8,
duty_cycle_prescaler: u8,
frequency_integration_time: u8,
) -> Result<(), TinkerforgeError> {
let mut payload = [0; 5];
channel.write_to_slice(&mut payload[0..1]);
count_edge.write_to_slice(&mut payload[1..2]);
count_direction.write_to_slice(&mut payload[2..3]);
duty_cycle_prescaler.write_to_slice(&mut payload[3..4]);
frequency_integration_time.write_to_slice(&mut payload[4..5]);
#[allow(unused_variables)]
let result = self.device.set(u8::from(IndustrialCounterBrickletFunction::SetCounterConfiguration), &payload).await?;
Ok(())
}
pub async fn get_counter_configuration(&mut self, channel: u8) -> Result<CounterConfiguration, TinkerforgeError> {
let mut payload = [0; 1];
channel.write_to_slice(&mut payload[0..1]);
#[allow(unused_variables)]
let result = self.device.get(u8::from(IndustrialCounterBrickletFunction::GetCounterConfiguration), &payload).await?;
Ok(CounterConfiguration::from_le_byte_slice(result.body()))
}
pub async fn set_all_counter_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(IndustrialCounterBrickletFunction::SetAllCounterCallbackConfiguration), &payload).await?;
Ok(())
}
pub async fn get_all_counter_callback_configuration(&mut self) -> Result<AllCounterCallbackConfiguration, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(IndustrialCounterBrickletFunction::GetAllCounterCallbackConfiguration), &payload).await?;
Ok(AllCounterCallbackConfiguration::from_le_byte_slice(result.body()))
}
pub async fn set_all_signal_data_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(IndustrialCounterBrickletFunction::SetAllSignalDataCallbackConfiguration), &payload).await?;
Ok(())
}
pub async fn get_all_signal_data_callback_configuration(&mut self) -> Result<AllSignalDataCallbackConfiguration, TinkerforgeError> {
let payload = [0; 0];
#[allow(unused_variables)]
let result = self.device.get(u8::from(IndustrialCounterBrickletFunction::GetAllSignalDataCallbackConfiguration), &payload).await?;
Ok(AllSignalDataCallbackConfiguration::from_le_byte_slice(result.body()))
}
pub async fn set_channel_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(IndustrialCounterBrickletFunction::SetChannelLedConfig), &payload).await?;
Ok(())
}
pub async fn get_channel_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(IndustrialCounterBrickletFunction::GetChannelLedConfig), &payload).await?;
Ok(u8::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(IndustrialCounterBrickletFunction::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(IndustrialCounterBrickletFunction::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(IndustrialCounterBrickletFunction::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(IndustrialCounterBrickletFunction::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(IndustrialCounterBrickletFunction::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(IndustrialCounterBrickletFunction::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(IndustrialCounterBrickletFunction::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(IndustrialCounterBrickletFunction::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(IndustrialCounterBrickletFunction::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(IndustrialCounterBrickletFunction::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(IndustrialCounterBrickletFunction::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(IndustrialCounterBrickletFunction::GetIdentity), &payload).await?;
Ok(Identity::from_le_byte_slice(result.body()))
}
}