From daf81c692d1402587d483c5f356ed9d4b6277ae7 Mon Sep 17 00:00:00 2001 From: Rob Tillaart Date: Sun, 17 Mar 2024 17:25:46 +0100 Subject: [PATCH] update readme.md --- .github/workflows/arduino-lint.yml | 1 + .github/workflows/jsoncheck.yml | 1 + CHANGELOG.md | 1 + README.md | 13 +++++++++++++ 4 files changed, 16 insertions(+) diff --git a/.github/workflows/arduino-lint.yml b/.github/workflows/arduino-lint.yml index 870a176..70d8d1c 100644 --- a/.github/workflows/arduino-lint.yml +++ b/.github/workflows/arduino-lint.yml @@ -5,6 +5,7 @@ on: [push, pull_request] jobs: lint: runs-on: ubuntu-latest + timeout-minutes: 5 steps: - uses: actions/checkout@v4 - uses: arduino/arduino-lint-action@v1 diff --git a/.github/workflows/jsoncheck.yml b/.github/workflows/jsoncheck.yml index d4f78d5..fd05f5f 100644 --- a/.github/workflows/jsoncheck.yml +++ b/.github/workflows/jsoncheck.yml @@ -9,6 +9,7 @@ on: jobs: test: runs-on: ubuntu-latest + timeout-minutes: 5 steps: - uses: actions/checkout@v4 - name: json-syntax-check diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b1e3d4..f612593 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [0.1.2] - 2024-03-17 - update GitHub actions - add performance example +- update readme.md - minor performance tweak. diff --git a/README.md b/README.md index c9f8650..ead74bf 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,18 @@ No tests with hardware have been done yet, so use with care. Feedback welcome! +#### Multiple ADG725 in parallel + +**To be tested** + +It seems possible to connect multiple ADG725 devices side by side and control +them as one. This would allow to create e.g a fast 8x16 multiplexer. + +If you want to control them separately, every device need its own **syncPin** +a.k.a. Chip Select Pin. The data- and clockPin can be shared. +If you want to control them as one, all three lines should be shared. + + #### Related - https://github.com/RobTillaart/HC4051 (1x8 mux) @@ -76,6 +88,7 @@ Valid values for channel are 0..15. #### Should - add examples +- test multiple ADG725 in parallel #### Could