#include #include "spore/Spore.h" #include "spore/services/LoggingService.h" // Create Spore instance Spore spore; void setup() { // Initialize Spore framework spore.setup(); // Start the framework (this will start the API server with static file serving) spore.begin(); LOG_INFO(spore.getContext(), "Example", "Static web server started!"); LOG_INFO(spore.getContext(), "Example", "Visit http:/// to see the web interface"); } void loop() { // Let Spore handle the main loop spore.loop(); }