What is the code needed to have the Photon work as a standard (non-connected) micro?
I have an application that will be tested in an area without an online connection so I do not want the Photon to keep searching for a connection. Rather, I just need it to run its program …
The problem is potentially related to #include "application.h" (which should now rather be #include <Particle.h>).
Since this is usually included at the top of the code by the preprocessor automatically when dealing with .ino files, you’d not need to include it at all, hence we don’t normally see this kind of issue.