12 lines
186 B
C
12 lines
186 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Arduino.h>
|
||
|
|
#include <MeshCore.h>
|
||
|
|
|
||
|
|
#if defined(NRF52_PLATFORM)
|
||
|
|
|
||
|
|
class NRF52Board : public mesh::MainBoard {
|
||
|
|
public:
|
||
|
|
float getMCUTemperature() override;
|
||
|
|
};
|
||
|
|
#endif
|