firmware/src/main.h

16 lines
327 B
C
Raw Normal View History

#pragma once
#include "screen.h"
extern bool axp192_found;
extern bool ssd1306_found;
extern bool isCharging;
extern bool isUSBPowered;
// Global Screen singleton.
extern meshtastic::Screen screen;
// Return a human readable string of the form "Meshtastic_ab13"
const char *getDeviceName();
2020-04-23 23:55:25 +00:00
void getMacAddr(uint8_t *dmac);