Max31855 with the propeller?
Hey All! I'm looking to read temp with this. It uses a Max31855 and k-type thermocouple. I treied the object for the 6675, but it isn't pin compatible. How could I read this sensor? Any help is Appreciated.
Thanks,
Tyler
Thanks,
Tyler

Comments
PUB ReadSensor : data outa[CS_PIN]~ 'Set CS low waitcnt(t_css + cnt) data := 0 repeat 32 outa[SCK_PIN]~~ data := ( data << 1) | ina[SO_PIN] waitcnt(t_ch + cnt) outa[SCK_PIN]~ waitcnt(t_cl + cnt) outa[CS_PIN]~~ return dataThe datasheet provides timing examples.
Thanks,
Tyler
Thanks I'll try it out when I get a chance.
Thanks,
Tyler
Ken....