Serial Wombat Arduino Library
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
SerialWombatProcessedInputPin.h
Go to the documentation of this file.
1#pragma once
2/*
3Copyright 2020-2023 Broadwell Consulting Inc.
4
5"Serial Wombat" is a registered trademark of Broadwell Consulting Inc. in
6the United States. See SerialWombat.com for usage guidance.
7
8Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14
15The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
22 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
25*/
26
27
28#include <stdint.h>
29#include "SerialWombat.h"
30
31
34
38
40{
41public:
46
53 int16_t begin(uint8_t pin, uint8_t dataSourcePin)
54{
55 delay(500); //TODO
56 _pin = pin;
58 uint8_t tx[] = { (uint8_t)SerialWombatCommands::CONFIGURE_PIN_MODE0,
59 _pin,
61 dataSourcePin,
62 0x55,
63 0x55,
64 0x55,
65 0x55 };
66 return _sw.sendPacket(tx);
67}
68 int16_t begin(uint8_t pin, SerialWombatDataSource dataSource) { return begin(pin, (uint8_t)dataSource); }
69
70 uint8_t pin() { return _pin; }
71 uint8_t swPinModeNumber() {return _pinMode; };
72};
73
@ PIN_MODE_INPUT_PROCESSOR
(14)
SerialWombatDataSource
A list of Serial Wombat public data sources.
Class for a Serial Wombat chip. Each Serial Wombat chip on a project should have its own instance.
SerialWombatAbstractProcessedInput(SerialWombatChip &sw)
Constructor for the SerialWombatAbstractScaledOutput Class.
SerialWombatChip & _sw
SerialWombatPin(SerialWombatChip &serialWombatChip)
Instantiates a Serial Wombat Pin.
int16_t begin(uint8_t pin, uint8_t dataSourcePin)
Initialize by providing the pin or public data source to read data from.
int16_t begin(uint8_t pin, SerialWombatDataSource dataSource)
uint8_t swPinModeNumber()
Used for ineheritance.
SerialWombatProcessedInputPin(SerialWombatChip &serialWombat)
Class constructor for SerialWombatPulseTimer.