Data access S7 is a library to connect to S7 plcs for reading and writing data.
PM> Install-Package Dacs7
Dacs7 is used to connect to a SIEMENS Plc by using the RFC1006 protocol to perform operations.
//create an instance of the client [IP]:[Port],[Rack],[Slot]
var client = new Dacs7Client("127.0.0.1:102,0,2");
//connect to the plc. If the connection could not be established
//you will get an Dacs7NotConnectedException here.
await client.ConnectAsync();
...
//Check if the client is connected. If yes, than close the connection.
if(client.IsConnected)
await client.DisconnectAsync();
This methods are created to address data a given a tag string. All the relevant information will be parsed from this string.
Syntax
Area.Offset,DataType[,Length]
For each write operation you will get an ItemResponseRetValue.
public enum ItemResponseRetValue : byte
{
Reserved = 0x00,
[Description("Hardware error")]
HardwareFault = 0x01,
[Description("Accessing the object not allowed")]
AccessFault = 0x03,
[Description("Invalid address")]
OutOfRange = 0x05, //the desired address is beyond limit for this PLC
[Description("Data type not supported")]
NotSupported = 0x06, //Type is not supported
[Description("Data type inconsistent")]
SizeMismatch = 0x07, //Data type inconsistent
[Description("Object does not exist")]
DataError = 0x0a, //the desired item is not available in the PLC, e.g. when trying to read a non existing DB
[Description("Success")]
Success = 0xFF,
}
For each read operation you will get and DataValue.
public class DataValue
{
ItemResponseRetValue ReturnCode { get; }
bool IsSuccessReturnCode { get; }
Type Type { get; }
Memory<byte> Data { get; }
object Value { get; };
T GetValue<T>()
}
var testData1 = new byte[100];
var testData2 = new byte[500];
//Write an array of bytes to the PLC by using the tag syntax
var writeResult1 = await _client.WriteAsync(WriteItem.CreateFromTag("DB1114.0,b,100", testData1),
WriteItem.CreateFromTag("DB1114.100,b,500", testData2));
//Read an array of bytes from the PLC by using the tag syntax
var readResults1 = await _client.ReadAsync(ReadItem.CreateFromTag("DB1114.0,b,100"),
ReadItem.CreateFromTag("DB1114.100,b,500"));
//Write an array of bytes to the PLC
var writeResult2 = await _client.WriteAsync(WriteItem.Create("DB1114",0, testData1),
WriteItem.Create("DB1114",100, testData2));
//Read an array of bytes from the PLC
var readResults2 = await _client.ReadAsync(ReadItem.Create<byte[]>("DB1114", 0, 100),
ReadItem.Create<byte[]>("DB1114", 100, 500));
The offset is normally in bytes, but if you address bools, you have to pass the address in bits (byteoffset * 8 + bitoffset)
var readResults = await client.ReadAsync(ReadItem.Create<bool>(datablock, baseOffset),
ReadItem.Create<bool>(datablock, baseOffset + 5))
await client.WriteAsync(WriteItem.Create(datablock, baseOffset, true),
WriteItem.Create(datablock, baseOffset + 5, true))
IF the given type is a string or char you can also specify if its the Unicode variant of them (this means 2byte per sign). PlcEncoding can be Acsii or Unicode. Unicode is only supported in TIA to address WString an WChar.
var readResults = await client.ReadAsync(ReadItem.Create<string>(datablock, 0, 10, PlcEncoding.Ascii))
await client.WriteAsync(WriteItem.Create(datablock, baseOffset, "TEST ", PlcEncoding.Ascii))
300 | 400 | WinAC | 1200 | 1500 | |
---|---|---|---|---|---|
DB Read/Write | X | X | X | X | X |
EB Read/Write | X | X | X | X | X |
AB Read/Write | X | X | X | X | X |
MB Read/Write | X | X | X | X | X |
TM Read/Write | X | X | X | ||
CT Read/Write | X | X | X |
Select the DB in the left pane under ‘Program blocks’ and click ‘Properties’ in the context menu.
Select the CPU in the left pane and click ‘Properties’ in the context menu and go to ‘Protection & Security’.
Select the CPU in the left pane and click ‘Properties’ in the context menu and go to ‘Protection & Security/Connection mechanisms’.