vcontrol 0.5.0

A library for communication with Viessmann heating controllers.
Documentation
use serde::Deserialize;

#[derive(Debug, Clone, PartialEq, Eq, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum Parameter {
  Byte = 1,
  SByte,
  Int,
  SInt,
  Int4,
  SInt4,
  IntHighByteFirst,
  SIntHighByteFirst,
  Int4HighByteFirst,
  SInt4HighByteFirst,
  Array,
  String,
  StringNt,
  StringCr,
}