mirror of
https://github.com/thelsing/knx.git
synced 2025-10-12 11:15:54 +02:00
18 lines
274 B
C++
18 lines
274 B
C++
#pragma once
|
|
|
|
#include "state.h"
|
|
|
|
#ifdef USE_STATES
|
|
class WpsState : public State
|
|
{
|
|
public:
|
|
WpsState() : State(true, true, 400)
|
|
{}
|
|
virtual void enterState();
|
|
virtual const char* name() { return "Wps"; }
|
|
};
|
|
|
|
extern WpsState wpsState;
|
|
|
|
#endif
|