I think it would be a great addition to be able to collect room temperatures from cheaper temperature probes.
If its technically possible i hope someone with a little more hardware experience than me will take up the idea and make a software for it

Moderator: Telldus
Code: Select all
<?php
$s = stream_socket_client('unix:///tmp/TelldusEvents');
while(1){
echo stream_socket_recvfrom($s,1024)."\n";
}
?>