User manual
Automation Protocol Extended Commands
Miranda Technologies Ltd Page 86
}
Some floating-point parameters are converted to 16.16 fixed-point integer
representation, and sent as an 8-character hex field, so 3.5 would be sent as
00038000.
long oxfix(float f)
{
return f * 0x10000;
}
...
send_command(“ZZ%08x%08x”, oxfox(PI), oxfix(1.23456));
...