Added the SSD1309 display to several device profiles

This commit is contained in:
Thomas Basler 2023-12-31 11:28:42 +01:00
parent aa8068370e
commit 8aa3fd0412
3 changed files with 102 additions and 0 deletions

View File

@ -73,6 +73,25 @@
"clk": 22 "clk": 22
} }
}, },
{
"name": "NRF24 with SSD1309",
"nrf24": {
"miso": 19,
"mosi": 23,
"clk": 18,
"irq": 16,
"en": 4,
"cs": 5
},
"eth": {
"enabled": false
},
"display": {
"type": 4,
"data": 21,
"clk": 22
}
},
{ {
"name": "CMT2300A with SSD1306", "name": "CMT2300A with SSD1306",
"nrf24": { "nrf24": {
@ -127,6 +146,33 @@
"clk": 22 "clk": 22
} }
}, },
{
"name": "CMT2300A with SSD1309",
"nrf24": {
"miso": -1,
"mosi": -1,
"clk": -1,
"irq": -1,
"en": -1,
"cs": -1
},
"cmt": {
"clk": 18,
"cs": 4,
"fcs": 5,
"sdio": 23,
"gpio2": 19,
"gpio3": 16
},
"eth": {
"enabled": false
},
"display": {
"type": 4,
"data": 21,
"clk": 22
}
},
{ {
"name": "NRF24 + CMT2300A", "name": "NRF24 + CMT2300A",
"nrf24": { "nrf24": {

View File

@ -77,5 +77,33 @@
"data": 33, "data": 33,
"clk": 32 "clk": 32
} }
},
{
"name": "Olimex ESP32-POE with SSD1309",
"links": [
{"name": "Datasheet", "url": "https://www.olimex.com/Products/IoT/ESP32/ESP32-POE/open-source-hardware"}
],
"nrf24": {
"miso": 15,
"mosi": 2,
"clk": 14,
"irq": 13,
"en": 16,
"cs": 5
},
"eth": {
"enabled": true,
"phy_addr": 0,
"power": 12,
"mdc": 23,
"mdio": 18,
"type": 0,
"clk_mode": 3
},
"display": {
"type": 4,
"data": 33,
"clk": 32
}
} }
] ]

View File

@ -49,5 +49,33 @@
"data": 5, "data": 5,
"clk": 17 "clk": 17
} }
},
{
"name": "WT32-ETH01 with SSD1309",
"links": [
{"name": "Datasheet", "url": "http://www.wireless-tag.com/portfolio/wt32-eth01/"}
],
"nrf24": {
"miso": 4,
"mosi": 2,
"clk": 32,
"irq": 33,
"en": 14,
"cs": 15
},
"eth": {
"enabled": true,
"phy_addr": 1,
"power": 16,
"mdc": 23,
"mdio": 18,
"type": 0,
"clk_mode": 0
},
"display": {
"type": 4,
"data": 5,
"clk": 17
}
} }
] ]