Merge develop into master #1

Merged
SemvdH merged 40 commits from develop into master 2020-09-11 13:34:57 +00:00
Showing only changes of commit e77372c913 - Show all commits

View File

@@ -23,7 +23,25 @@ namespace ProftaakRH
}
bLEHandler.setResistance(25);
Console.ReadLine();
while (true)
{
string input = Console.ReadLine();
input.ToLower();
input.Trim();
if(input == "quit")
{
break;
}
try
{
int resistance = Int32.Parse(input);
bLEHandler.setResistance(resistance);
}
catch
{
//do nothing
}
}
}
}
}