exemples/python/py_ext_0@py_ext/pyfile.xml
author Edouard Tisserant <edouard.tisserant@gmail.com>
Mon, 13 Sep 2021 22:23:14 +0200
changeset 3351 88dbdebd10fc
parent 2699 tests/python/py_ext_0@py_ext/pyfile.xml@467ff0e58327
child 3814 ab0afe798428
permissions -rw-r--r--
IDE: Add a "Tutorials and Examples" sub menu to "File" menu to directly open projects in /exemples directory. Move 'python' and 'first_steps' projecvts from /tests to /exemple
<?xml version='1.0' encoding='utf-8'?>
<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <variables>
    <variable name="SomeVarName" type="DINT" onchange="MyFunc, SomeChange"/>
    <variable name="Grumpf" type="STRING" initial="'mhoo'" onchange="MyFunc, MyOtherFunc"/>
  </variables>
  <globals>
    <xhtml:p><![CDATA[
print "All python PLC globals variables :", PLCGlobalsDesc
print "Current extention name :", __ext_name__

def MyFunc(*args):
    print args

def MyOtherFunc(*args):
    print "other", args

def SomeChange(*args):
    print "count",OnChange.SomeVarName.count
    print "first",OnChange.SomeVarName.first
    print "last",OnChange.SomeVarName.last


]]></xhtml:p>
  </globals>
  <init>
    <xhtml:p><![CDATA[
]]></xhtml:p>
  </init>
  <cleanup>
    <xhtml:p><![CDATA[
]]></xhtml:p>
  </cleanup>
  <start>
    <xhtml:p><![CDATA[
]]></xhtml:p>
  </start>
  <stop>
    <xhtml:p><![CDATA[
]]></xhtml:p>
  </stop>
</PyFile>