mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-03-30 12:45:45 +00:00
14 lines
250 B
C++
14 lines
250 B
C++
#include <Arduino.h>
|
|
#include "ThinknodeM3Board.h"
|
|
#include <Wire.h>
|
|
|
|
#include <bluefruit.h>
|
|
|
|
void ThinknodeM3Board::begin() {
|
|
Nrf52BoardDCDC::begin();
|
|
btn_prev_state = HIGH;
|
|
|
|
Wire.begin();
|
|
|
|
delay(10); // give sx1262 some time to power up
|
|
} |