GY-63_MS5611/libraries/ADG728
2024-07-03 17:21:20 +02:00
..
.github 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
documents 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
examples/ADG728_demo 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
test 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
.arduino-ci.yml 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
ADG728.cpp 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
ADG728.h 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
CHANGELOG.md 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
keywords.txt 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
library.json 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
library.properties 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
LICENSE 0.1.0 ADG728 2024-07-03 17:21:20 +02:00
README.md 0.1.0 ADG728 2024-07-03 17:21:20 +02:00

Arduino CI Arduino-lint JSON check GitHub issues

License: MIT GitHub release PlatformIO Registry

ADG728

Arduino Library for I2C ADG728 matrix switch. 1x8 Multiplexer.

Description

Experimental

Library for the ADG728 1 to 8 channel multiplexer.

The library allows you to enable 0 to 8 channels uniquely or simultaneously. In fact the ADG728 is therefore a switch, although often named a multiplexer.

The library caches the channels enabled, and if a channel is enabled, it will not be enabled again (low level) to optimize performance. This can however be overruled.

The device works with 2.3 V to 5.5 V so it should work with most MCU's.

Warning

The library is not tested with hardware yet.

I2C

I2C address of the device itself is 0x4C .. 0x4F.

I2C performance

The ADG728 can work up to 400 KHz according to the datasheet.

Other multiplexers

Interface

#include "ADG728.h"

Constructor

  • ADG728(const uint8_t deviceAddress, TwoWire *wire = &Wire) Constructor. deviceAddress = 0x4C .. 0x4F, wire = Wire or WireN.
  • bool begin(uint8_t mask = 0x00) set mask of channels to be enabled, default all disabled.
  • bool isConnected() returns true if address of the multiplexer is found on I2C bus.

Channel functions

All "channel functions" return true on success.

  • bool enableChannel(uint8_t channel) enables channel 0 .. 7 non-exclusive.
    Multiple channels can be enabled in parallel.
  • bool disableChannel(uint8_t channel) disables channel 0 .. 7. Will not disable other channels.
  • bool selectChannel(uint8_t channel) enables a single channel 0 .. 7 exclusive.
    All other channels will be disabled in the same call, so not before or after.
  • bool isEnabled(uint8_t channel) returns true if the channel is enabled.
  • bool disableAllChannels() fast way to disable all channels.

Multiple channels can also be enabled in one call with a mask.

  • bool setChannelMask(uint8_t mask) enables 0 or more channels simultaneously with a bit mask.
  • uint8_t getChannelMask() reads back the bit mask of the channels enabled.

Reset

Optional the library can reset the device.

  • void setResetPin(uint8_t resetPin) sets the pin to reset the chip.
  • void reset() trigger the reset pin.

Debug

  • int getError() returns the last (I2C) status / error.

Forced IO

When forced IO is set, all writes and read, e.g. uint8_t getChannelMask(), will go to the device. If the forced-IO flag is set to false, it will cache the value of the channels enabled. This will result in far more responsive and faster calls. Note that writes are only optimized if the channels are already set.
Forced IO is also used to speed up getChannelMask().

  • void setForced(bool forced = false) set forced write, slower but more robust.
    • forced == false == fast mode (default).
    • forced == true == slower, robust mode.
  • bool getForced() returns set flag.

Error Codes

Not implemented yet, preparation for future.

name value description
ADG728_OK 00 no error
ADG728_ERROR_I2C -10 detected an I2C error
ADG728_ERROR_CHANNEL -20 channel out of range

Future

Must

  • improve documentation.
  • test with hardware.

Should

  • add examples.
  • improve error handling.

Could

  • extend the unit tests.

Wont

Support

If you appreciate my libraries, you can support the development and maintenance. Improve the quality of the libraries by providing issues and Pull Requests, or donate through PayPal or GitHub sponsors.

Thank you,