1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#![cfg_attr(not(feature = "std"), no_std)]
//! # max6675-hal
//!
//! An embedded-hal driver for the MAX6675 digital thermocouple converter.
//!
//! ## Usage
//!
//! This example code will change depending on which HAL device driver you're
//! using. An `arduino-hal` project's SPI isn't like that of an `esp32-hal`
//! project.
//!
//! However, you only need to focus on your device's SPI implementation!
//! (thanks, `embedded-hal` 1.0 ☺️)
//!
//! Your SPI settings should use MSB (most significant bit) first, target a clock speed of
//! at least 4mhz, and utilize SPI Mode 1.
//!
//! ```ignore
//! // first, define what pins you're connecting to
//! let so_pin = pins.("your miso pin").into_pull_up_input();
//! let cs_pin = pins.("your cs pin").into_output();
//! let sck_pin = pins.("your sck/clock pin").into_output();
//!
//! // you may need a mosi pin for your device's SPI, though the max6675 doesn't use one.
//! // if so, just pick some pin that you're not using ☺️
//! let dummy_mosi = pins.("some pin you're not using").into_output();
//!
//! let (spi, _) = device-hal::spi::Spi::new(
//!     sck_pin, dummy_mosi, so_pin, cs_pin,
//!     device-hal::spi::Settings {
//!         // pick some settings that roughly align like so:
//!         data_order: MostSignificantFirst,
//!         clock: 4MhzClockSpeed,
//!         mode: embedded_hal::spi::MODE_1,
//!     }
//! );
//! let mut max = Max6675::new(spi)?; // your spi and chip select here
//!
//! let temp = max.read_celsius()? // ayo! we got the temperature
//! ```
//!
//! ## Note
//!
//! This crate re-exports a Temperature type from another crate, `simmer`.
//! You can change and play with the temperatures in various ways, so feel free
//! to [check out its docs](https://docs.rs/crate/simmer/latest) for more info.

use core::marker::PhantomData;
use embedded_hal::spi::SpiDevice;

pub mod error;
pub use error::Max6675Error;

/// A Temperature type from [`simmer`](https://docs.rs/crate/simmer/latest).
pub use simmer::Temperature;

/// # Max6675
///
/// A representation of the MAX6675 digital thermocouple converter.
/// Maintains an SPI connection to the device.
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct Max6675<Spi, SpiError>
where
    Spi: SpiDevice<Error = SpiError>,
{
    /// SPI connection
    spi: Spi,

    // we're using the generic spi error, but not here!
    _spi_err: PhantomData<SpiError>,
}

impl<Spi, SpiError> Max6675<Spi, SpiError>
where
    Spi: SpiDevice<Error = SpiError>,
{
    /// Creates a new Max6675 representation.
    ///
    /// For the `spi` argument, you should pass in your `embedded-hal` device's
    /// SPI implementation filled with appropriate details.
    ///
    /// # Usage
    ///
    /// Since the `Spi` (SPI) arguments is generic, you'll have to make some
    /// decisions based on the hardware you're using!
    ///
    /// Please follow this general template:
    ///
    /// ```ignore
    /// // first, define what pins you're connecting to
    /// let so_pin = pins.("your miso pin").into_pull_up_input();
    /// let cs_pin = pins.("your cs pin").into_output();
    /// let sck_pin = pins.("your sck/clock pin").into_output();
    ///
    /// // you may need a mosi pin for your device's SPI, though the max6675 doesn't use one.
    /// // if so, just pick some pin that you're not using ☺️
    /// let dummy_mosi = pins.("some pin you're not using").into_output();
    ///
    /// let (spi, _) = device-hal::spi::Spi::new(
    ///     sck_pin, dummy_mosi, so_pin, cs_pin,
    ///     device-hal::spi::Settings {
    ///         // pick some settings that roughly align like so:
    ///         data_order: MostSignificantFirst,
    ///         clock: 4MhzClockSpeed,
    ///         mode: embedded_hal::spi::MODE_1,
    ///     }
    /// );
    /// let mut max = Max6675::new(spi)?; // your spi here
    /// ```
    pub fn new(spi: Spi) -> Result<Self, Max6675Error<SpiError>> {
        Ok(Self {
            spi,
            _spi_err: PhantomData,
        })
    }

    /// Destructs the `MAX6675` into its bare components, as recommended by the
    /// [HAL Design Patterns](https://doc.rust-lang.org/beta/embedded-book/design-patterns/hal/interoperability.html).
    ///
    /// ```
    /// # use embedded_hal_mock::{
    /// #     common::Generic,
    /// #     eh1::spi::{Mock, Transaction},
    /// # };
    /// use max6675_hal::Max6675;
    ///
    /// # let spi = Mock::new(&[].to_vec());
    /// // pretend there's some spi setup code above...
    /// let mut max = Max6675::new(spi).unwrap();
    /// let mut spi = max.free();
    /// # spi.done();
    pub fn free(self) -> Spi {
        self.spi
    }

    /// Tries to read thermocouple temperature, leaving it as a raw ADC count.
    ///
    /// ```
    /// # use embedded_hal_mock::{
    /// #     common::Generic,
    /// #     eh1::spi::{Mock, Transaction},
    /// # };
    /// use max6675_hal::Max6675;
    /// #
    /// # let temp = ((400 << 3) as u16).to_be_bytes().to_vec();
    /// # let expected = [
    /// #     Transaction::transaction_start(),
    /// #     Transaction::read_vec(((400 << 3) as u16).to_be_bytes().to_vec()),
    /// #     Transaction::transaction_end(),
    /// # ]
    /// # .to_vec();
    ///
    /// # let spi = Mock::new(&expected);
    /// // pretend there's some spi setup code above...
    /// let mut max = Max6675::new(spi).unwrap();
    /// assert_eq!(max.read_raw().unwrap(), [0xc, 0x80]);
    /// # max.free().done();
    /// ```
    pub fn read_raw(&mut self) -> Result<[u8; 2], Max6675Error<SpiError>> {
        let mut buf: [u8; 2] = [0_u8; 2];
        self.spi.read(&mut buf)?;

        Ok(buf)
    }

    /// Internal function to convert a `read_raw()` into a parsable `u16`.
    fn process_raw(&mut self) -> Result<u16, Max6675Error<SpiError>> {
        Ok(u16::from_be_bytes(self.read_raw()?))
    }

    /// Tries to read the thermocouple's temperature in Celsius.
    ///
    /// ```
    /// # use assert_approx_eq::assert_approx_eq;
    /// # use embedded_hal_mock::{
    /// #     common::Generic,
    /// #     eh1::spi::{Mock, Transaction},
    /// # };
    /// use max6675_hal::Max6675;
    /// #
    /// # let temp = ((400 << 3) as u16).to_be_bytes().to_vec();
    /// # let expected = [
    /// #     Transaction::transaction_start(),
    /// #     Transaction::read_vec(((400 << 3) as u16).to_be_bytes().to_vec()),
    /// #     Transaction::transaction_end(),
    /// # ]
    /// # .to_vec();
    ///
    /// # let spi = Mock::new(&expected);
    /// // pretend there's some spi setup code above...
    /// let mut max = Max6675::new(spi).unwrap();
    /// assert_approx_eq!(max.read_celsius().unwrap().into_inner(), 100_f32);
    /// # max.free().done();
    /// ```
    pub fn read_celsius(&mut self) -> Result<Temperature, Max6675Error<SpiError>> {
        let raw = self.process_raw()?;

        if raw & 0x04 != 0 {
            return Err(Max6675Error::OpenCircuitError);
        }

        let temp = ((raw >> 3) & 0x1FFF) as f32 * 0.25_f32;
        Ok(Temperature::Celsius(temp))
    }

    /// Tries to read the thermocouple's temperature in Fahrenheit.
    ///
    /// ```
    /// # use assert_approx_eq::assert_approx_eq;
    /// # use embedded_hal_mock::{
    /// #     common::Generic,
    /// #     eh1::spi::{Mock, Transaction},
    /// # };
    /// use max6675_hal::Max6675;
    /// #
    /// # let temp = ((400 << 3) as u16).to_be_bytes().to_vec();
    /// # let expected = [
    /// #     Transaction::transaction_start(),
    /// #     Transaction::read_vec(((80 << 3) as u16).to_be_bytes().to_vec()), // 68° F
    /// #     Transaction::transaction_end(),
    /// # ]
    /// # .to_vec();
    ///
    /// # let spi = Mock::new(&expected);
    /// // pretend there's some spi setup code above...
    /// let mut max = Max6675::new(spi).unwrap();
    /// assert_approx_eq!(max.read_fahrenheit().unwrap().into_inner(), 68_f32);
    /// # max.free().done();
    /// ```
    pub fn read_fahrenheit(&mut self) -> Result<Temperature, Max6675Error<SpiError>> {
        Ok(self.read_celsius()?.to_fahrenheit())
    }

    /// Tries to read the thermocouple's temperature in Kelvin.
    ///
    /// ```
    /// # use assert_approx_eq::assert_approx_eq;
    /// # use embedded_hal_mock::{
    /// #     common::Generic,
    /// #     eh1::spi::{Mock, Transaction},
    /// # };
    /// use max6675_hal::Max6675;
    /// #
    /// # let temp = ((400 << 3) as u16).to_be_bytes().to_vec();
    /// # let expected = [
    /// #     Transaction::transaction_start(),
    /// #     Transaction::read_vec(((400 << 3) as u16).to_be_bytes().to_vec()),
    /// #     Transaction::transaction_end(),
    /// # ]
    /// # .to_vec();
    ///
    /// # let spi = Mock::new(&expected);
    /// // pretend there's some spi setup code above...
    /// let mut max = Max6675::new(spi).unwrap();
    /// assert_approx_eq!(max.read_kelvin().unwrap().into_inner(), 373.15_f32);
    /// max.free().done();
    /// ```
    pub fn read_kelvin(&mut self) -> Result<Temperature, Max6675Error<SpiError>> {
        Ok(self.read_celsius()?.to_kelvin())
    }
}