Mike Dunston

Results 169 comments of Mike Dunston

Jmri doesn't expose the option today but you can control on/off state of OPS track by send events to the bus. Similarly estop can be sent. This will need to...

well-known events that control the areas you are after: - turn OPS track off: [01.00.00.00.00.00.FF.FF](https://github.com/openlcb/documents/blob/master/standards/generated/EventIdentifiersS.txt#L61) - turn OPS track on: [01.00.00.00.00.00.FF.FE](https://github.com/openlcb/documents/blob/master/standards/generated/EventIdentifiersS.txt#L63) - e-stop (all): [01.00.00.00.00.00.FF.FD](https://github.com/openlcb/documents/blob/master/standards/generated/EventIdentifiersS.txt#L65) - e-stop (all) clear: [01.00.00.00.00.00.FF.FC](https://github.com/openlcb/documents/blob/master/standards/generated/EventIdentifiersS.txt#L67)...

Another snippet from your log showing uplink starting too early: ``` [SoftAP] MAC Address: XX:XX:XX:XX:XX:XX [SoftAP] Setting ESP32 hostname to "esp32cs_05010101xx00". [httpd] Starting DNS listener [httpd] Starting HTTP listener on...

This has been on the to-do list for a while. With the integrated LCC support coming in v1.2.0 (release soon) this may get implemented via that instead.

Ahh, yes I have one of the Arduino Uno form factor ESP32 boards. It does work decently but the pin mapping is a bit poor, the A0 and A1 pins...

ok that makes sense, In that case the uno form factor with an L298 shield may work for your usecase, but a smaller esp32 with L298 may fit easier.

@sticilface please see PR #193. You should only have the sources for *YOUR* project in your project tree. All IDF bits and arduino-esp32 bits should come from the PIO frameworks.

> Also my project needs ULP, so on PlatformIO only espidf is available. I have tried to clone @atanisoft commit from 07-02-2019 but couldnt manage to make it work too....

> As Platformio only supports espidf and I need to get my Arduino project working on idf the best way i've found is to use Arduino as a component o...