On Thursday 07 January 2021 12:49:51 andy pugh wrote:

> On Thu, 7 Jan 2021 at 17:41, Gene Heskett <ghesk...@shentel.net> wrote:
> > idb.comp:12:13: error: ‘lt’ undeclared (first use in this function)
>
> I would hazard a guess that you are trying to compile html.

copy pasted from the anderswallin site it had a bunch of python stuff in 
the paste that didn't show in the onscreen box, so I removed it.  Whats 
left is attached.

Cheers, Gene Heskett
-- 
"There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
If we desire respect for the law, we must first make the law respectable.
 - Louis D. Brandeis
Genes Web page <http://geneslinuxbox.net:6309/gene>
component idb "Inverse Deadband";
pin in float in "Input";
pin out float out "Output";
param rw float amount;
function _ ;
license "GPL";
;;
FUNCTION(_)
{
if (in==0.0)
out=in;
else if (in&lt;0.0)
out=in-amount;
else if (in&gt;0.0)
out=in+amount;
}
_______________________________________________
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users

Reply via email to