当前位置:网站首页>Botu uses peek and poke for IO mapping
Botu uses peek and poke for IO mapping
2022-07-03 05:05:00 【DoTheTran】
Berto S7120、SCL Language programming 、PEEK、POKE Instructions 、IO mapping
brief introduction
Sometimes we need to map a variable to IO On domain , For example, a size of 16 The array variable of corresponds to the output Q0.0 To Q1.7, If one by one assignment is too verbose , Now we can use SCL Linguistic PEEK、POKE Instructions , Perform index addressing mapping
This article refers to the Siemens Help Center website :
http://www.ad.siemens.com.cn/productportal/Prods/S7-1200_PLC_EASY_PLUS/07-Program/03-instruction/03-Address/03-PEEK_POKE.html
background
Take the parking lot project as an example , share 20 A parking space , Each parking space corresponds to a sensor and a red light . For the convenience of programming , Use them separately DB The size in the block is 20 The array variable of represents the parking space sensor and the red light . It is very convenient to assign values in the way of circular array at one time 20 Assignment of lamp States .
But the problem is , How to input and output variables in an array , The convenient and fast mapping is I Point and Q How about it? ?
SCL Language
First of all SCL Language , It can easily complete the work that requires many instructions in the ladder diagram , It's like C Language programming is generally , It mainly uses IF…THEN/FOR/WHILE Statement to construct condition 、 loop 、 Judge such a structure , Add instructions to these structures again , To realize logical judgment . All programs are written in a plain text environment , But not as intuitive as ladder diagram .
PEEK And POKE
Use S7-1200 ,SCL Programming language PEEK and POKE Instructions , Can realize the right I/O、M Read or write memory and data blocks .
Applicable conditions of the directive :
- Used only for SCL programing language ;
- Software from TIA PORTAL V11 SP2 rise ;
- S7-1200 CPU Firmware from V2.2 rise ;
- Applicable operands ,I、Q、M、DB;
- DB Must be a non optimized access block .
Because we are right about I spot 、Q Point addressing , So use PEEK_BOOL and POKE_BOOL Instructions .
PEEK_BOOL Instructions
PEEK_BOOL Instructions are used to read input (I)、 Output (Q)、 Memory (M) Or data block (DB) Bit of variable .PEEK The instruction assigns the obtained data value to the corresponding variable in the form of return value .
PEEK_BOOL Command format :
among , Parameters area, There are four values according to the area where the data is located .
| area value | type | explain |
|---|---|---|
| 16#81 | I | Input area variables |
| 16#82 | Q | Output area variables |
| 16#83 | M | M Zone variable |
| 16#84 | DB | Block variables |
POKE_BOOL Instructions
POKE _BOOL Instructions can be used to input (I)( Generally not used )、 Output (Q)、 Memory (M) Or data block (DB) Write the variable address .POKE The instruction can pass the result to the corresponding variable in the instruction body .
PEEK_BOOL Command format :
Parameters area The value of is the same as PEEK.
Start
First, create a new one FC block , Name it IO mapping , Language choice SCL
Open the new block , Pull out the block interface above , Create two new temporary variables . among i As a cyclic variable ,io_offset Become IO Offset of the starting address of the domain .
At the command → Basic instructions → Mobile operating → read / Write to memory , find PEEK_BOOL and POKE_BOOL Instructions , Double click for easy input .
stay FC Block, enter the following code
FOR #i := 0 TO 19 DO //I -> Input
#io_offset := #i + 8 * 2 + 0;// from I2.0 Start
" An array variable ". Parking space sensor [#i] :=
PEEK_BOOL(area := 16#81,//16#81 by I
dbNumber := 0,
byteOffset := #io_offset / 8,
bitOffset := #io_offset MOD 8);
END_FOR;
FOR #i := 0 TO 19 DO // Output -> Q
#io_offset := #i + 8 * 4 + 0;// from Q4.0 Start
POKE_BOOL(area := 16#82, //16#82 by Q
dbNumber := 0,
byteOffset := #io_offset / 8,
bitOffset := #io_offset MOD 8,
value := " An array variable ". Parking space red light [#i]);
END_FOR
ad locum
If the mapped address is a continuous storage space , This method can use FOR Loop assignment . It's easy to find the law , Array element subscripts from 0 Start adding one by one 1, If I/O Point is from 0.0 Start , The bit variable of the corresponding input address is from 0 To 7 And back and forth , The byte address is first 8 individual 0, And then there was 8 individual 1…… So the summary is that the byte address is subscript division 8 The business of , Bit addresses are subscript divisible 8 The remainder of , In programming language, byte address is subscript /8, Bit address is subscript MOD8. If the byte address is not from 0.0 Start , Add an offset at the beginning of the loop . Then we can use FOR Loop to quickly implement bit by bit assignment .
边栏推荐
- Notes | numpy-08 Advanced index
- Silent authorization login and registration of wechat applet
- "Pthread.h" not found problem encountered in compiling GCC
- [research materials] 2021 annual report on mergers and acquisitions in the property management industry - Download attached
- Mobile terminal - uniapp development record (public request encapsulation)
- What is UUID
- Self introduction and objectives
- Dynamic programming - related concepts, (tower problem)
- 论文阅读_中文NLP_ELECTRA
- Coordinatorlayout appbarrayout recyclerview item exposure buried point misalignment analysis
猜你喜欢

Basic use of Metasploit penetration testing framework

Unity tool Luban learning notes 1

MPM model and ab pressure test

leetcode406. Rebuild the queue based on height

Use posture of sudo right raising vulnerability in actual combat (cve-2021-3156)

Interface frequency limit access

Review the old and know the new: Notes on Data Science

【批处理DOS-CMD命令-汇总和小结】-CMD窗口的设置与操作命令-关闭cmd窗口、退出cmd环境(exit、exit /b、goto :eof)

M1 Pro install redis

Silent authorization login and registration of wechat applet
随机推荐
[SQL injection point] location and judgment of the injection point
Market status and development prospect forecast of global button dropper industry in 2022
Current market situation and development prospect forecast of global UV sensitive resin 3D printer industry in 2022
[Yu Yue education] basic reference materials of interchangeability and measurement technology of Zhongyuan Institute of Technology
1099 build a binary search tree (30 points)
"Pthread.h" not found problem encountered in compiling GCC
Ueditor, FCKeditor, kindeditor editor vulnerability
Coordinatorlayout appbarrayout recyclerview item exposure buried point misalignment analysis
112 stucked keyboard (20 points)
Gbase8s unique index and non unique index
Notes | numpy-09 Broadcast
Hire cashier (differential constraint)
Oracle SQL table data loss
Uipath practice (08) - selector
1094 the largest generation (25 points)
The principle is simple, but I don't know how to use it? Understand "contemporaneous group model" in one article
Wechat applet distance and map
动态规划——相关概念,(数塔问题)
1118 birds in forest (25 points)
leetcode435. Non overlapping interval