FastArduino v1.10
C++ library to build fast but small Arduino/AVR projects
Loading...
Searching...
No Matches
mcp3304.h
Go to the documentation of this file.
1// Copyright 2016-2023 Jean-Francois Poilpret
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
16
21#ifndef MCP3304_HH
22#define MCP3304_HH
23
24#include "mcp3x0x.h"
25
26namespace devices::mcp3x0x
27{
31 enum class MCP3304Channel : uint16_t
32 {
33 // single-ended input
34 CH0 = 0x0C00,
35 CH1 = 0x0C80,
36 CH2 = 0x0D00,
37 CH3 = 0x0D80,
38 CH4 = 0x0E00,
39 CH5 = 0x0E80,
40 CH6 = 0x0F00,
41 CH7 = 0x0F80,
42 // differential input
43 CH0_CH1 = 0x0800,
44 CH1_CH0 = 0x0880,
45 CH2_CH3 = 0x0900,
46 CH3_CH2 = 0x0980,
47 CH4_CH5 = 0x0A00,
48 CH5_CH4 = 0x0A80,
49 CH6_CH7 = 0x0B00,
50 CH7_CH6 = 0x0B80
51 };
52
59 template<board::DigitalPin CS>
61}
62
63#endif /* MCP3304_HH */
Generic class to support (almost) any chip of the SPI-based MicroChip ADC chips family (MCP3001-2-4-8...
Definition: mcp3x0x.h:70
API to handle SPI-based MicroChip ADC chips family (MCP3001-2-4-8, MCP3201-2-4-8, MCP3301-2-4).
Defines the API for MicroChip ADC chips family support.
Definition: mcp3001.h:27
MCP3304Channel
List of channels supported by MCP3304.
Definition: mcp3304.h:32