Files
bobbycar-boardcomputer-firm…/main/actions/bluetoothendaction.h

18 lines
255 B
C++

#pragma once
#include "actioninterface.h"
#include "globals.h"
namespace {
#ifdef FEATURE_BLUETOOTH
class BluetoothEndAction : public virtual ActionInterface
{
public:
void triggered() override
{
bluetoothSerial.end();
}
};
#endif
}