Coder Social home page Coder Social logo

dacs7's Introduction

insite MyGet Build Status

dacs7

Data access S7 is a library to connect to S7 plcs for reading and writing data.

NuGet

PM>  Install-Package Dacs7

Description

Dacs7 is used to connect to a SIEMENS Plc by using the RFC1006 protocol to perform operations.

Sample-Code

Open and close a connection to the PLC

//create an instance of the client
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 exception here.
await client.ConnectAsync();

//Check if the client is connected. If yes, than close the connection.
if(client.IsConnected)
    await client.DisconnectAsync();

Using tag methods

This kind of methods are the low level methods for communicate with the PLC.

Read and Write byte data

var testData1 = new byte[100];
var testData2 = new byte[500];

//Write an array of bytes to the PLC. Syntax = Area.Offset,DataType[,length]
await _client.WriteAsync(KeyValuePair.Create<string, object>("DB1114.0,b,100", testData1), KeyValuePair.Create<string, object>("DB1114.100,b,500", testData2));

//Read an array of bytes from the PLC. Syntax = Area.Offset,DataType[,length]
var readResult = await _client.ReadAsync("DB1114.0,b,100", "DB1114.100,b,500");

Read and Write bit data

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))

Using ItemSpecification methods

This kind of functions are the higher level methods. By using this you write and read the data direct by using the .Net type system.

var testData1 = new byte[100];
var testData2 = new byte[500];

//Write an array of bytes to the PLC. 
await _client.WriteAsync(WriteItem.Create<byte[]>("DB1114", 0, testData1), WriteItem.Create<byte[]>("DB1114", 100, testData2));

//Read an array of bytes from the PLC. 
var readResult = await _client.ReadAsync(ReadItem.Create<byte[]>("DB1114", 0, 100), ReadItem.Create<byte[]>"DB1114", 100, 500);

Compatibility

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

Additional TIA Settings (1200 and 1500 CPUs)

DB Properties

Select the DB in the left pane under 'Program blocks' and click 'Properties' in the context menu.

FullAccess

Select the CPU in the left pane and click 'Properties' in the context menu and go to 'Protection & Security'.

Connection mechanisms

Select the CPU in the left pane and click 'Properties' in the context menu and go to 'Protection & Security/Connection mechanisms'.

dacs7's People

Contributors

proemmer avatar karstengorkow avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.