mirror of
https://github.com/vk496/MeshCore.git
synced 2026-09-02 20:53: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
|
|
} |