blob: 5aebdef5de8d5e3877b1a34c42c59a5f262303c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
nodemcu: connect D4 to TX
D7 to RXD (the pin that transmits, weird, right?) of UART-RS485
G to GND of UART-RS485
3V to VCC of UART-RS485
plug in nodemcu to computer via usb
pio run --target upload
SLIP:
slattach -vdp slip -s 115200 /dev/ttyUSB0
ifconfig sl0 up
ip addr add dev sl0 2.0.0.1/8
use artnet on 2.0.0.1 as input in qlc+, set in artnet config universe to 0, instead of default 1
WIFI:
add #define DO_WIFI to source and change ssid to connect to in setup()
use artnet on wifi iface as input in qlc+, set in artnet config universe to 0, instead of default 1
hacks:
connect D6 to GND to enable flash suppression hack - flash (dmx 255) will be replaced with the last known value instead
|