summaryrefslogtreecommitdiff
path: root/Mode/ModeJoin.h
diff options
context:
space:
mode:
Diffstat (limited to 'Mode/ModeJoin.h')
-rw-r--r--Mode/ModeJoin.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/Mode/ModeJoin.h b/Mode/ModeJoin.h
index 6ab6622..af48d94 100644
--- a/Mode/ModeJoin.h
+++ b/Mode/ModeJoin.h
@@ -3,12 +3,10 @@
#include "Mode.h"
#include "LayoutJoin.h"
-#include "mDot.h"
-#include "LoRaHandler.h"
class ModeJoin : public Mode {
public:
- ModeJoin(DOGS102* lcd, ButtonHandler* buttons, mDot* dot, LoRaHandler* lora, uint8_t band);
+ ModeJoin(DOGS102* lcd, ButtonHandler* buttons, mDot* dot, LoRaHandler* lora);
~ModeJoin();
bool start();
@@ -17,16 +15,7 @@ class ModeJoin : public Mode {
void display();
LayoutJoin _join;
- mDot* _dot;
- LoRaHandler* _lora;
- uint8_t _band;
- uint8_t _sub_band;
- uint8_t _data_rate;
- uint8_t _power;
- uint32_t _next_tx;
bool _joined;
- ButtonHandler::ButtonEvent _be;
- LoRaHandler::LoRaStatus _ls;
};
#endif