how to create a link Button help me please !!
- piasdom
- Offline
- Platinum Member
- Posts: 472
- Thank you received: 10
but i used it before and it didn't work. now it does thanks again !
it may have to be on a line by itself. i had other wording when i tried before.
Please Log in or Create an account to join the conversation.
- piasdom
- Offline
- Platinum Member
- Posts: 472
- Thank you received: 10
<halpin>, but not the name<text>. from what i see in the docs, i'll have to
put another frame above each <number> ?
<number>
<relief>RIDGE</relief>
<halpin>"y-offset"</halpin>
<text>"Offset of Y"</text>
<font>('Helvetica',12)</font>
<format>"4.3f"</format>
</number>
it doesn't like this
<label><text>"Offset of Y"</text></label>
Please Log in or Create an account to join the conversation.
- piasdom
- Offline
- Platinum Member
- Posts: 472
- Thank you received: 10
Please Log in or Create an account to join the conversation.
- andypugh
- Away
- Moderator
- Posts: 23559
- Thank you received: 4858
Look at the containers section here:
linuxcnc.org/docs/html/hal_pyvcp.html
Please Log in or Create an account to join the conversation.
- piasdom
- Offline
- Platinum Member
- Posts: 472
- Thank you received: 10
tables don't have output ? [
<table flexible_rows="[3]">
<tablesticky sticky="new"/>
<tablerow/>
<label>
<text>" X Offset "</text>
<relief>RIDGE</relief>
<bd>6</bd>
<width>8</width>
<halpin>"x-offset"</halpin>
</label>
<tablerow/>
<label>
<text>" Y Offset "</text>
<relief>RIDGE</relief>
<bd>6</bd>
<width>8</width>
<halpin>"y-offset"</halpin>
</label>
<tablerow/>
<label>
<text>" Z Offset "</text>
<relief>RIDGE</relief>
<bd>6</bd>
<width>8</width>
<halpin>"z-offset"</halpin>
</label>
</table>
Please Log in or Create an account to join the conversation.
- andypugh
- Away
- Moderator
- Posts: 23559
- Thank you received: 4858
Please Log in or Create an account to join the conversation.
- piasdom
- Offline
- Platinum Member
- Posts: 472
- Thank you received: 10
Please Log in or Create an account to join the conversation.
- piasdom
- Offline
- Platinum Member
- Posts: 472
- Thank you received: 10
float or didn't do anything. the doc has an abort button, but not the link. i'm trying to make
an abort button on the right. i;'m thinking i need to use "out" to control abort. so that's what
i've been looking for.please tell me if i'm going in the wrong direction. Thanks
attached is my xml, in case someone needs examples.i had to name it ini to get it in here
Please Log in or Create an account to join the conversation.
- andypugh
- Away
- Moderator
- Posts: 23559
- Thank you received: 4858
HAL has functions to swap data types between bit, float, u32 and s32. However that shouldn't be necessary.ok, i've been looking for the pin to control abort.(and jog), tried a bunch of aborts, but they were either
float or didn't do anything.
Any pin that you want to change the value of has to be an "IN". Any pin you want to use the value of has to be an "OUT".the doc has an abort button, but not the link. i'm trying to make
an abort button on the right. i;'m thinking i need to use "out" to control abort. so that's what
i've been looking for.please tell me if i'm going in the wrong direction.
you probably want
net abort pyvcp.abort-button => halui.abort
That does assume that you have halui loaded.
Please Log in or Create an account to join the conversation.
- piasdom
- Offline
- Platinum Member
- Posts: 472
- Thank you received: 10
Thanks. i thought pyvcp.??? had to be in that position always.
cool
tried that and get error in axis.
can't do that(EMC_TRAJ_SET)TELEOP_ENABLE)in
auto mode with the interpreter idle.
i thought this aborted a running program. when would this be used?
what's like pressing the escape button on the keyboard ?
Please Log in or Create an account to join the conversation.