API
 
Loading...
Searching...
No Matches
MCP3008.h
Go to the documentation of this file.
1// MIT License
2//
3// Copyright (c) 2021 Daniel Robertson
4//
5// Permission is hereby granted, free of charge, to any person obtaining a copy
6// of this software and associated documentation files (the "Software"), to deal
7// in the Software without restriction, including without limitation the rights
8// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9// copies of the Software, and to permit persons to whom the Software is
10// furnished to do so, subject to the following conditions:
11//
12// The above copyright notice and this permission notice shall be included in all
13// copies or substantial portions of the Software.
14//
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21// SOFTWARE.
22
23#ifndef MCP3008_H_AA185758_F169_4B8A_8158_6E4588F5B55F
24#define MCP3008_H_AA185758_F169_4B8A_8158_6E4588F5B55F
25
26#include <cstdint>
27#include <linux/spi/spidev.h>
28
29/**
30 * Datasheet
31 * https://cdn-shop.adafruit.com/datasheets/MCP3008.pdf
32 */
33
34namespace MCP3008Lib {
35
36enum class Mode : std::uint8_t {
37 SINGLE = 1,
38 DIFFERENTIAL = 0
39};
40
41class MCP3008 {
42public:
43 static const int DEFAULT_SPI_DEV = 0;
44 static const int DEFAULT_SPI_CHANNEL = 0;
45 static const int SPI_5V_BAUD = 3600000;
46 static const int SPI_2_7V_BAUD = 1350000;
47 static const int DEFAULT_SPI_BAUD = SPI_2_7V_BAUD;
48
49 //https://www.analog.com/en/analog-dialogue/articles/introduction-to-spi-interface.html
50 static const int DEFAULT_SPI_FLAGS = SPI_MODE_0;
51
52 MCP3008(
53 const int dev = DEFAULT_SPI_DEV,
54 const int channel = DEFAULT_SPI_CHANNEL,
55 const int baud = DEFAULT_SPI_BAUD,
56 const int flags = DEFAULT_SPI_FLAGS) noexcept;
57
58 virtual ~MCP3008();
59
60 void connect();
61 void disconnect();
62 unsigned short read(const std::uint8_t channel, const Mode m = Mode::SINGLE) const;
63
64
65protected:
67 int _dev;
69 int _baud;
70 int _flags;
71
72};
73
74};
75#endif
virtual ~MCP3008()
Definition MCP3008.cpp:20
static const int DEFAULT_SPI_DEV
Definition MCP3008.h:43
unsigned short read(const std::uint8_t channel, const Mode m=Mode::SINGLE) const
Definition MCP3008.cpp:65
static const int DEFAULT_SPI_CHANNEL
Definition MCP3008.h:44
static const int SPI_2_7V_BAUD
Definition MCP3008.h:46
static const int SPI_5V_BAUD
Definition MCP3008.h:45
static const int DEFAULT_SPI_BAUD
Definition MCP3008.h:47
static const int DEFAULT_SPI_FLAGS
Definition MCP3008.h:50