From 783caa6b1f6475e846c2a3bd090f8da2cff8f1d7 Mon Sep 17 00:00:00 2001 From: Thomas Basler Date: Mon, 3 Apr 2023 22:07:00 +0200 Subject: [PATCH] Added config for blinkyparts kit --- docs/DeviceProfiles/blinkyparts_esp32.json | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 docs/DeviceProfiles/blinkyparts_esp32.json diff --git a/docs/DeviceProfiles/blinkyparts_esp32.json b/docs/DeviceProfiles/blinkyparts_esp32.json new file mode 100644 index 0000000..8a7da53 --- /dev/null +++ b/docs/DeviceProfiles/blinkyparts_esp32.json @@ -0,0 +1,64 @@ +[ + { + "name": "LEDs, Display", + "nrf24": { + "miso": 19, + "mosi": 23, + "clk": 18, + "irq": 16, + "en": 4, + "cs": 5 + }, + "display": { + "type": 3, + "data": 21, + "clk": 22 + }, + "led": { + "led0": 25, + "led1": 26 + } + }, + { + "name": "Only Display", + "nrf24": { + "miso": 19, + "mosi": 23, + "clk": 18, + "irq": 16, + "en": 4, + "cs": 5 + }, + "display": { + "type": 3, + "data": 21, + "clk": 22 + } + }, + { + "name": "Only LEDs", + "nrf24": { + "miso": 19, + "mosi": 23, + "clk": 18, + "irq": 16, + "en": 4, + "cs": 5 + }, + "led": { + "led0": 25, + "led1": 26 + } + }, + { + "name": "No Output", + "nrf24": { + "miso": 19, + "mosi": 23, + "clk": 18, + "irq": 16, + "en": 4, + "cs": 5 + } + } +] \ No newline at end of file