Just to say, thanks to watching this i was able to get my Rako kit working At the moment its really basic code to "just get it to work" but will be going back over it to add checking and anything else i can think of (the blasted off commands issue for one )
I'll pop a wiki page up sometime this week with my code.
Looking forward to the next conference, i'll try and add something to it this time (got a list of why dont this works )
Sp00nhead,
That's GrEaT! I wanted that first webcast to be a primer, or a basic how-to... I'm glad it's helped!
Viewing the log is probably the most effective debugging resource, if I didn't mention it in the conference...
just make sure you output to it.
and... just do you don't reinvent the wheel, here's a quicky. Put this in your Private Method Listing:
def log(line)
$log = File.open("/var/log/pluto/" + device_.devid_.to_s + "_Generic_Serial_Device.log", "a")
$log.puts "(***):" + line.to_s
$log.close
end
Now, at any time you have something to log, do this:
log("this will be logged")
Done!
Regards,
Dan