@ChrisP said in M308 and Current Loop Temperature Sensors
Good to hear! Yep CurrentLoop Temp Sensor fully implements the code for MCP3204 and 3208.
The only thing that's a little wonky about it is in that it wants you to input the Low and High values where High is the absolute maximum reading and the Low is 20% of the range.
I've written a simple formula for it to be calculated based on the desired Minimum value:
L=0.2 H + 0.8 MinVal
For example if your range is from 50-120 degrees:
0.2 * 120 + 0.8 * 50 = L
L = 64
H = 120
You should be able to read from 16 ADC using only 5 pins. 😉
@dc42 said in M308 and Current Loop Temperature Sensors:
Thanks, but I won't be able to consider your PR until development on 3.02 has started, because 3.01 is close to final now.
I assume you aren't implementing new features until 3.02? I was hoping this and my SX1509 expansion code were ready to go for the next full release.