Dear sir i am interfacing pic to amulet using rs232 levels i am using LINEPLOT class for continously updating for drawing dynamic line that will be updated...
Bansal, The Lineplot widget does not accept an array of bytes, it only takes a single data point at a time. If you are wanting to display an entire array of...
Hello all, I've got an internalRAMByte that stores a number from 0 to 20. I have a numericField that I want to have display that value as a percentage - so...
This functionality is built into the numeric field widget In your case: <PARAM NAME="min" VALUE="0">> <PARAM NAME="max" VALUE="0x20"> <PARAM NAME="minFld"...
Hi Bob, Thanks for pointing me in the right direction. For posterities sake, however, '0x20' didn't work as it's hex for 32. '0x14' and '20' both work...
I'm using the 5.7" touchscreen kit, and I'm having trouble getting the intial value for my string field to display on start-up. Any suggestions? Phillip Marks...
If you want to set it to a static value, use the 'initialCondition' parameter: <param name = 'initialCondition' value = 'Foo'> I won't comment on how to put a...
hi, can i use more than one widget both using uart function such that string feild widget and linegraph,in a single html program this is easliy programmed in...
Can you elaborate a little more on what you are trying to do. It sounds like you want a string field and a linegraph each updated independently, and possibly...
... hi when we are using two widget than both of them will send there request on same uart than how controller will come to know that this request is belong to...
hi Docklight analyzer is a great s/w for serial communication that has solved many problems it is a stupid question i know but pls tell me how we can use namo...
I am building a simpler hardware interface to the Amulet board and am wondering if I need to control pin 10 at all to control if the Amulet is booted into...
Blaine, Pin 10 of the AOB module should be connected to an open collector output if connecting to another micro. You will need to tri-state pin 10 and then...
Hi there, My Programming Interface Board (PIB) is a Rev-A board. The board does not have a voltage regulator and is powered by +5V so the onboard 3221 level...
Patrick, The current Amulet Graphical OS chip is 5 volt tolerant, so you do not need to worry about damaging your Amulet On Board module. But, we will...
Hi What is the maximum number of widgets that can be put onto a single HTML page? I had the following line on a page 19 times and it failed to work passed a...
Graeme, The maximum number of objects on a single HTML page is 256. If you exceed that limit, the HTMLCompiler will throw an error letting you know. I'll...
Hi all, Has anybody successfully programmed an Amulet via a USB to serial converter? If so, what one? My old laptop died, and the new one only has USB! I sure...
Dave; I have succesfully used a Belkin F5U109 USB to serial converter. Lloyd Barnett ... From: Amulet@yahoogroups.com [mailto:Amulet@yahoogroups.com]On Behalf...
Dave, I have just tried my easysync USB to 2 com port adapter (part no. USB-2COM) to program an Amulet AOB and it worked fine on both ports. (have a look at...
The second appears broke until the last period is deleted, then it works. _____ From: Amulet@yahoogroups.com [mailto:Amulet@yahoogroups.com] On Behalf Of ...
I bought a generic USB to serial converter cable from a local computer shop and it works great. The converter cable shows up as COM4 in my HTMLCompiler RS232...
I'm attempting to setup the amulet to function as the slave in a communication. I'm experiencing two problems, the first is related to the fact I can't find an...
FWIW, I tested my 2 port Lava ether-serial link and it works fine as well. Bob ... __________________________________________________ Do You Yahoo!? Tired of...
Hi, I'm totally new to this, and I know this has to be a really basic question. I'm currently in a project for my place of employment. I need to display 12...
Instead of using Uart.byte or internalRam.byte, use Uart.Word or InternalRam.word. ... __________________________________________________ Do You Yahoo!? Tired...
Another option is to use a word variable instead of a byte variable. Byte variables have a value range of 0-255, while word variables have a value range of...