Help while transfer .irl file
cristibad
Posts: 69
Hello!
I'm a begginer in amx programming and i'm having a problem while transfering the .irl files to the ni controller. The only file that i can't transfer are the .irl files...Can anyone help me?
Thank you very much!
I'm a begginer in amx programming and i'm having a problem while transfering the .irl files to the ni controller. The only file that i can't transfer are the .irl files...Can anyone help me?
Thank you very much!
0
Comments
What error message do you get when trying to transfer?
i solved the problem. it was a mapping thing.
now i have another problem. how to comunicate with EIB? we have a comm-tech gateway wich should convert rs232 to EIB. i would be gratefull if anyone of you can send me a sample of a code. i found some samples on this forum but they are old, they are for EIB4 and i have 6. i tryed this code for a button but it didin't work.
botton event
PUSH
{
send_command vdvEIB,"' set = 14/0/2:2'"
}
i think it should send the rs232 signal, but it doesn't
Use SEND_STRING, not SEND_COMMAND. The command version talks to the RS-232 device itself, and is used for configuration and setup. The string version is for passing it out through the serial port.
Thank you very much