当前位置:网站首页>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 .
边栏推荐
- Market status and development prospect prediction of the global fire hose industry in 2022
- [set theory] relation properties (reflexivity | reflexivity theorem | reflexivity | reflexivity theorem | example)
- Notes | numpy-08 Advanced index
- Blog building tool recommendation (text book delivery)
- [tools run SQL blind note]
- Basic knowledge of reflection (detailed explanation)
- [clock 223] [binary tree] [leetcode high frequency]: 102 Sequence traversal of binary tree
- @RequestMapping
- MediaTek 2023 IC written examination approved in advance (topic)
- Shuttle + alluxio accelerated memory shuffle take-off
猜你喜欢

leetcode435. Non overlapping interval

Prepare for 2022 and welcome the "golden three silver four". The "summary of Android intermediate and advanced interview questions in 2022" is fresh, so that your big factory interview can go smoothly
![[clock 223] [binary tree] [leetcode high frequency]: 102 Sequence traversal of binary tree](/img/0f/bc8c44aee7a2c9dccac050b1060017.jpg)
[clock 223] [binary tree] [leetcode high frequency]: 102 Sequence traversal of binary tree

Shuttle + alluxio accelerated memory shuffle take-off

The principle is simple, but I don't know how to use it? Understand "contemporaneous group model" in one article
![[set theory] relation properties (transitivity | transitivity examples | transitivity related theorems)](/img/c2/87358af6b2b2892a6eceb751b3b60c.jpg)
[set theory] relation properties (transitivity | transitivity examples | transitivity related theorems)

Thesis reading_ Tsinghua Ernie

JDBC database operation
![[set theory] relation properties (reflexivity | reflexivity theorem | reflexivity | reflexivity theorem | example)](/img/2a/362f3b0491f721d89336d4f468c9dd.jpg)
[set theory] relation properties (reflexivity | reflexivity theorem | reflexivity | reflexivity theorem | example)

论文阅读_清华ERNIE
随机推荐
[Yu Yue education] basic reference materials of interchangeability and measurement technology of Zhongyuan Institute of Technology
112 stucked keyboard (20 points)
1119 pre- and post order traversals (30 points)
Burp suite plug-in based on actual combat uses tips
5-36v input automatic voltage rise and fall PD fast charging scheme drawing 30W low-cost chip
Chapter II program design of circular structure
JS dynamic table creation
论文阅读_ICD编码_MSMN
Basic knowledge of reflection (detailed explanation)
Prepare for 2022 and welcome the "golden three silver four". The "summary of Android intermediate and advanced interview questions in 2022" is fresh, so that your big factory interview can go smoothly
Use posture of sudo right raising vulnerability in actual combat (cve-2021-3156)
Market status and development prospect prediction of the global fire hose industry in 2022
[PHP vulnerability weak type] basic knowledge, PHP weak equality, error reporting and bypassing
50 practical applications of R language (36) - data visualization from basic to advanced
1095 cars on campus (30 points)
@RequestMapping
Gbase8s unique index and non unique index
[research materials] 2021 annual report on mergers and acquisitions in the property management industry - Download attached
动态规划——相关概念,(数塔问题)
论文阅读_清华ERNIE