It appears to be working

This commit is contained in:
Benjamin Höglinger-Stelzer
2019-04-22 14:03:14 +02:00
parent 3f1286cbc9
commit 3408227bb1
7 changed files with 115 additions and 151 deletions

View File

@@ -22,10 +22,14 @@ VOID CALLBACK notification(
{
m.lock();
//std::cout.width(3);
//std::cout << (int)LargeMotor << " ";
//std::cout.width(3);
//std::cout << (int)SmallMotor << std::endl;
static int count = 1;
std::cout.width(3);
std::cout << count++ << " ";
std::cout.width(3);
std::cout << (int)LargeMotor << " ";
std::cout.width(3);
std::cout << (int)SmallMotor << std::endl;
m.unlock();
}