Rob
Rob
I can add more detail to this bug. I'm using [National Instruments LabWindows CVI](https://www.ni.com/en-us/support/downloads/software-products/download.labwindows-cvi.html), which is an MDI style program with detachable floating windows. The main app window seems to...
Ahh, good idea. Path length has bitten me before. I just fired a project up from inside my OneDrive path, verified the breakpoint doesn't work, and the path looks like...
Indeed, good suggestion. That debugger has two immediate advantages:' 1) debugs just fine on AHK files inside of OneDrive paths. 2) also supports conditional breakpoints Thanks! On Mon, Oct 3,...
Huh, weird. Not working for me. And fails on two different machines with settings synced. I'm now up to VSC1.52.1, AHK-Plus 2.6.2
Ah, eureka! Your are correct. It requires a double-click in the editor, but also on the function/method label (for me anyway). Double-clicking anywhere _inside_ the function is not enough. At...
So in your simpletransitions.ino example, I'm modifying one of the callbacks: ``` void light_on() { State state = fsm.getState(); String str = state.getName(); Serial.print("Entering State: "); Serial.println(str); } ``` Not...
Nevermind, silly me. getState returns a state _pointer_. ``` State* state = fsm.getState(); String str = state->getName(); Serial.print("Entering State: "); Serial.println(str); ```