/*
Copyright (c) 2020 Todd Stellanova
LICENSE: BSD3 (see LICENSE file)
*/#![no_std]pubmodinterface;pubmodwrapper;/// Errors in this crate
#[derive(Debug)]pubenumError<CommE, PinE> {/// Sensor communication error
Comm(CommE),/// Pin setting error
Pin(PinE),/// The sensor is not responding
SensorUnresponsive,}