I have installed the plugin, excellent work by tenholde.
I looked at the chart from the plugin and it looks pretty good.
I was wondering how best to display a chart in HSTouch. I suspect that the capabilities of HSTouch in this area may be somewhat limited at this time. You can display a web page in HSTouch although the ones I have tried did not refresh unless I restarted HSTouch. You can also display an image. I am not sure about refreshing that image if the file is changed, I have not yet tried that. I was hoping to be able to display a chart that could be refreshed at some interval.
Any ideas?
Brian
If a web page has the header set to auto-refresh every x seconds, will it in HsTouch? I am not very familiar with HsTouch, but if you can tell me what you need I can probably supply it. I can format a page with just the chart. The chart is actually generated to a .png file -- can you reference that?
tenholde
tenholde,
As far as setting a web page header to auto-refresh every x seconds, I will have to try to look up how to do that, I have not done it before. Also, I think I asked about refreshing a page in a post some time back and I believe a solution was posted, so perhaps I can look up that solution as well and try it. Or perhaps someone will chime in who already has page refreshing working in HSTouch.
The Image Element in HSTouch has a IsVideo property which it says to set to true if the source is constantly changing, such as a web camera. There is also a IsVideoRefreshRate which you can set the rate at which to update the image, .5=2 times per second, 10=every 10 seconds, etc. I wonder if this could be set up to update a still image file that changes frequently?
I believe it is also designed to display snapshots from a video camera:
http://Camera_IP_Address/SnapshotJPEG?
Resolution=480x360&Quality=Precision&Language=0
(consult your camera manual for precise URL as this will vary by camera)
This must be a link to the latest snapshot from your camera, it cannot contain any HTML or be an image stream.
HSTouch will support the following custom graphics formats according to the documentation. I have included the comments on the various file types from the docs:
BMP - Bitmap graphics are images of very high quality with no file compression. This format is useful when high quality images are required and filesize is not a concern. Transparency is not supported in this format.
GIF - GIF graphics are images of varying quality that include file compression. This format is useful when filesize is a concern. Transparency is supported to a limited degree and works best with simple shapes and colors.
JPG - JPG graphics are images of varying quality that include file compression. This format is useful when filesize is a concern. Transparency is not supported in this format.
PNG-8 - PNG-8 graphics are images of varying quality that include file compression. This format is useful when filesize is a concern. Transparency is supported to a limited degree (as with GIF images) and works best with simple shapes and colors.
PNG-24 - PNG-24 graphics are images of high quality that include limited file compression. Alpha-blending transparency is supported. This format is useful when high quality transparent images are required.
Thanks,
Brian