Difference between revisions of "Writing SerialPort"
From ArcoWiki
| Line 2: | Line 2: | ||
serial port through the [[DMIS]] code, for example: | serial port through the [[DMIS]] code, for example: | ||
| − | + | ||
| − | DECL/CHAR,10,my_var | + | DECL/CHAR,10,my_var |
| − | DECL/INTGR,ii | + | DECL/INTGR,ii |
| − | my_var=[[Assign|ASSIGN]]/'Here the value assigned!' | + | my_var=[[Assign|ASSIGN]]/'Here the value assigned!' |
| − | DID(my_com_device)=DEVICE/COMM,'com3:9600,n,8,1' | + | DID(my_com_device)=DEVICE/COMM,'com3:9600,n,8,1' |
| − | OPEN/DID(my_com_device),DIRECT,INPUT | + | OPEN/DID(my_com_device),DIRECT,INPUT |
| − | DO/ii,1,10,1 | + | DO/ii,1,10,1 |
| − | WRITE/DID_com_device),my_var | + | WRITE/DID_com_device),my_var |
| − | ENDDO | + | ENDDO |
| − | CLOSE/DID(my_com_device) | + | CLOSE/DID(my_com_device) |
| − | |||
[[Category:ReadMe3.5.100]] | [[Category:ReadMe3.5.100]] | ||
Revision as of 18:02, 10 September 2016
It is possible to write data on a serial port through the DMIS code, for example:
DECL/CHAR,10,my_var DECL/INTGR,ii my_var=ASSIGN/'Here the value assigned!' DID(my_com_device)=DEVICE/COMM,'com3:9600,n,8,1' OPEN/DID(my_com_device),DIRECT,INPUT DO/ii,1,10,1 WRITE/DID_com_device),my_var ENDDO CLOSE/DID(my_com_device)