Hello Ben,
> Just digging through the plethora of information online about 1-wire, it
> seems that there is already a library in place for the Ardunio, but looking
> at the schematics, you have them individually connected to separate pins? Am
> I missing something here? Does the current library not really work that
> well?
Just looked at the picture - and realized that I forgot to mention
that sensors are not 1-Wire, they are TMP36. LM34, or any other kind
of sensor that can be read by Arduino's ADC, can also be used -
calibration and scaling will be different, but that's in software.
About 1-Wire - I don't really trust software implementation. The
current idea is to use serial ports to communicate with hardware
1-Wire adapter (either full fledged, or simplified - had a link
stashed somewhere, but can't find it at the moment). Besides, I'm not
so sure software can handle multiple branches over DS2409 - and I am
*really* not looking forward to rewriting 1-Wire API again (did it a
while ago, it is still a nightmare even after improvements).
Likewise, I'm planning to connect XBee coordinator to a serial port.
Mega ADK has either 4 or 3 available serial ports (I don't remember if
the one on 0/1 is the one connected to USB or not) - should be more
than sufficient.
However... I have no idea how well does current Arduino 1-Wire stack
work. The Arduino accessory code is in the open
(
https://github.com/home-climate-control/arduino), if you think you're
up to writing 1-Wire driver for it, so much the better - the protocol
was written to accommodate both already.
> Ben
--vt