diff options
author | 2018-02-10 23:08:38 +0200 | |
---|---|---|
committer | 2018-02-10 23:08:38 +0200 | |
commit | 599971784bb74045c6ee2762e20fd1d91bf286cd (patch) | |
tree | cfad0ce9ead4bf4f98f9977c74f23734c403761c /src/tempmodule/main.ino | |
parent | 3facaaa2a92986ab572d8b6505cbe52db8e2fa53 (diff) | |
download | coffeetemp-599971784bb74045c6ee2762e20fd1d91bf286cd.tar.gz coffeetemp-599971784bb74045c6ee2762e20fd1d91bf286cd.tar.bz2 coffeetemp-599971784bb74045c6ee2762e20fd1d91bf286cd.zip |
tempmodule: use pin name instead of GPIO number.
Diffstat (limited to 'src/tempmodule/main.ino')
-rw-r--r-- | src/tempmodule/main.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tempmodule/main.ino b/src/tempmodule/main.ino index dc90665..e60b6e9 100644 --- a/src/tempmodule/main.ino +++ b/src/tempmodule/main.ino @@ -30,7 +30,7 @@ struct temptuple { short temp; /* Temperatures in 0.1°K. */ }; -static const unsigned int iled = 2; +static const unsigned int iled = D4; static const unsigned int analog = A0; static const int port = 2191; static const int mpu_addr = 0x68; |