Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 461 → Rev 462

/QMK-Groundstation/branches/libMK/libMK/Communication.cpp
0,0 → 1,13
#include "Communication.h"
 
bool Communication::is_connected() {
return connected;
}
 
void Communication::connection_established() {
connected = true;
}
 
void Communication::connection_lost() {
connected = false;
}