2025-11-28 22:04:24 +01:00
|
|
|
#include <Arduino.h>
|
|
|
|
|
#include "ThinknodeM3Board.h"
|
|
|
|
|
#include <Wire.h>
|
|
|
|
|
|
|
|
|
|
#include <bluefruit.h>
|
|
|
|
|
|
|
|
|
|
void ThinknodeM3Board::begin() {
|
2025-12-22 16:25:35 +01:00
|
|
|
Nrf52BoardDCDC::begin();
|
2025-11-28 22:04:24 +01:00
|
|
|
btn_prev_state = HIGH;
|
|
|
|
|
|
|
|
|
|
Wire.begin();
|
|
|
|
|
|
|
|
|
|
delay(10); // give sx1262 some time to power up
|
2025-12-22 16:25:35 +01:00
|
|
|
}
|