Files
MeshCore-Solo/variants/mesh_pocket/MeshPocket.cpp
T

13 lines
213 B
C++
Raw Normal View History

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() {
NRF52Board::begin();
2025-09-02 13:56:24 +08:00
Serial.begin(115200);
pinMode(PIN_VBAT_READ, INPUT);
pinMode(PIN_USER_BTN, INPUT);
}