Serial Wombat Arduino Library
Loading...
Searching...
No Matches
SerialWombatServo.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#include "SerialWombat.h"
28
29
32
69{
70public:
80
92 void attach(uint8_t pin, bool reverse)
93 {
94 _pin = pin;
96 _reverse = reverse;
98 }
99
111 void attach(uint8_t pin, uint16_t min = 544, uint16_t max = 2400, bool reverse = false)
112 {
113 _pin = pin;
114 _min = min;
115 _max = max;
116 _reverse = reverse;
119 }
120
129 void write(uint8_t angle)
130 {
131 if (angle < 180)
132 {
133 write16bit((uint16_t)(65536uL * angle / 180));
134 }
135 else
136 {
137 write16bit(65535uL);
138 }
139
140 }
141
149 void write16bit(uint16_t position)
150 {
151 _position = position;
152 _sw.writePublicData(_pin, _position);
153 }
154
160 uint8_t read(void)
161 {
162 uint32_t returnval = _position;
163 returnval *= 180;
164 return (uint8_t)(returnval >> 16);
165 }
166
167protected:
168
169 uint16_t _position = 0;
170 uint16_t _min = 544; // Default for Arduino Servo library
171 uint16_t _max = 2400; // Default for Arduino Servo Library
172 bool _reverse = false;
174 {
175 uint8_t tx[] = { 200,_pin,_pinMode,_pin,SW_LE16(_position), _reverse,0x55 };
176 uint8_t rx[8];
177 _sw.sendPacket(tx, rx);
178 uint8_t tx2[] = { 201,_pin,_pinMode,SW_LE16(_min), SW_LE16(_max-_min),0x55, 0x55 };
179 _sw.sendPacket(tx2, rx);
180
181 }
182};
183
217
254{
255
256public:
264 void attach(uint8_t pin, bool reverse);
265
266
279 void attach(uint8_t pin, uint16_t min , uint16_t max , bool reverse = false)
280 {
281 _pin = pin;
282 _min = min;
283 _max = max;
284 _reverse = reverse;
287 }
288
289 int16_t writeFrequency_Hz(uint16_t frequency_hZ)
290 {
291 return writePeriod_uS((uint16_t)(1000000ul / frequency_hZ));
292 }
293 int16_t writePeriod_uS(uint16_t period_uS)
294 {
295 uint8_t tx[] = { 203,_pin,_pinMode,SW_LE16(period_uS), 0x55,0x55,0x55 };
296 uint8_t rx[8];
297 return _sw.sendPacket(tx, rx);
298 }
299};
#define SW_LE16(_a)
Convert a uint16_t to two bytes in little endian format for array initialization.
@ PIN_MODE_HS_SERVO
(26)
@ PIN_MODE_SERVO
(3)
Class for a Serial Wombat chip. Each Serial Wombat chip on a project should have its own instance.
SerialWombatAbstractScaledOutput(SerialWombatChip &sw)
Constructor for the SerialWombatAbstractScaledOutput Class.
SerialWombatChip & _sw
SerialWombatPin(SerialWombatChip &serialWombatChip)
Instantiates a Serial Wombat Pin.
uint8_t pin()
Returns the current SW pin number. Used primarily for virtual calls by derived classes.
void write16bit(uint16_t position)
Writes a 16 bit value to the servo.
uint8_t read(void)
returns the last position of the servo scaled to a number from 0 to 180.
void attach(uint8_t pin, uint16_t min=544, uint16_t max=2400, bool reverse=false)
Initialize a servo on the specified pin.
void write(uint8_t angle)
Writes a value to the servo.
void attach(uint8_t pin, bool reverse)
Initialize a servo on the specified pin.
SerialWombatServo(SerialWombatChip &sw)
Constructor for the SerialWombatServo Class.
SerialWombatServo_18AB(SerialWombatChip &serialWombat)
uint8_t pin()
Facilitates inheritance.
uint8_t swPinModeNumber()
Facilitates inheritance.
SerialWombatHighFrequencyServo(SerialWombatChip &serialWombat)
int16_t writeFrequency_Hz(uint16_t frequency_hZ)
int16_t writePeriod_uS(uint16_t period_uS)
void attach(uint8_t pin, uint16_t min, uint16_t max, bool reverse=false)
Initialize a high Speed servo on the specified pin.
void attach(uint8_t pin, bool reverse)
Do not use this interface for High Frequency Servos.