Files
OpenIris-ESPIDF/components/CommandManager/CommandManager/commands/scan_commands.hpp
2025-10-18 19:35:22 +02:00

13 lines
300 B
C++

#ifndef SCAN_COMMANDS_HPP
#define SCAN_COMMANDS_HPP
#include "CommandResult.hpp"
#include "DependencyRegistry.hpp"
#include "esp_log.h"
#include <wifiManager.hpp>
#include <string>
#include <nlohmann-json.hpp>
CommandResult scanNetworksCommand(std::shared_ptr<DependencyRegistry> registry);
#endif