Refactoring tool for Particle Workbench

I am looking for advice on refactoring tools that work smoothly with workbench? There are a large number of extensions but I am wondering if there are any particle specific issues I need to be aware of…
Many thanks

As long as you are using .cpp files and .h files (instead of .ino files), any of the Marketplace C/C++ source tools will work properly with Particle projects.

If you are using a .ino file, you can convert it to .cpp by renaming it, then:

  • Add #include "Particle.h" at the top
  • Adding forward declarations for any functions implemented after they are used.
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.