summaryrefslogtreecommitdiff
path: root/temt6000.lua
blob: 69c71101b9d5143e0afaa13d325c70cc3593b94e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
local temt6000 = {}

function temt6000.read()
	local raw = adc.read(0)
	if raw < 70 then
		return raw, raw
	end
	if raw == 1024 then
		return 2500, raw
	end
	if raw < 300 then
		return (raw-70) * 2, raw
	end
	return raw * 2, raw
end

return temt6000