Merge pull request #17 from bodensee/master

added upper L for Arduino Uno to preheating time
This commit is contained in:
Tobias Schürg 2020-11-28 00:10:04 +01:00 committed by GitHub
commit d67723a05d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,8 +8,8 @@
const int MHZ14A = 14;
const int MHZ19B = 19;
const unsigned long MHZ14A_PREHEATING_TIME = 3 * 60 * 1000;
const unsigned long MHZ19B_PREHEATING_TIME = 3 * 60 * 1000;
const unsigned long MHZ14A_PREHEATING_TIME = 3L * 60L * 1000L;
const unsigned long MHZ19B_PREHEATING_TIME = 3L * 60L * 1000L;
const unsigned long MHZ14A_RESPONSE_TIME = 60 * 1000;
const unsigned long MHZ19B_RESPONSE_TIME = 120 * 1000;