Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 461 → Rev 462

/QMK-Groundstation/branches/libMK/libMK/Handler.cpp
1,4 → 1,5
#include<Handler.h>
#include "Handler.h"
#include <iostream>
 
/**
* Constructor that gets a communication instance
321,7 → 322,7
// Debug-Daten
case 'D' : // DONE 0.71g
for (int i = 0; i < MaxAnalog; i++) {
//AnalogData[i] = Parser::dataToInt(RX.decode, (i * 2) + 2);
std::cout << Parser::dataToInt(data, (i * 2) + 2) << std::endl;
}
//show_DebugData();
break;