From 31ce2e3feff7e5221914e2146948abb22197a870 Mon Sep 17 00:00:00 2001 From: Neil McKechnie Date: Tue, 7 Feb 2023 18:36:48 +0000 Subject: [PATCH] EXTurntable - change I2C address type to I2CAddress. --- IODevice.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IODevice.h b/IODevice.h index d9c851f..f5c7c6f 100644 --- a/IODevice.h +++ b/IODevice.h @@ -385,9 +385,9 @@ private: class EXTurntable : public IODevice { public: - static void create(VPIN firstVpin, int nPins, uint8_t I2CAddress); + static void create(VPIN firstVpin, int nPins, I2CAddress I2CAddress); // Constructor - EXTurntable(VPIN firstVpin, int nPins, uint8_t I2CAddress); + EXTurntable(VPIN firstVpin, int nPins, I2CAddress I2CAddress); enum ActivityNumber : uint8_t { Turn = 0, // Rotate turntable, maintain phase Turn_PInvert = 1, // Rotate turntable, invert phase