Browse Source

add SPI pin config option

pull/807/head
Markus Krause 2 years ago
parent
commit
9df7da46a7
  1. 2
      src/web/html/setup.html

2
src/web/html/setup.html

@ -655,7 +655,7 @@
function parsePinout(obj, type, system) {
var e = document.getElementById("pinout");
pins = [['cs', 'pinCs'], ['ce', 'pinCe'], ['irq', 'pinIrq'], ['led0', 'pinLed0'], ['led1', 'pinLed1']];
pins = [['cs', 'pinCs'], ['ce', 'pinCe'], ['irq', 'pinIrq'], ['sclk', 'pinSclk'], ['mosi', 'pinMosi'], ['miso', 'pinMiso'], ['led0', 'pinLed0'], ['led1', 'pinLed1']];
for(p of pins) {
e.append(
ml("div", {class: "row mb-3"}, [

Loading…
Cancel
Save