If you're interested in K8055 boards you may find this entertaining:
It's also listed on the Camera Pages for the time being.
While it isn't exactly "K8055 control integrated into LogiSphere" it is close. The only software being used is LogiSphere + the DLL that comes with the K8055 + a perl script I wrote that sits in between LogiSphere and the DLL.
- LogiSphere (obviously) serves the video stream.
- LogiSphere also serves the HTML page.
- The buttons trigger javascripts (see page source) that call "special" URLs (such as /bitoff). The special URLs are set up in LogiSphere's Commands feature (
Reference Link) to call my perl script with the correct parameters included.
-- External Commands ----------------
Command 1 = 'Bit Off','bitoff','d:\K8055\K8055.pl bitoff','Html'
Command 2 = 'Bit On','biton','d:\K8055\K8055.pl biton','Html'
Command 3 = 'PwmOut 1','pwm1','d:\K8055\K8055.pl pwm1','Html'
Command 4 = 'PwmOut 2','pwm2','d:\K8055\K8055.pl pwm2','Html'
Command 5 = 'ReadCard','read','d:\K8055\K8055.pl read','Html'
- My perl script processes the command (makes the K8055 do stuff via calls to the DLL) and then returns a little HTML (the status stuff, displayed in the box below the buttons) to LogiSphere. LogiSphere passes it along to the browser - that's part of the Commands feature's functionality.
I guess the next trick is to try to re-do this using LogiSphereNG's included PHP support. The objective being to use the PHP instead of a perl script. May take a while.