Unverified Commit 3f3f4aa6 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

temt6000: _always_ return estimation and raw reading

parent 7724c182
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ local temt6000 = {}
function temt6000.read()
	local raw = adc.read(0)
	if raw < 70 then
		return raw
		return raw, raw
	end
	if raw == 1024 then
		return 2500, raw