* Changed the temperature output format, add MIT licence.

This commit is contained in:
HuangRui 2014-12-07 12:51:44 +08:00
parent 8f1516ef28
commit bce686a8ed
1 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,10 @@
-- 18b20 Example
--[[
-- 18b20 one wire example for NODEMCU
-- NODEMCU TEAM
-- LICENCE: http://opensource.org/licenses/MIT
-- Vowstar <vowstar@nodemcu.com>
--]]
pin = 9
ow.setup(pin)
count = 0
@ -37,7 +43,7 @@ else
t = (data:byte(1) + data:byte(2) * 256) * 625
t1 = t / 10000
t2 = t % 10000
print("Temperature="..t1.."."..t2.."Centigrade")
print("Temperature= "..t1.."."..t2.." Centigrade")
end
tmr.wdclr()
until false