Digitum/src/infra/intercom.cpp
2023-12-22 21:53:13 +03:00

16 lines
332 B
C++

#include "infra/intercom.h"
extern StateMachineController& stateMachineController;
void configureIntercom(String kmnModel, int firstAppartment) {
}
IntercomConnectionStatus getIntercomStatus() {
return stateMachineController.getStatus();
}
int getLastCalledNumber() {
return stateMachineController.getLastCalledNumber();
}