2025-09-02 13:56:24 +08:00
|
|
|
#include <Arduino.h>
|
|
|
|
|
#include <Wire.h>
|
|
|
|
|
|
2025-12-09 19:56:00 +01:00
|
|
|
#include "MeshPocket.h"
|
2025-09-02 13:56:24 +08:00
|
|
|
|
|
|
|
|
void HeltecMeshPocket::begin() {
|
2025-12-09 15:00:08 +01:00
|
|
|
NRF52Board::begin();
|
2025-09-02 13:56:24 +08:00
|
|
|
Serial.begin(115200);
|
|
|
|
|
pinMode(PIN_VBAT_READ, INPUT);
|
|
|
|
|
|
|
|
|
|
pinMode(PIN_USER_BTN, INPUT);
|
|
|
|
|
}
|