mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-21 08:40:53 +01:00
Compare commits
84 Commits
terminal_s
...
ci-snapraf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d4d994628 | ||
|
|
d917c697b0 | ||
|
|
1be21782fd | ||
|
|
5c6b9f1829 | ||
|
|
9c55378f49 | ||
|
|
e367436358 | ||
|
|
c9ebdace04 | ||
|
|
3e6e38e566 | ||
|
|
c83d4e5aea | ||
|
|
0e9d09c62e | ||
|
|
fe66caf5ac | ||
|
|
c58d61594b | ||
|
|
3cd3535c18 | ||
|
|
97ecd26749 | ||
|
|
2e70d2e599 | ||
|
|
3dd0986c4f | ||
|
|
899caeabe9 | ||
|
|
a2b73ea2bc | ||
|
|
bf32219154 | ||
|
|
6a669f1399 | ||
|
|
4ab1ed7fc9 | ||
|
|
89d03e5503 | ||
|
|
9a6e1d2a61 | ||
|
|
fad6983cf1 | ||
|
|
daeec311b2 | ||
|
|
db8c76c184 | ||
|
|
2ec7e6aa45 | ||
|
|
021aea1d8b | ||
|
|
1f4dfdba3f | ||
|
|
f0694f0daf | ||
|
|
baf412614c | ||
|
|
e1865fec62 | ||
|
|
1e255af3be | ||
|
|
1c99cb5c2d | ||
|
|
4ca21a3bff | ||
|
|
189d92f2a9 | ||
|
|
34a7e0f3fe | ||
|
|
17290ae3b3 | ||
|
|
8b65d240db | ||
|
|
bce6a43427 | ||
|
|
1c52cd71a9 | ||
|
|
898edb6c12 | ||
|
|
de3fa988b1 | ||
|
|
b42aec7bdf | ||
|
|
ea46a92f3f | ||
|
|
6197d0215a | ||
|
|
6fd342e265 | ||
|
|
395d968ab5 | ||
|
|
e41b7f7d6c | ||
|
|
fabf0109ff | ||
|
|
cabfdc0a54 | ||
|
|
6f4122f65c | ||
|
|
ce21a812c0 | ||
|
|
5a51f6bace | ||
|
|
a38d97896d | ||
|
|
c4b0c1435c | ||
|
|
a4445c411d | ||
|
|
e92bd36f9b | ||
|
|
61ff8884e0 | ||
|
|
b8af2e9d1d | ||
|
|
1066e55262 | ||
|
|
516a1a7826 | ||
|
|
be1d87c5d4 | ||
|
|
e42bcb5ec9 | ||
|
|
e93990a6e4 | ||
|
|
bb1a0767a3 | ||
|
|
0b7afe4781 | ||
|
|
9a3de1f780 | ||
|
|
830a70ac94 | ||
|
|
e63a8c8482 | ||
|
|
855162bb03 | ||
|
|
d2c15cf57b | ||
|
|
02ce65b3a9 | ||
|
|
0bf1f89c13 | ||
|
|
74c3ab1b82 | ||
|
|
062ae6e9eb | ||
|
|
087c8980f0 | ||
|
|
904e805935 | ||
|
|
04d478882e | ||
|
|
35cd790c8f | ||
|
|
1a26133a78 | ||
|
|
72b7bc210f | ||
|
|
5fe2efca1a | ||
|
|
3ce09775ac |
3
.github/workflows/publish-edge-snap.yml
vendored
3
.github/workflows/publish-edge-snap.yml
vendored
@@ -13,7 +13,8 @@ jobs:
|
||||
- uses: snapcore/action-build@v1
|
||||
id: build
|
||||
- uses: snapcore/action-publish@v1
|
||||
env:
|
||||
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.STORE_LOGIN }}
|
||||
with:
|
||||
store_login: ${{ secrets.STORE_LOGIN }}
|
||||
snap: ${{ steps.build.outputs.snap }}
|
||||
release: edge
|
||||
|
||||
@@ -3,6 +3,31 @@ Changelog
|
||||
|
||||
If by accident I have forgotten to credit someone in the CHANGELOG, email me and I will fix it.
|
||||
|
||||
__3.3.4__
|
||||
---------
|
||||
|
||||
* Fix compilation under Qt 6.2+ and stricter Qt compile settings. - _Christoph Cullmann_
|
||||
|
||||
__3.3.3__
|
||||
---------
|
||||
|
||||
* Support for Qt 6.3+ - Fixed deprecated `QCryptographicHash::addData()` that will only support `QByteArrayView` going further. - _Moody Liu_
|
||||
|
||||
__3.3.2__
|
||||
---------
|
||||
|
||||
* Fixed crash caused by sending a `writeAck` on a removed connection. - _Nicolas Werner_
|
||||
|
||||
__3.3.1__
|
||||
---------
|
||||
|
||||
* Added support for _AppImage_ dynamic executable paths. - _Michael Klein_
|
||||
|
||||
__3.3.0__
|
||||
---------
|
||||
|
||||
* Fixed message fragmentation issue causing crashes and incorrectly / inconsistently received messages. - _Nils Jeisecke_
|
||||
|
||||
__3.2.0__
|
||||
---------
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
cmake_minimum_required(VERSION 3.7.0)
|
||||
cmake_minimum_required(VERSION 3.12.0)
|
||||
|
||||
project(SingleApplication LANGUAGES CXX)
|
||||
|
||||
@@ -38,3 +38,13 @@ endif()
|
||||
|
||||
target_compile_definitions(${PROJECT_NAME} PUBLIC QAPPLICATION_CLASS=${QAPPLICATION_CLASS})
|
||||
target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
target_compile_definitions(${PROJECT_NAME} PRIVATE
|
||||
QT_NO_CAST_TO_ASCII
|
||||
QT_NO_CAST_FROM_ASCII
|
||||
QT_NO_URL_CAST_FROM_STRING
|
||||
QT_NO_CAST_FROM_BYTEARRAY
|
||||
QT_USE_QSTRINGBUILDER
|
||||
QT_NO_NARROWING_CONVERSIONS_IN_CONNECT
|
||||
QT_NO_KEYWORDS
|
||||
QT_NO_FOREACH
|
||||
)
|
||||
|
||||
@@ -35,7 +35,7 @@ To include the library files I would recommend that you add it as a git
|
||||
submodule to your project. Here is how:
|
||||
|
||||
```bash
|
||||
git submodule add git@github.com:itay-grudev/SingleApplication.git singleapplication
|
||||
git submodule add https://github.com/itay-grudev/SingleApplication.git singleapplication
|
||||
```
|
||||
|
||||
**Qmake:**
|
||||
@@ -182,7 +182,8 @@ bool SingleApplication::sendMessage( QByteArray message, int timeout = 100 )
|
||||
```
|
||||
|
||||
Sends `message` to the Primary Instance. Uses `timeout` as a the maximum timeout
|
||||
in milliseconds for blocking functions
|
||||
in milliseconds for blocking functions. Returns `true` if the message has been sent
|
||||
successfully. If the message can't be sent or the function timeouts - returns `false`.
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
// Allow secondary instances
|
||||
SingleApplication app( argc, argv );
|
||||
|
||||
qWarning() << "Started a new instance";
|
||||
|
||||
@@ -248,10 +248,7 @@ bool SingleApplication::sendMessage( const QByteArray &message, int timeout )
|
||||
if( ! d->connectToPrimary( timeout, SingleApplicationPrivate::Reconnect ) )
|
||||
return false;
|
||||
|
||||
d->socket->write( message );
|
||||
bool dataWritten = d->socket->waitForBytesWritten( timeout );
|
||||
d->socket->flush();
|
||||
return dataWritten;
|
||||
return d->writeConfirmedMessage( timeout, message );
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -131,21 +131,34 @@ QString SingleApplicationPrivate::getUsername()
|
||||
void SingleApplicationPrivate::genBlockServerName()
|
||||
{
|
||||
QCryptographicHash appData( QCryptographicHash::Sha256 );
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 3, 0)
|
||||
appData.addData( "SingleApplication", 17 );
|
||||
#else
|
||||
appData.addData( QByteArrayView{"SingleApplication"} );
|
||||
#endif
|
||||
appData.addData( SingleApplication::app_t::applicationName().toUtf8() );
|
||||
appData.addData( SingleApplication::app_t::organizationName().toUtf8() );
|
||||
appData.addData( SingleApplication::app_t::organizationDomain().toUtf8() );
|
||||
|
||||
if ( ! appDataList.isEmpty() )
|
||||
appData.addData( appDataList.join( "" ).toUtf8() );
|
||||
appData.addData( appDataList.join(QString()).toUtf8() );
|
||||
|
||||
if( ! (options & SingleApplication::Mode::ExcludeAppVersion) ){
|
||||
appData.addData( SingleApplication::app_t::applicationVersion().toUtf8() );
|
||||
}
|
||||
|
||||
if( ! (options & SingleApplication::Mode::ExcludeAppPath) ){
|
||||
#ifdef Q_OS_WIN
|
||||
#if defined(Q_OS_WIN)
|
||||
appData.addData( SingleApplication::app_t::applicationFilePath().toLower().toUtf8() );
|
||||
#elif defined(Q_OS_LINUX)
|
||||
// If the application is running as an AppImage then the APPIMAGE env var should be used
|
||||
// instead of applicationPath() as each instance is launched with its own executable path
|
||||
const QByteArray appImagePath = qgetenv( "APPIMAGE" );
|
||||
if( appImagePath.isEmpty() ){ // Not running as AppImage: use path to executable file
|
||||
appData.addData( SingleApplication::app_t::applicationFilePath().toUtf8() );
|
||||
} else { // Running as AppImage: Use absolute path to AppImage file
|
||||
appData.addData( appImagePath );
|
||||
};
|
||||
#else
|
||||
appData.addData( SingleApplication::app_t::applicationFilePath().toUtf8() );
|
||||
#endif
|
||||
@@ -158,7 +171,7 @@ void SingleApplicationPrivate::genBlockServerName()
|
||||
|
||||
// Replace the backslash in RFC 2045 Base64 [a-zA-Z0-9+/=] to comply with
|
||||
// server naming requirements.
|
||||
blockServerName = appData.result().toBase64().replace("/", "_");
|
||||
blockServerName = QString::fromUtf8(appData.result().toBase64().replace("/", "_"));
|
||||
}
|
||||
|
||||
void SingleApplicationPrivate::initializeMemoryBlock() const
|
||||
@@ -257,26 +270,52 @@ bool SingleApplicationPrivate::connectToPrimary( int msecs, ConnectionType conne
|
||||
writeStream << static_cast<quint8>(connectionType);
|
||||
writeStream << instanceNumber;
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
quint16 checksum = qChecksum(QByteArray(initMsg, static_cast<quint32>(initMsg.length())));
|
||||
quint16 checksum = qChecksum(QByteArray(initMsg.constData(), static_cast<quint32>(initMsg.length())));
|
||||
#else
|
||||
quint16 checksum = qChecksum(initMsg.constData(), static_cast<quint32>(initMsg.length()));
|
||||
#endif
|
||||
writeStream << checksum;
|
||||
|
||||
// The header indicates the message length that follows
|
||||
return writeConfirmedMessage( static_cast<int>(msecs - time.elapsed()), initMsg );
|
||||
}
|
||||
|
||||
void SingleApplicationPrivate::writeAck( QLocalSocket *sock ) {
|
||||
sock->putChar('\n');
|
||||
}
|
||||
|
||||
bool SingleApplicationPrivate::writeConfirmedMessage (int msecs, const QByteArray &msg)
|
||||
{
|
||||
QElapsedTimer time;
|
||||
time.start();
|
||||
|
||||
// Frame 1: The header indicates the message length that follows
|
||||
QByteArray header;
|
||||
QDataStream headerStream(&header, QIODevice::WriteOnly);
|
||||
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
|
||||
headerStream.setVersion(QDataStream::Qt_5_6);
|
||||
#endif
|
||||
headerStream << static_cast <quint64>( initMsg.length() );
|
||||
headerStream << static_cast <quint64>( msg.length() );
|
||||
|
||||
socket->write( header );
|
||||
socket->write( initMsg );
|
||||
bool result = socket->waitForBytesWritten( static_cast<int>(msecs - time.elapsed()) );
|
||||
if( ! writeConfirmedFrame( static_cast<int>(msecs - time.elapsed()), header ))
|
||||
return false;
|
||||
|
||||
// Frame 2: The message
|
||||
return writeConfirmedFrame( static_cast<int>(msecs - time.elapsed()), msg );
|
||||
}
|
||||
|
||||
bool SingleApplicationPrivate::writeConfirmedFrame( int msecs, const QByteArray &msg )
|
||||
{
|
||||
socket->write( msg );
|
||||
socket->flush();
|
||||
return result;
|
||||
|
||||
bool result = socket->waitForReadyRead( msecs ); // await ack byte
|
||||
if (result) {
|
||||
socket->read( 1 );
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
quint16 SingleApplicationPrivate::blockChecksum() const
|
||||
@@ -321,33 +360,36 @@ void SingleApplicationPrivate::slotConnectionEstablished()
|
||||
QLocalSocket *nextConnSocket = server->nextPendingConnection();
|
||||
connectionMap.insert(nextConnSocket, ConnectionInfo());
|
||||
|
||||
QObject::connect(nextConnSocket, &QLocalSocket::aboutToClose,
|
||||
QObject::connect(nextConnSocket, &QLocalSocket::aboutToClose, this,
|
||||
[nextConnSocket, this](){
|
||||
auto &info = connectionMap[nextConnSocket];
|
||||
Q_EMIT this->slotClientConnectionClosed( nextConnSocket, info.instanceId );
|
||||
this->slotClientConnectionClosed( nextConnSocket, info.instanceId );
|
||||
}
|
||||
);
|
||||
|
||||
QObject::connect(nextConnSocket, &QLocalSocket::disconnected, nextConnSocket, &QLocalSocket::deleteLater);
|
||||
|
||||
QObject::connect(nextConnSocket, &QLocalSocket::destroyed,
|
||||
QObject::connect(nextConnSocket, &QLocalSocket::destroyed, this,
|
||||
[nextConnSocket, this](){
|
||||
connectionMap.remove(nextConnSocket);
|
||||
}
|
||||
);
|
||||
|
||||
QObject::connect(nextConnSocket, &QLocalSocket::readyRead,
|
||||
QObject::connect(nextConnSocket, &QLocalSocket::readyRead, this,
|
||||
[nextConnSocket, this](){
|
||||
auto &info = connectionMap[nextConnSocket];
|
||||
switch(info.stage){
|
||||
case StageHeader:
|
||||
readInitMessageHeader(nextConnSocket);
|
||||
case StageInitHeader:
|
||||
readMessageHeader( nextConnSocket, StageInitBody );
|
||||
break;
|
||||
case StageBody:
|
||||
case StageInitBody:
|
||||
readInitMessageBody(nextConnSocket);
|
||||
break;
|
||||
case StageConnected:
|
||||
Q_EMIT this->slotDataAvailable( nextConnSocket, info.instanceId );
|
||||
case StageConnectedHeader:
|
||||
readMessageHeader( nextConnSocket, StageConnectedBody );
|
||||
break;
|
||||
case StageConnectedBody:
|
||||
this->slotDataAvailable( nextConnSocket, info.instanceId );
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@@ -356,7 +398,7 @@ void SingleApplicationPrivate::slotConnectionEstablished()
|
||||
);
|
||||
}
|
||||
|
||||
void SingleApplicationPrivate::readInitMessageHeader( QLocalSocket *sock )
|
||||
void SingleApplicationPrivate::readMessageHeader( QLocalSocket *sock, SingleApplicationPrivate::ConnectionStage nextStage )
|
||||
{
|
||||
if (!connectionMap.contains( sock )){
|
||||
return;
|
||||
@@ -376,29 +418,35 @@ void SingleApplicationPrivate::readInitMessageHeader( QLocalSocket *sock )
|
||||
quint64 msgLen = 0;
|
||||
headerStream >> msgLen;
|
||||
ConnectionInfo &info = connectionMap[sock];
|
||||
info.stage = StageBody;
|
||||
info.stage = nextStage;
|
||||
info.msgLen = msgLen;
|
||||
|
||||
if ( sock->bytesAvailable() >= (qint64) msgLen ){
|
||||
readInitMessageBody( sock );
|
||||
writeAck( sock );
|
||||
}
|
||||
|
||||
bool SingleApplicationPrivate::isFrameComplete( QLocalSocket *sock )
|
||||
{
|
||||
if (!connectionMap.contains( sock )){
|
||||
return false;
|
||||
}
|
||||
|
||||
ConnectionInfo &info = connectionMap[sock];
|
||||
if( sock->bytesAvailable() < ( qint64 )info.msgLen ){
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void SingleApplicationPrivate::readInitMessageBody( QLocalSocket *sock )
|
||||
{
|
||||
Q_Q(SingleApplication);
|
||||
|
||||
if (!connectionMap.contains( sock )){
|
||||
if( !isFrameComplete( sock ) )
|
||||
return;
|
||||
}
|
||||
|
||||
ConnectionInfo &info = connectionMap[sock];
|
||||
if( sock->bytesAvailable() < ( qint64 )info.msgLen ){
|
||||
return;
|
||||
}
|
||||
|
||||
// Read the message body
|
||||
QByteArray msgBytes = sock->read(info.msgLen);
|
||||
QByteArray msgBytes = sock->readAll();
|
||||
QDataStream readStream(msgBytes);
|
||||
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
|
||||
@@ -424,7 +472,7 @@ void SingleApplicationPrivate::readInitMessageBody( QLocalSocket *sock )
|
||||
readStream >> msgChecksum;
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
const quint16 actualChecksum = qChecksum(QByteArray(msgBytes, static_cast<quint32>(msgBytes.length() - sizeof(quint16))));
|
||||
const quint16 actualChecksum = qChecksum(QByteArray(msgBytes.constData(), static_cast<quint32>(msgBytes.length() - sizeof(quint16))));
|
||||
#else
|
||||
const quint16 actualChecksum = qChecksum(msgBytes.constData(), static_cast<quint32>(msgBytes.length() - sizeof(quint16)));
|
||||
#endif
|
||||
@@ -438,8 +486,9 @@ void SingleApplicationPrivate::readInitMessageBody( QLocalSocket *sock )
|
||||
return;
|
||||
}
|
||||
|
||||
ConnectionInfo &info = connectionMap[sock];
|
||||
info.instanceId = instanceId;
|
||||
info.stage = StageConnected;
|
||||
info.stage = StageConnectedHeader;
|
||||
|
||||
if( connectionType == NewInstance ||
|
||||
( connectionType == SecondaryInstance &&
|
||||
@@ -448,21 +497,30 @@ void SingleApplicationPrivate::readInitMessageBody( QLocalSocket *sock )
|
||||
Q_EMIT q->instanceStarted();
|
||||
}
|
||||
|
||||
if (sock->bytesAvailable() > 0){
|
||||
Q_EMIT this->slotDataAvailable( sock, instanceId );
|
||||
}
|
||||
writeAck( sock );
|
||||
}
|
||||
|
||||
void SingleApplicationPrivate::slotDataAvailable( QLocalSocket *dataSocket, quint32 instanceId )
|
||||
{
|
||||
Q_Q(SingleApplication);
|
||||
Q_EMIT q->receivedMessage( instanceId, dataSocket->readAll() );
|
||||
|
||||
if ( !isFrameComplete( dataSocket ) )
|
||||
return;
|
||||
|
||||
const QByteArray message = dataSocket->readAll();
|
||||
|
||||
writeAck( dataSocket );
|
||||
|
||||
ConnectionInfo &info = connectionMap[dataSocket];
|
||||
info.stage = StageConnectedHeader;
|
||||
|
||||
Q_EMIT q->receivedMessage( instanceId, message);
|
||||
}
|
||||
|
||||
void SingleApplicationPrivate::slotClientConnectionClosed( QLocalSocket *closedSocket, quint32 instanceId )
|
||||
{
|
||||
if( closedSocket->bytesAvailable() > 0 )
|
||||
Q_EMIT slotDataAvailable( closedSocket, instanceId );
|
||||
slotDataAvailable( closedSocket, instanceId );
|
||||
}
|
||||
|
||||
void SingleApplicationPrivate::randomSleep()
|
||||
@@ -471,7 +529,7 @@ void SingleApplicationPrivate::randomSleep()
|
||||
QThread::msleep( QRandomGenerator::global()->bounded( 8u, 18u ));
|
||||
#else
|
||||
qsrand( QDateTime::currentMSecsSinceEpoch() % std::numeric_limits<uint>::max() );
|
||||
QThread::msleep( 8 + static_cast <unsigned long>( static_cast <float>( qrand() ) / RAND_MAX * 10 ));
|
||||
QThread::msleep( qrand() % 11 + 8);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
@@ -61,9 +61,10 @@ public:
|
||||
Reconnect = 3
|
||||
};
|
||||
enum ConnectionStage : quint8 {
|
||||
StageHeader = 0,
|
||||
StageBody = 1,
|
||||
StageConnected = 2,
|
||||
StageInitHeader = 0,
|
||||
StageInitBody = 1,
|
||||
StageConnectedHeader = 2,
|
||||
StageConnectedBody = 3,
|
||||
};
|
||||
Q_DECLARE_PUBLIC(SingleApplication)
|
||||
|
||||
@@ -79,8 +80,12 @@ public:
|
||||
quint16 blockChecksum() const;
|
||||
qint64 primaryPid() const;
|
||||
QString primaryUser() const;
|
||||
void readInitMessageHeader(QLocalSocket *socket);
|
||||
bool isFrameComplete(QLocalSocket *sock);
|
||||
void readMessageHeader(QLocalSocket *socket, ConnectionStage nextStage);
|
||||
void readInitMessageBody(QLocalSocket *socket);
|
||||
void writeAck(QLocalSocket *sock);
|
||||
bool writeConfirmedFrame(int msecs, const QByteArray &msg);
|
||||
bool writeConfirmedMessage(int msecs, const QByteArray &msg);
|
||||
static void randomSleep();
|
||||
void addAppData(const QString &data);
|
||||
QStringList appData() const;
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
<definition type="element" width="550" hotspot_y="65" height="70" link_type="simple" version="0.90" hotspot_x="265">
|
||||
<uuid uuid="{c99de07b-0296-4e75-8a90-3b5c533510e8}"/>
|
||||
<names>
|
||||
<name lang="en">24 pin connector female+male</name>
|
||||
<name lang="hu">24 tűs csatlakozó anya+apa</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">Weidmüller</elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference">HDC HE 24 MS 25-48</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<dynamic_text frame="false" z="1" text_from="ElementInfo" rotation="0" keep_visual_rotation="false" uuid="{c28b53eb-1e17-4e90-b9af-ff86d19d1a56}" Valignment="AlignTop" Halignment="AlignLeft" y="-90" text_width="-1" x="-270" font="Sans Serif,8,-1,5,50,0,0,0,0,0">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-240" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-240" length1="1.5"/>
|
||||
<text rotation="0" color="#000000" text="12" y="-40" x="1" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" color="#000000" text="20" y="-40" x="161" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" color="#000000" text="4" y="-40" x="-159" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" color="#000000" text="8" y="-40" x="-79" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" color="#000000" text="3" y="-40" x="-179" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" color="#000000" text="2" y="-40" x="-199" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-20" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-160" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-160" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-200" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-200" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="0" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="0" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-80" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-80" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-240" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-240" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="260" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="260" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="160" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="160" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-120" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-120" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-40" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-40" length1="1.5"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-3"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-40" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-40" length1="1.5"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-161"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-201"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="260" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="260" length1="1.5"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-243"/>
|
||||
<text rotation="0" color="#000000" text="18" y="-40" x="121" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="240" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="240" length1="1.5"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-241"/>
|
||||
<text rotation="0" color="#000000" text="10" y="-40" x="-39" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" color="#000000" text="7" y="-40" x="-99" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="257"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-41"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-60" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-180" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-180" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="240" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="240" length1="1.5"/>
|
||||
<text rotation="0" color="#000000" text="19" y="-40" x="141" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" color="#000000" text="6" y="-40" x="-119" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-121"/>
|
||||
<text rotation="0" color="#000000" text="11" y="-40" x="-19" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" color="#000000" text="5" y="-40" x="-139" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-1"/>
|
||||
<text rotation="0" color="#000000" text="24" y="-40" x="241" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-81"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="259"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="40" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length1="1.5"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-181"/>
|
||||
<text rotation="0" color="#000000" text="16" y="-40" x="81" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-80" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-80" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="220" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="220" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-100" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-100" length1="1.5"/>
|
||||
<line y1="-37" y2="-32" length2="1.5" antialias="false" x2="270" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="270" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-20" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-20" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-100" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-100" length1="1.5"/>
|
||||
<text rotation="0" color="#000000" text="15" y="-40" x="61" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" color="#000000" text="23" y="-40" x="221" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-21"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-23"/>
|
||||
<text rotation="0" color="#000000" text="22" y="-40" x="201" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" color="#000000" text="14" y="-40" x="41" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line y1="-32" y2="-32" length2="1.5" antialias="false" x2="274" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="266" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="80" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="80" length1="1.5"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-101"/>
|
||||
<line y1="-30" y2="-30" length2="1.5" antialias="false" x2="272" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="268" length1="1.5"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="79"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-140" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-140" length1="1.5"/>
|
||||
<text rotation="0" color="#000000" text="21" y="-40" x="181" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-60" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" length1="1.5"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-43"/>
|
||||
<text rotation="0" color="#000000" text="13" y="-40" x="21" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" color="#000000" text="9" y="-40" x="-59" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-61"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-63"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-141"/>
|
||||
<line y1="-28" y2="-28" length2="1.5" antialias="false" x2="271" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="269" length1="1.5"/>
|
||||
<text rotation="0" color="#000000" text="17" y="-40" x="101" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="237"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-83"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="120" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="120" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="200" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="200" length1="1.5"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-103"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="200" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="200" length1="1.5"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="39"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="60" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="60" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="180" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="180" length1="1.5"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="119"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="-220" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-220" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-120" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-120" length1="1.5"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="199"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-140" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-140" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="160" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="160" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-160" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-160" length1="1.5"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="59"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-180" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-180" length1="1.5"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="159"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="239"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-200" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-200" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="140" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="140" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="-220" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-220" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="220" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="220" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="140" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="140" length1="1.5"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="217"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="139"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="219"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="100" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="100" length1="1.5"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="180" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="180" length1="1.5"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-123"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="197"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-143"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-163"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="99"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="179"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-183"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="177"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-203"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="-223"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="157"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="-221"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="137"/>
|
||||
<line y1="-25" y2="-14" length2="1.5" antialias="false" x2="20" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="120" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="120" length1="1.5"/>
|
||||
<text rotation="0" color="#000000" text="1" y="-40" x="-219" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="100" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="100" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="80" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="80" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="60" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="60" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="40" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" length1="1.5"/>
|
||||
<line y1="-36" y2="-45" length2="1.5" antialias="false" x2="20" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" length1="1.5"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="117"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="97"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="77"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="57"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="37"/>
|
||||
<arc antialias="true" width="6" height="6" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-35" x="17"/>
|
||||
<rect rx="0" antialias="false" width="2" height="7" style="line-style:normal;line-weight:normal;filling:black;color:black" y="-32" ry="0" x="19"/>
|
||||
<line y1="-37" y2="-32" length2="1.5" antialias="false" x2="-250" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-250" length1="1.5"/>
|
||||
<line y1="-32" y2="-32" length2="1.5" antialias="false" x2="-246" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-254" length1="1.5"/>
|
||||
<line y1="-30" y2="-30" length2="1.5" antialias="false" x2="-248" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-252" length1="1.5"/>
|
||||
<line y1="-28" y2="-28" length2="1.5" antialias="false" x2="-249" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-251" length1="1.5"/>
|
||||
<line y1="-60" y2="-60" length2="1.5" antialias="false" x2="270" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-250" length1="1.5"/>
|
||||
<line y1="-60" y2="-50" length2="1.5" antialias="false" x2="280" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="270" length1="1.5"/>
|
||||
<line y1="-50" y2="-10" length2="1.5" antialias="false" x2="280" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="280" length1="1.5"/>
|
||||
<line y1="-10" y2="0" length2="1.5" antialias="false" x2="270" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="280" length1="1.5"/>
|
||||
<line y1="0" y2="0" length2="1.5" antialias="false" x2="-250" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="270" length1="1.5"/>
|
||||
<line y1="0" y2="-10" length2="1.5" antialias="false" x2="-260" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-250" length1="1.5"/>
|
||||
<line y1="-10" y2="-50" length2="1.5" antialias="false" x2="-260" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-260" length1="1.5"/>
|
||||
<line y1="-50" y2="-60" length2="1.5" antialias="false" x2="-250" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-260" length1="1.5"/>
|
||||
<terminal name="" type="Generic" uuid="{2fd7e019-01c1-4cf6-9c8c-e8adca3ce496}" orientation="s" y="-14" x="240"/>
|
||||
<terminal name="" type="Generic" uuid="{6a39b490-3888-4356-91cc-0a6574a30788}" orientation="n" y="-45" x="-140"/>
|
||||
<terminal name="" type="Generic" uuid="{30fe38ae-876f-478a-83d5-22342403d1bb}" orientation="n" y="-45" x="120"/>
|
||||
<terminal name="" type="Generic" uuid="{6d000d02-1a83-4d64-816c-40b834beef4f}" orientation="s" y="-14" x="120"/>
|
||||
<terminal name="" type="Generic" uuid="{7e0e49fe-4d0a-4560-9f78-a0e160283578}" orientation="s" y="-14" x="-200"/>
|
||||
<terminal name="" type="Generic" uuid="{26db0fbd-62c0-4de4-97ac-5b0bf685cef4}" orientation="s" y="-14" x="-180"/>
|
||||
<terminal name="" type="Generic" uuid="{9e7a5014-3d0f-4f58-880a-9517e77f17ee}" orientation="s" y="-14" x="-160"/>
|
||||
<terminal name="" type="Generic" uuid="{98fdfeec-a022-4d30-bfb1-915a2bb00351}" orientation="s" y="-14" x="-80"/>
|
||||
<terminal name="" type="Generic" uuid="{ed4b19f3-15b5-432c-a9c8-bee918a2429b}" orientation="s" y="-14" x="-60"/>
|
||||
<terminal name="" type="Generic" uuid="{f3c3c49c-4170-46ff-a474-fd1fea020156}" orientation="n" y="-45" x="-100"/>
|
||||
<terminal name="" type="Generic" uuid="{da25c11c-260c-4fb8-9a9b-ae8d11c96e6d}" orientation="n" y="-45" x="-240"/>
|
||||
<terminal name="" type="Generic" uuid="{bcfc8484-a82a-4585-a428-a9ffc2a676d7}" orientation="n" y="-45" x="-160"/>
|
||||
<terminal name="" type="Generic" uuid="{ab25a69a-5c8c-469e-9da7-b79e3ebeb4ba}" orientation="n" y="-45" x="-220"/>
|
||||
<terminal name="" type="Generic" uuid="{ef7db529-e31c-4f39-b831-8c578fb43462}" orientation="s" y="-14" x="20"/>
|
||||
<terminal name="" type="Generic" uuid="{a21c8338-b99c-44a6-9b42-e71b936344ea}" orientation="s" y="-14" x="200"/>
|
||||
<terminal name="" type="Generic" uuid="{aacb7245-00e4-4588-8960-4c3aaea6085b}" orientation="n" y="-45" x="60"/>
|
||||
<terminal name="" type="Generic" uuid="{b6143a32-a9c1-40aa-8e94-c64e0d217a8f}" orientation="s" y="-14" x="-40"/>
|
||||
<terminal name="" type="Generic" uuid="{7ee9a07f-0bf2-42f4-bf51-cabae0875328}" orientation="n" y="-45" x="100"/>
|
||||
<terminal name="" type="Generic" uuid="{b03f6f6e-658a-49fa-84bd-03243a44ff18}" orientation="s" y="-14" x="60"/>
|
||||
<terminal name="" type="Generic" uuid="{a88754c9-bf2c-4e3d-aa45-95113c37c426}" orientation="s" y="-14" x="-140"/>
|
||||
<terminal name="" type="Generic" uuid="{efb0a56a-20ec-49ab-a470-dec34ed12027}" orientation="n" y="-45" x="260"/>
|
||||
<terminal name="" type="Generic" uuid="{8ad57bf7-4125-4268-9817-e0d84a3e80c7}" orientation="s" y="-14" x="100"/>
|
||||
<terminal name="" type="Generic" uuid="{66764cb9-b07b-4d38-bea0-4caefd955b61}" orientation="n" y="-45" x="-120"/>
|
||||
<terminal name="" type="Generic" uuid="{bfaa681e-3fc9-4806-8b32-36af6ae51932}" orientation="s" y="-14" x="180"/>
|
||||
<terminal name="" type="Generic" uuid="{4607cb5a-db47-40aa-9cfe-e22de405bf88}" orientation="s" y="-14" x="-20"/>
|
||||
<terminal name="" type="Generic" uuid="{951d1e08-5f4d-4034-aecb-b6b8033d0dcf}" orientation="n" y="-45" x="-40"/>
|
||||
<terminal name="" type="Generic" uuid="{f28988c9-363c-4486-a22f-a5365a15da8a}" orientation="n" y="-45" x="-180"/>
|
||||
<terminal name="" type="Generic" uuid="{31805e67-1014-4ed3-83d0-6e15db99bbb7}" orientation="s" y="-14" x="-220"/>
|
||||
<terminal name="" type="Generic" uuid="{bdb67495-8137-4c88-9986-671070320ce6}" orientation="n" y="-45" x="0"/>
|
||||
<terminal name="" type="Generic" uuid="{434fcf9a-7e51-481d-a6c7-9269d6d99b29}" orientation="s" y="-14" x="-100"/>
|
||||
<terminal name="" type="Generic" uuid="{7fede45b-d5cf-468a-9cca-52aff95a1c78}" orientation="s" y="-14" x="80"/>
|
||||
<terminal name="" type="Generic" uuid="{c7897fc8-739e-4c72-b524-a8d7ba6f2b6b}" orientation="n" y="-45" x="-60"/>
|
||||
<terminal name="" type="Generic" uuid="{bef0d722-d69f-4489-b8f1-2afb03de1784}" orientation="s" y="-14" x="220"/>
|
||||
<terminal name="" type="Generic" uuid="{9ae10c41-be73-4e99-9423-568ff93475fd}" orientation="n" y="-45" x="-200"/>
|
||||
<terminal name="" type="Generic" uuid="{8a60a879-ccf3-4c21-a0ab-3a2ae2d01dbe}" orientation="n" y="-45" x="200"/>
|
||||
<terminal name="" type="Generic" uuid="{24426091-f2ec-4154-aba3-6bdaec485c4f}" orientation="n" y="-45" x="20"/>
|
||||
<terminal name="" type="Generic" uuid="{ba1e41da-e37c-4f54-8237-618421d1e344}" orientation="s" y="-14" x="0"/>
|
||||
<terminal name="" type="Generic" uuid="{b28694f6-eac6-4eb9-9c3c-ed0cc49328e6}" orientation="n" y="-45" x="40"/>
|
||||
<terminal name="" type="Generic" uuid="{2481d2c4-d913-4d55-a48a-20eef116dc46}" orientation="s" y="-14" x="-120"/>
|
||||
<terminal name="" type="Generic" uuid="{1e6a6de8-1126-4ec0-a8dc-833a14913da6}" orientation="n" y="-45" x="-20"/>
|
||||
<terminal name="" type="Generic" uuid="{24d3c3fe-8549-4e16-b8b3-dc2fa1675be6}" orientation="n" y="-45" x="80"/>
|
||||
<terminal name="" type="Generic" uuid="{5dbff03f-b71c-4f41-81e4-5093fafce82f}" orientation="s" y="-14" x="160"/>
|
||||
<terminal name="" type="Generic" uuid="{da4a5bbe-5aa7-4493-99b6-e87b73d6b858}" orientation="n" y="-45" x="-80"/>
|
||||
<terminal name="" type="Generic" uuid="{071a2b7e-4a5a-465a-b040-0e3579f36665}" orientation="s" y="-14" x="260"/>
|
||||
<terminal name="" type="Generic" uuid="{fe47517f-462b-4a9a-a2c3-ae756dbfefe8}" orientation="n" y="-45" x="140"/>
|
||||
<terminal name="" type="Generic" uuid="{1f24bdb1-cc99-4d89-8d89-8e104aaf498e}" orientation="n" y="-45" x="220"/>
|
||||
<terminal name="" type="Generic" uuid="{2738bb7b-c6be-4aa4-81c9-31e4e457cf31}" orientation="s" y="-14" x="-240"/>
|
||||
<terminal name="" type="Generic" uuid="{4d909e53-50b1-4b45-b8c3-262038f6c247}" orientation="n" y="-45" x="160"/>
|
||||
<terminal name="" type="Generic" uuid="{0e87f452-86a3-45ef-a66b-8ed92e08899d}" orientation="n" y="-45" x="180"/>
|
||||
<terminal name="" type="Generic" uuid="{1c6e1ab1-d98f-4322-bc2b-def58fefbea7}" orientation="s" y="-14" x="40"/>
|
||||
<terminal name="" type="Generic" uuid="{1f0b7ff5-9f52-4517-b749-018b5bfa59dd}" orientation="n" y="-45" x="240"/>
|
||||
<terminal name="" type="Generic" uuid="{8adac905-77b9-471f-8822-4ac63d3f6cf6}" orientation="s" y="-14" x="140"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,48 @@
|
||||
<definition link_type="master" type="element" width="90" hotspot_x="38" height="60" hotspot_y="31" version="0.90">
|
||||
<uuid uuid="{8b2d30dd-7f82-44d8-a960-b02477894f56}"/>
|
||||
<names>
|
||||
<name lang="en">Eaton Miniatur circuit breaker (over current switch) 40A tripping characteristic C 3-poles</name>
|
||||
<name lang="de">Eaton Leitungsschutzschalter 40A Charakteristik 3-polig</name>
|
||||
<name lang="fr">Eaton Disjoncteur courant nominal 40A caractéristique C tripolaire</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="type">protection</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<text color="#000000" x="42" y="18" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="6"/>
|
||||
<text color="#000000" x="22" y="18" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="4"/>
|
||||
<text color="#000000" x="-34" y="-13" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="40A(C)"/>
|
||||
<polygon closed="false" y1="-10" x2="20" y2="10" y3="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="15" x3="20" antialias="true"/>
|
||||
<text color="#000000" x="2" y="18" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="2"/>
|
||||
<polygon closed="false" y1="-10" x2="40" y2="10" y3="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="35" x3="40" antialias="true"/>
|
||||
<line y1="-20" x2="40" y2="-12" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="40" length2="1.5" antialias="false"/>
|
||||
<line y1="-20" x2="20" y2="-12" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="20" length2="1.5" antialias="false"/>
|
||||
<polygon closed="false" y1="-10" x2="0" y2="10" y3="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-5" x3="0" antialias="true"/>
|
||||
<text color="#000000" x="22" y="-15" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="3"/>
|
||||
<dynamic_text text_from="ElementInfo" keep_visual_rotation="false" x="-53" Halignment="AlignLeft" y="-10.5" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{aa381108-8b37-4b48-9519-772c63919211}" frame="false" Valignment="AlignTop" text_width="-1" z="11">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text color="#000000" x="42" y="-15" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="5"/>
|
||||
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" y6="-3" x3="7" y1="0" y7="-3" x8="16" y5="-2" y3="-5" x5="12" y2="-1" y8="-3" x4="11" x6="16" x7="16" x1="4" antialias="false" closed="false" y4="-6" x2="8"/>
|
||||
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" y6="-3" x3="27" y1="0" y7="-3" x8="36" y5="-2" y3="-5" x5="32" y2="-1" y8="-3" x4="31" x6="36" x7="36" x1="24" antialias="false" closed="false" y4="-6" x2="28"/>
|
||||
<line y1="-20" x2="0" y2="-12" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" length2="1.5" antialias="false"/>
|
||||
<line y1="5" x2="17" y2="2" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="5" length2="1.5" antialias="false"/>
|
||||
<text color="#000000" x="2" y="-15" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="1"/>
|
||||
<line y1="5" x2="37" y2="2" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="25" length2="1.5" antialias="false"/>
|
||||
<polygon y6="5.43882" y1="5.43882" x2="27.15" y2="2.97827" y5="5.43882" y3="5.84891" y4="5.43882" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="24" x5="24" x3="28.05" antialias="false" x4="24" x6="24"/>
|
||||
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" y6="-3" x3="-13" y1="0" y7="-3" x8="-4" y5="-2" y3="-5" x5="-8" y2="-1" y8="-3" x4="-9" x6="-4" x7="-4" x1="-16" antialias="false" closed="false" y4="-6" x2="-12"/>
|
||||
<polygon y6="5.43882" y1="5.43882" x2="7.15" y2="2.97827" y5="5.43882" y3="5.84891" y4="5.43882" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="4" x5="4" x3="8.05" antialias="false" x4="4" x6="4"/>
|
||||
<line y1="5" x2="-3" y2="2" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-15" length2="1.5" antialias="false"/>
|
||||
<polygon y6="5.43882" y1="5.43882" x2="-12.85" y2="2.97827" y5="5.43882" y3="5.84891" y4="5.43882" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="-16" x5="-16" x3="-11.95" antialias="false" x4="-16" x6="-16"/>
|
||||
<terminal x="0" y="-20" name="" type="Generic" uuid="{36408992-60ec-458f-aaf2-9fad8364dc71}" orientation="n"/>
|
||||
<terminal x="0" y="20" name="" type="Generic" uuid="{562cbd97-4eb7-4a48-8569-1900c40f6f33}" orientation="s"/>
|
||||
<terminal x="20" y="-20" name="" type="Generic" uuid="{321002bd-3d35-4ace-91ba-11a70518ba2e}" orientation="n"/>
|
||||
<terminal x="20" y="20" name="" type="Generic" uuid="{f63ae886-88fe-422f-97e5-377eaff6fb15}" orientation="s"/>
|
||||
<terminal x="40" y="-20" name="" type="Generic" uuid="{375e238f-46f3-4ef0-849d-671065de9946}" orientation="n"/>
|
||||
<terminal x="40" y="20" name="" type="Generic" uuid="{293d4501-6953-4355-a532-4d968b01d705}" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,19 +1,28 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="de">Spulen</name>
|
||||
<name lang="ru">Катушки</name>
|
||||
<name lang="en">Coils</name>
|
||||
<name lang="fr">Bobines</name>
|
||||
<name lang="ar">ملفات</name>
|
||||
<name lang="es">Bobinas</name>
|
||||
<name lang="cs">Cívky</name>
|
||||
<name lang="pt">Bobines</name>
|
||||
<name lang="pl">Cewki</name>
|
||||
<name lang="it">Bobine</name>
|
||||
<name lang="el">Πηνία</name>
|
||||
<name lang="nl">Spoelen</name>
|
||||
<name lang="be">Spoelen</name>
|
||||
<name lang="da">Spoler</name>
|
||||
<name lang="hu">Tekercsek/relék</name>
|
||||
<name lang="ar">لفه</name>
|
||||
<name lang="ca">bobina</name>
|
||||
<name lang="cs">cívka</name>
|
||||
<name lang="da">spole</name>
|
||||
<name lang="de">Spule</name>
|
||||
<name lang="el">σπείρα</name>
|
||||
<name lang="en">coil</name>
|
||||
<name lang="es">bobina</name>
|
||||
<name lang="fr">bobine</name>
|
||||
<name lang="hr">zavojnica</name>
|
||||
<name lang="hu">tekercs</name>
|
||||
<name lang="it">bobina</name>
|
||||
<name lang="ja">コイル</name>
|
||||
<name lang="mn">ороомог</name>
|
||||
<name lang="nb">Spole</name>
|
||||
<name lang="nl">spoel</name>
|
||||
<name lang="pl">cewka</name>
|
||||
<name lang="pt">bobina</name>
|
||||
<name lang="pt_br">bobina</name>
|
||||
<name lang="ro">bobina</name>
|
||||
<name lang="ru">катушка</name>
|
||||
<name lang="sl">tuljava</name>
|
||||
<name lang="sr">калем</name>
|
||||
<name lang="tr">bobin</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
|
||||
@@ -1,17 +1,28 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="ar">ملامسات</name>
|
||||
<name lang="ar">جهات الاتصال</name>
|
||||
<name lang="ca">Contactes</name>
|
||||
<name lang="cs">Kontakty</name>
|
||||
<name lang="da">Kontaktpersoner</name>
|
||||
<name lang="de">Kontakte</name>
|
||||
<name lang="ru">Контакты</name>
|
||||
<name lang="pt">Contactos</name>
|
||||
<name lang="el">Επαφές</name>
|
||||
<name lang="en">Contacts</name>
|
||||
<name lang="it">Contatti</name>
|
||||
<name lang="fr">Contacts</name>
|
||||
<name lang="pl">Zestyki</name>
|
||||
<name lang="es">Contactos</name>
|
||||
<name lang="cs">Kontakty</name>
|
||||
<name lang="fr">Contacts</name>
|
||||
<name lang="hr">Kontakti</name>
|
||||
<name lang="hu">Kapcsolatok</name>
|
||||
<name lang="it">Contatti</name>
|
||||
<name lang="ja">連絡先</name>
|
||||
<name lang="mn">Харилцагчид</name>
|
||||
<name lang="nb">Kontakter</name>
|
||||
<name lang="nl">Contacten</name>
|
||||
<name lang="da">Kontakter</name>
|
||||
<name lang="pl">Łączność</name>
|
||||
<name lang="pt">Contatos</name>
|
||||
<name lang="pt_br">Contatos</name>
|
||||
<name lang="ro">Contacte</name>
|
||||
<name lang="ru">Контакты</name>
|
||||
<name lang="sl">Stiki</name>
|
||||
<name lang="sr">Контакти</name>
|
||||
<name lang="tr">Kişiler</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
|
||||
@@ -0,0 +1,87 @@
|
||||
<definition version="0.90" height="130" link_type="simple" hotspot_x="64" width="130" hotspot_y="104" type="element">
|
||||
<uuid uuid="{ea067570-eb79-4bc4-b8a5-df2e407c3e5b}"/>
|
||||
<names>
|
||||
<name lang="hu">Aszinkron motor, három fázisú Dahlander 12 kivezetéssel</name>
|
||||
<name lang="en">Induction motor, three-phase Dahlander 12 terminlas</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<dynamic_text x="35" y="-100" text_from="ElementInfo" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="1" rotation="0" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{85d13847-ffd6-492f-a899-bbcd1838b094}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="-55" y="-30" text="V6" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-55" y="-10" text="W6" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="45" y="-30" text="V5" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-55" y="-51" text="U6" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="1" y="13" text="V2" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="45" y="-10" text="W5" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="1" y="-85" text="V1" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="44" y="-51" text="U5" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="21" y="-85" text="W1" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="21" y="13" text="W2" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-6" y="-46" text="M" rotation="0" font="Sans Serif,11,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-11" y="-26" text="3" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-19" y="13" text="U2" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<arc x="-3" y="-32.5" height="5" start="4" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" angle="175.938"/>
|
||||
<arc x="3" y="-32.5" height="5" start="0" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" angle="-180"/>
|
||||
<circle x="-40" y="-80" diameter="80" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" y1="-100" x2="0" end1="none" y2="-80" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="-20" y1="-100" x2="-20" end1="none" y2="-75" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<dynamic_text x="-110" y="-106" text_from="UserText" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="19" rotation="0" frame="false" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" uuid="{21e1fe19-235c-40af-82bc-ef144cd7e49f}" Halignment="AlignLeft">
|
||||
<text>-</text>
|
||||
</dynamic_text>
|
||||
<line x1="20" y1="-100" x2="20" end1="none" y2="-75" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<dynamic_text x="-110" y="-92" text_from="UserText" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="20" rotation="0" frame="false" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" uuid="{45e4a7d3-7e61-4e8f-b30b-3e5b1ee5da91}" Halignment="AlignLeft">
|
||||
<text>-</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-111" y="3" text_from="UserText" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="20" rotation="0" frame="false" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" uuid="{45e4a7d3-7e61-4e8f-b30b-3e5b1ee5da91}" Halignment="AlignLeft">
|
||||
<text>-</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-111" y="18" text_from="UserText" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="21" rotation="0" frame="false" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" uuid="{30a84d42-6cd5-49f0-9d0b-e6472e193987}" Halignment="AlignLeft">
|
||||
<text>-</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-111" y="-12" text_from="UserText" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="21" rotation="0" frame="false" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" uuid="{30a84d42-6cd5-49f0-9d0b-e6472e193987}" Halignment="AlignLeft">
|
||||
<text>-</text>
|
||||
</dynamic_text>
|
||||
<line x1="0" y1="20" x2="0" end1="none" y2="0" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="-20" y1="20" x2="-20" end1="none" y2="-5" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="20" y1="20" x2="20" end1="none" y2="-5" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<arc x="-42" y="-82" height="84" start="305" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" width="84" angle="15"/>
|
||||
<text x="-20" y="-12" text="Dahlander" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<line x1="33" y1="-6" x2="29" end1="none" y2="-9" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<text x="-19" y="-85" text="U1" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<line x1="59" y1="-60" x2="35" end1="none" y2="-60" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="59" y1="-40" x2="41" end1="none" y2="-40" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="60" y1="-20" x2="35" end1="none" y2="-20" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="-60" y1="-60" x2="-35" end1="none" y2="-60" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="-60" y1="-40" x2="-40" end1="none" y2="-40" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="-60" y1="-20" x2="-35" end1="none" y2="-20" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<terminal x="37" y="-6" orientation="e" name="" uuid="{9509ccb1-6da8-4ab3-b2dc-8ddd39600d54}" type="Generic"/>
|
||||
<terminal x="-20" y="20" orientation="s" name="" uuid="{7ba4fc29-79c4-4b65-a424-7001350b985b}" type="Generic"/>
|
||||
<terminal x="20" y="-100" orientation="n" name="" uuid="{a28d6200-e1c1-48bc-b9da-27bcd2e3e1b1}" type="Generic"/>
|
||||
<terminal x="60" y="-60" orientation="e" name="" uuid="{3df6e487-9116-457d-a0c0-a7d9ee2ac288}" type="Generic"/>
|
||||
<terminal x="60" y="-40" orientation="e" name="" uuid="{ad940221-39e1-4e80-9f8c-5839dc6df8f9}" type="Generic"/>
|
||||
<terminal x="0" y="-100" orientation="n" name="" uuid="{bc11bbdc-6191-4f8b-9448-0967c8a6b1b7}" type="Generic"/>
|
||||
<terminal x="60" y="-20" orientation="e" name="" uuid="{4189f356-813c-4cca-b347-67c436d33b6e}" type="Generic"/>
|
||||
<terminal x="0" y="20" orientation="s" name="" uuid="{34e79b3d-8f25-47a3-8512-7c7a5b290e33}" type="Generic"/>
|
||||
<terminal x="20" y="20" orientation="s" name="" uuid="{3bbf4f38-724d-4025-b555-d3fbecf1c5cf}" type="Generic"/>
|
||||
<terminal x="-20" y="-100" orientation="n" name="" uuid="{51f6f9e9-4729-4baa-bf4d-d934c964cd40}" type="Generic"/>
|
||||
<terminal x="-60" y="-60" orientation="w" name="" uuid="{d76024c7-eb9f-4c4b-8c57-5cc7c03db32a}" type="Generic"/>
|
||||
<terminal x="-60" y="-20" orientation="w" name="" uuid="{7a24203d-53b4-4f2a-b766-2e001966b367}" type="Generic"/>
|
||||
<terminal x="-60" y="-40" orientation="w" name="" uuid="{ed4cb012-8de6-43d0-a36b-8f8e21e51c88}" type="Generic"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,73 @@
|
||||
<definition type="element" width="90" height="130" hotspot_y="104" link_type="simple" hotspot_x="43" version="0.90">
|
||||
<uuid uuid="{4b06f454-8986-479e-8ada-e367def45e12}"/>
|
||||
<names>
|
||||
<name lang="en">Induction motor, three-phase Dahlander 6 terminals</name>
|
||||
<name lang="hu">Aszinkron motor, három fázisú Dahlander 6 kivezetéssel</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" Halignment="AlignLeft" y="-100" text_from="ElementInfo" z="1" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="35" frame="false" uuid="{85d13847-ffd6-492f-a899-bbcd1838b094}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="13" x="1" text="V2" color="#000000"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-85" x="1" text="V1" color="#000000"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-85" x="21" text="W1" color="#000000"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="13" x="21" text="W2" color="#000000"/>
|
||||
<text font="Sans Serif,11,-1,5,50,0,0,0,0,0" rotation="0" y="-46" x="-6" text="M" color="#000000"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-26" x="-11" text="3" color="#000000"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="13" x="-19" text="U2" color="#000000"/>
|
||||
<arc width="6" height="5" antialias="true" start="4" y="-32.5" angle="175.938" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-3"/>
|
||||
<arc width="6" height="5" antialias="true" start="0" y="-32.5" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" x="3"/>
|
||||
<circle diameter="80" antialias="false" y="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-40"/>
|
||||
<line end1="none" antialias="false" x1="0" x2="0" y2="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-100" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="-20" x2="-20" y2="-75" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-100" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="20" x2="20" y2="-75" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-100" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="0" x2="0" y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="20" end2="none"/>
|
||||
<dynamic_text font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" rotation="0" Halignment="AlignLeft" y="-90" text_from="ElementInfo" z="15" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="-115" frame="false" uuid="{1387fb5d-797d-4af0-86a2-45b54d5fb49c}">
|
||||
<text></text>
|
||||
</dynamic_text>
|
||||
<line end1="none" antialias="false" x1="-20" x2="-20" y2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="20" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="20" x2="20" y2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="20" end2="none"/>
|
||||
<arc width="84" height="84" antialias="true" start="315" y="-82" angle="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-42"/>
|
||||
<dynamic_text font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" rotation="0" Halignment="AlignLeft" y="-71" text_from="UserText" z="19" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="-121" frame="false" uuid="{21e1fe19-235c-40af-82bc-ef144cd7e49f}">
|
||||
<text>P= kW</text>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-12" x="-20" text="Dahlander" color="#000000"/>
|
||||
<dynamic_text font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" rotation="0" Halignment="AlignLeft" y="-26" text_from="UserText" z="20" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="-121" frame="false" uuid="{45e4a7d3-7e61-4e8f-b30b-3e5b1ee5da91}">
|
||||
<text>I1= A</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" rotation="0" Halignment="AlignLeft" y="-56" text_from="UserText" z="20" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="-121" frame="false" uuid="{45e4a7d3-7e61-4e8f-b30b-3e5b1ee5da91}">
|
||||
<text>n1= 1/min</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" rotation="0" Halignment="AlignLeft" y="-11" text_from="UserText" z="21" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="-121" frame="false" uuid="{30a84d42-6cd5-49f0-9d0b-e6472e193987}">
|
||||
<text>I2= A</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" rotation="0" Halignment="AlignLeft" y="-41" text_from="UserText" z="21" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="-121" frame="false" uuid="{30a84d42-6cd5-49f0-9d0b-e6472e193987}">
|
||||
<text>n2= 1/min</text>
|
||||
</dynamic_text>
|
||||
<line end1="none" antialias="false" x1="38" x2="34" y2="-14" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-11" end2="none"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-85" x="-19" text="U1" color="#000000"/>
|
||||
<terminal name="" type="Generic" y="20" orientation="s" x="0" uuid="{5078f375-7693-4c30-b713-126b246a7a42}"/>
|
||||
<terminal name="" type="Generic" y="-100" orientation="n" x="20" uuid="{363db221-af70-40c4-818e-944117d57249}"/>
|
||||
<terminal name="" type="Generic" y="20" orientation="s" x="20" uuid="{87e981fe-1c86-4326-82e3-26acb42f7203}"/>
|
||||
<terminal name="" type="Generic" y="-11" orientation="e" x="42" uuid="{f399b92a-152e-4769-841d-256df58206d4}"/>
|
||||
<terminal name="" type="Generic" y="-100" orientation="n" x="-20" uuid="{8305f58e-da2c-48c9-8b3e-8bf784cd23bb}"/>
|
||||
<terminal name="" type="Generic" y="-100" orientation="n" x="0" uuid="{2010127a-e6c7-42f2-aae6-532515d0af85}"/>
|
||||
<terminal name="" type="Generic" y="20" orientation="s" x="-20" uuid="{cac47b39-be45-4522-82a7-833921ff78f2}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,69 @@
|
||||
<definition version="0.90" height="130" link_type="simple" hotspot_x="44" width="110" hotspot_y="104" type="element">
|
||||
<uuid uuid="{a16a86d8-6dff-49b1-b9c6-625a7c7a35de}"/>
|
||||
<names>
|
||||
<name lang="hu">Aszinkron motor, három fázisú Dahlander 9 kivezetéssel</name>
|
||||
<name lang="en">Induction motor, three-phase Dahlander 9 terminals</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<dynamic_text x="35" y="-100" text_from="ElementInfo" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="1" rotation="0" frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{85d13847-ffd6-492f-a899-bbcd1838b094}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="45" y="-30" text="V5" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="1" y="13" text="V2" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="43" y="-10" text="W5" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="1" y="-85" text="V1" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="44" y="-51" text="U5" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="21" y="-85" text="W1" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="21" y="13" text="W2" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-6" y="-46" text="M" rotation="0" font="Sans Serif,11,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-11" y="-26" text="3" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-19" y="13" text="U2" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<arc x="-3" y="-32.5" height="5" start="4" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" angle="175.938"/>
|
||||
<arc x="3" y="-32.5" height="5" start="0" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" angle="-180"/>
|
||||
<circle x="-40" y="-80" diameter="80" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="0" y1="-100" x2="0" end1="none" y2="-80" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<dynamic_text x="-115" y="-90" text_from="ElementInfo" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="15" rotation="0" frame="false" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" uuid="{1387fb5d-797d-4af0-86a2-45b54d5fb49c}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
</dynamic_text>
|
||||
<line x1="-20" y1="-100" x2="-20" end1="none" y2="-75" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="20" y1="-100" x2="20" end1="none" y2="-75" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="0" y1="20" x2="0" end1="none" y2="0" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<dynamic_text x="-121" y="-70" text_from="UserText" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="19" rotation="0" frame="false" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" uuid="{21e1fe19-235c-40af-82bc-ef144cd7e49f}" Halignment="AlignLeft">
|
||||
<text>-</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-121" y="-26" text_from="UserText" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="20" rotation="0" frame="false" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" uuid="{45e4a7d3-7e61-4e8f-b30b-3e5b1ee5da91}" Halignment="AlignLeft">
|
||||
<text>-</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-121" y="-56" text_from="UserText" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="20" rotation="0" frame="false" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" uuid="{45e4a7d3-7e61-4e8f-b30b-3e5b1ee5da91}" Halignment="AlignLeft">
|
||||
<text>-</text>
|
||||
</dynamic_text>
|
||||
<line x1="-20" y1="20" x2="-20" end1="none" y2="-5" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<dynamic_text x="-121" y="-41" text_from="UserText" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="21" rotation="0" frame="false" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" uuid="{30a84d42-6cd5-49f0-9d0b-e6472e193987}" Halignment="AlignLeft">
|
||||
<text>-</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-121" y="-11" text_from="UserText" text_width="-1" Valignment="AlignTop" keep_visual_rotation="false" z="21" rotation="0" frame="false" font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" uuid="{30a84d42-6cd5-49f0-9d0b-e6472e193987}" Halignment="AlignLeft">
|
||||
<text>-</text>
|
||||
</dynamic_text>
|
||||
<line x1="20" y1="20" x2="20" end1="none" y2="-5" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<arc x="-42" y="-82" height="84" start="305" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" width="84" angle="15"/>
|
||||
<text x="-20" y="-12" text="Dahlander" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<line x1="33" y1="-6" x2="29" end1="none" y2="-9" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<text x="-19" y="-85" text="U1" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<line x1="59" y1="-60" x2="35" end1="none" y2="-60" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="59" y1="-40" x2="41" end1="none" y2="-40" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<line x1="60" y1="-20" x2="35" end1="none" y2="-20" length2="1.5" antialias="false" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5"/>
|
||||
<terminal x="20" y="20" orientation="s" name="" uuid="{9756ac1d-ff84-4e3a-88e8-a81c1a1409aa}" type="Generic"/>
|
||||
<terminal x="37" y="-6" orientation="e" name="" uuid="{e2c4bb1d-b2a2-4d22-acdb-65605dad4b46}" type="Generic"/>
|
||||
<terminal x="-20" y="-100" orientation="n" name="" uuid="{b988e71c-9caf-4167-926d-e4f148c6a33a}" type="Generic"/>
|
||||
<terminal x="-20" y="20" orientation="s" name="" uuid="{89af7d53-79c6-4a5a-9752-f5bc20570754}" type="Generic"/>
|
||||
<terminal x="0" y="20" orientation="s" name="" uuid="{0c679c8e-d9f9-4976-ae69-974c5818cf85}" type="Generic"/>
|
||||
<terminal x="0" y="-100" orientation="n" name="" uuid="{5558307f-e2a4-4c7e-a3f4-ae89189c1098}" type="Generic"/>
|
||||
<terminal x="20" y="-100" orientation="n" name="" uuid="{f392fca0-68dd-4f9a-8b43-48d63a2167e8}" type="Generic"/>
|
||||
<terminal x="60" y="-60" orientation="e" name="" uuid="{ffc4d17e-7cfc-4c03-a304-449431936e0f}" type="Generic"/>
|
||||
<terminal x="60" y="-20" orientation="e" name="" uuid="{e5222476-0916-4af6-b947-0facb7bdf37d}" type="Generic"/>
|
||||
<terminal x="60" y="-40" orientation="e" name="" uuid="{293dc3a4-f996-4e26-85ec-114f022e9482}" type="Generic"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,72 @@
|
||||
<definition type="element" width="90" height="130" hotspot_y="104" link_type="simple" hotspot_x="43" version="0.90">
|
||||
<uuid uuid="{69fd3ba0-af14-4b69-8ae5-36dedcb0533a}"/>
|
||||
<names>
|
||||
<name lang="en">Induction motor, three-phase 6 terminals</name>
|
||||
<name lang="hu">Aszinkron motor, három fázisú 6 kivezetéssel</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" Halignment="AlignLeft" y="-100" text_from="ElementInfo" z="1" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="35" frame="false" uuid="{85d13847-ffd6-492f-a899-bbcd1838b094}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="13" x="1" text="V2" color="#000000"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-85" x="1" text="V1" color="#000000"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-85" x="21" text="W1" color="#000000"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="13" x="21" text="W2" color="#000000"/>
|
||||
<text font="Sans Serif,14,-1,5,50,0,0,0,0,0" rotation="0" y="-53" x="-7" text="M" color="#000000"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-40" x="-9" text="3" color="#000000"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="13" x="-19" text="U2" color="#000000"/>
|
||||
<arc width="6" height="5" antialias="true" start="4" y="-46.5" angle="175.938" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-1"/>
|
||||
<arc width="6" height="5" antialias="true" start="0" y="-46.5" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" x="5"/>
|
||||
<circle diameter="80" antialias="false" y="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-40"/>
|
||||
<line end1="none" antialias="false" x1="0" x2="0" y2="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-100" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="-20" x2="-20" y2="-75" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-100" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="20" x2="20" y2="-75" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-100" end2="none"/>
|
||||
<dynamic_text font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" rotation="0" Halignment="AlignLeft" y="-90" text_from="ElementInfo" z="15" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="-115" frame="false" uuid="{1387fb5d-797d-4af0-86a2-45b54d5fb49c}">
|
||||
<text></text>
|
||||
</dynamic_text>
|
||||
<line end1="none" antialias="false" x1="0" x2="0" y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="20" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="-20" x2="-20" y2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="20" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="20" x2="20" y2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="20" end2="none"/>
|
||||
<dynamic_text font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" rotation="0" Halignment="AlignLeft" y="-71" text_from="UserText" z="19" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="-121" frame="false" uuid="{21e1fe19-235c-40af-82bc-ef144cd7e49f}">
|
||||
<text>P= kW</text>
|
||||
</dynamic_text>
|
||||
<arc width="84" height="84" antialias="true" start="315" y="-82" angle="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-42"/>
|
||||
<dynamic_text font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" rotation="0" Halignment="AlignLeft" y="-41" text_from="UserText" z="20" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="-121" frame="false" uuid="{45e4a7d3-7e61-4e8f-b30b-3e5b1ee5da91}">
|
||||
<text>I= A</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="MS Shell Dlg 2,9,-1,5,50,0,0,0,0,0,Normál" rotation="0" Halignment="AlignLeft" y="-56" text_from="UserText" z="20" keep_visual_rotation="false" Valignment="AlignTop" text_width="-1" x="-121" frame="false" uuid="{45e4a7d3-7e61-4e8f-b30b-3e5b1ee5da91}">
|
||||
<text>n= 1/min</text>
|
||||
</dynamic_text>
|
||||
<line end1="none" antialias="false" x1="38" x2="34" y2="-14" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-11" end2="none"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-85" x="-19" text="U1" color="#000000"/>
|
||||
<line end1="none" antialias="false" x1="-12" x2="-7" y2="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-20" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="-7" x2="-2" y2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-15" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="-7" x2="-7" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-15" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="3" x2="-4" y2="-6" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-22" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="6" x2="1" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-20" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="1" x2="11" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-10" end2="none"/>
|
||||
<line end1="none" antialias="false" x1="6" x2="11" y2="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" length1="1.5" y1="-20" end2="none"/>
|
||||
<terminal name="" type="Generic" y="20" orientation="s" x="-20" uuid="{1913b634-e510-45a2-973f-37b0035f4e6d}"/>
|
||||
<terminal name="" type="Generic" y="20" orientation="s" x="20" uuid="{e08a297c-c954-4980-9007-3c202f1830c1}"/>
|
||||
<terminal name="" type="Generic" y="-100" orientation="n" x="-20" uuid="{8dc79ac8-54fe-49f8-b27f-923d54f26ec1}"/>
|
||||
<terminal name="" type="Generic" y="-100" orientation="n" x="20" uuid="{f6963c12-f5ce-4853-9086-5d47128edf29}"/>
|
||||
<terminal name="" type="Generic" y="-100" orientation="n" x="0" uuid="{4a040cbc-c053-4f90-9651-d0e1b92f4e94}"/>
|
||||
<terminal name="" type="Generic" y="-11" orientation="e" x="42" uuid="{a6fc691b-2902-4fba-ab53-fab1d26a1cb2}"/>
|
||||
<terminal name="" type="Generic" y="20" orientation="s" x="0" uuid="{82e351a1-9826-4637-9f69-feccf212f8d1}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,51 +0,0 @@
|
||||
<definition height="70" hotspot_y="34" link_type="simple" version="0.80" type="element" hotspot_x="15" width="30">
|
||||
<uuid uuid="{2a5fc5b8-3b61-4845-9994-4eecd7a7696d}"/>
|
||||
<names>
|
||||
<name lang="el">Αντίσταση 1/4w</name>
|
||||
<name lang="it">Resistenza</name>
|
||||
<name lang="cs">Rezistor 1/4W</name>
|
||||
<name lang="nl">Weerstand 1/4W</name>
|
||||
<name lang="pl">Rezystor 1/4W</name>
|
||||
<name lang="fr">Resistance 1/4w</name>
|
||||
<name lang="en">Resistor 1/4w </name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="description"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Arduino</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations>ezza</informations>
|
||||
<description>
|
||||
<line y2="0" y1="0" x2="8" end1="none" style="line-style:dotted;line-weight:thin;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" end2="none" x1="-6"/>
|
||||
<line y2="-6" y1="-6" x2="7" end1="none" style="line-style:dotted;line-weight:thin;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" end2="none" x1="-7"/>
|
||||
<polygon y2="-2" y1="-2" y5="-2" x2="9" x3="9" x4="-9" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-9" y4="2" y3="2" x5="-9"/>
|
||||
<polygon y2="-8" y1="-8" y5="-8" x2="9" x3="9" x4="-9" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-9" y4="-4" y3="-4" x5="-9"/>
|
||||
<arc height="10" x="-9" start="0" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" y="18.5" width="18"/>
|
||||
<arc height="10" x="-9" start="-180" angle="-180" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" y="-27.5" width="18"/>
|
||||
<rect height="4" rx="0" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="19" ry="0" width="20"/>
|
||||
<rect height="4" rx="0" x="-10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="-22" ry="0" width="20"/>
|
||||
<line y2="18" y1="-18" x2="-9" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" end2="none" x1="-9"/>
|
||||
<line y2="18" y1="-18" x2="9" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" end2="none" x1="9"/>
|
||||
<polygon y2="-14" y1="-14" y5="-14" x2="9" x3="9" x4="-9" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x1="-9" y4="-10" y3="-10" x5="-9"/>
|
||||
<line y2="-12" y1="-12" x2="7" end1="none" style="line-style:dotted;line-weight:thin;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" end2="none" x1="-7"/>
|
||||
<line y2="-28" y1="-30" x2="0" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" end2="none" x1="0"/>
|
||||
<line y2="29" y1="30" x2="0" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" length1="1.5" length2="1.5" end2="none" x1="0"/>
|
||||
<dynamic_text Valignment="AlignTop" x="-11" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text_width="-1" z="15" y="0.5" frame="false" text_from="UserText" Halignment="AlignLeft" rotation="0" uuid="{20fb02bc-93fc-4ec9-9e1b-b8757900c00b}">
|
||||
<text>12</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" x="-25" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" z="16" y="-36" frame="false" text_from="ElementInfo" Halignment="AlignLeft" rotation="0" uuid="{3126bee3-6c51-407a-8094-a0c42a4ce0d7}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal x="0" orientation="n" y="-30"/>
|
||||
<terminal x="0" orientation="s" y="30"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,65 +0,0 @@
|
||||
<definition height="130" version="0.80" width="100" hotspot_x="50" type="element" hotspot_y="75" link_type="simple">
|
||||
<uuid uuid="{ed13c43c-b6c4-4317-9545-47ac8386778e}"/>
|
||||
<names>
|
||||
<name lang="fr">Wemos D1 Mini</name>
|
||||
<name lang="cs">Wemos D1 Mini</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Arduino</elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text x="-34" text="D2" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="14" rotation="0" color="#000000"/>
|
||||
<text x="-34" text="D3" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="4" rotation="0" color="#000000"/>
|
||||
<text x="-34" text="D1" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="24" rotation="0" color="#000000"/>
|
||||
<text x="-34" text="Tx" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="44" rotation="0" color="#000000"/>
|
||||
<text x="-34" text="Rx" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="34" rotation="0" color="#000000"/>
|
||||
<text x="21" text="D6" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="4" rotation="0" color="#000000"/>
|
||||
<rect antialias="false" x="-16" height="30" rx="0" y="-70" width="32" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text x="-34" text="D4" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="-6" rotation="0" color="#000000"/>
|
||||
<text x="-34" text="GND" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="-16" rotation="0" color="#000000"/>
|
||||
<text x="-13" text="USB" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-47" rotation="0" color="#000000"/>
|
||||
<text x="16" text="RST" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="44" rotation="0" color="#000000"/>
|
||||
<text x="21" text="D5" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="14" rotation="0" color="#000000"/>
|
||||
<dynamic_text x="-28" font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="13" y="52" frame="false" text_from="ElementInfo" Valignment="AlignTop" rotation="0" text_width="-1" uuid="{3e7530d6-656b-4fa3-a498-4ed000369dcc}" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="22" text="A0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="34" rotation="0" color="#000000"/>
|
||||
<text x="-34" text="+5V" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="-26" rotation="0" color="#000000"/>
|
||||
<text x="21" text="D0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="24" rotation="0" color="#000000"/>
|
||||
<text x="21" text="D7" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="-6" rotation="0" color="#000000"/>
|
||||
<text x="21" text="D8" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="-16" rotation="0" color="#000000"/>
|
||||
<text x="5" text="+3.3V" font="Sans Serif,7,-1,5,50,0,0,0,0,0" y="-26" rotation="0" color="#000000"/>
|
||||
<rect antialias="false" x="-20" height="40" rx="0" y="-10" width="40" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<text x="-7" text="ESP
12F" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="8" rotation="0" color="#000000"/>
|
||||
<rect antialias="false" x="-45" height="110" rx="0" y="-60" width="90" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal x="-1" orientation="n" y="-65"/>
|
||||
<terminal x="-40" orientation="w" y="-30"/>
|
||||
<terminal x="-40" orientation="w" y="-20"/>
|
||||
<terminal x="-40" orientation="w" y="-10"/>
|
||||
<terminal x="-40" orientation="w" y="0"/>
|
||||
<terminal x="-40" orientation="w" y="10"/>
|
||||
<terminal x="-40" orientation="w" y="20"/>
|
||||
<terminal x="-40" orientation="w" y="30"/>
|
||||
<terminal x="-40" orientation="w" y="40"/>
|
||||
<terminal x="40" orientation="e" y="-30"/>
|
||||
<terminal x="40" orientation="e" y="-20"/>
|
||||
<terminal x="40" orientation="e" y="-10"/>
|
||||
<terminal x="40" orientation="e" y="0"/>
|
||||
<terminal x="40" orientation="e" y="10"/>
|
||||
<terminal x="40" orientation="e" y="20"/>
|
||||
<terminal x="40" orientation="e" y="30"/>
|
||||
<terminal x="40" orientation="e" y="40"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,42 @@
|
||||
<definition width="40" hotspot_x="19" type="element" hotspot_y="20" version="0.90" link_type="simple" height="50">
|
||||
<uuid uuid="{9892efa5-dc01-4050-9cae-b3caa18d0754}"/>
|
||||
<names>
|
||||
<name lang="ru">антенна</name>
|
||||
<name lang="pl">antena</name>
|
||||
<name lang="nb">antenne</name>
|
||||
<name lang="en">antenna</name>
|
||||
<name lang="sr">антена</name>
|
||||
<name lang="el">κεραία</name>
|
||||
<name lang="es">antena</name>
|
||||
<name lang="ja">アンテナ</name>
|
||||
<name lang="nl">antenne</name>
|
||||
<name lang="fr">antenne</name>
|
||||
<name lang="de">antenne</name>
|
||||
<name lang="ro">antenă</name>
|
||||
<name lang="it">antenna</name>
|
||||
<name lang="pt">antena</name>
|
||||
<name lang="cs">anténa</name>
|
||||
<name lang="ar">هوائي</name>
|
||||
<name lang="hr">antena</name>
|
||||
<name lang="da">antenne</name>
|
||||
<name lang="sl">anteno</name>
|
||||
<name lang="ca">antena</name>
|
||||
<name lang="tr">anten</name>
|
||||
<name lang="hu">antenna</name>
|
||||
<name lang="mn">антенн</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Baboune41</informations>
|
||||
<description>
|
||||
<dynamic_text y="-38" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="false" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="1" rotation="0" Valignment="AlignTop" uuid="{98559de6-2876-4d41-9b76-2d1389415264}" Halignment="AlignLeft" x="-11">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<ellipse width="27" y="-13" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-13.5" height="14"/>
|
||||
<ellipse width="27" y="-14" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-13.5" height="14"/>
|
||||
<line end1="none" x1="-13.4969" length2="1.5" length1="1.5" antialias="false" y1="-6.4537" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="13.5031" y2="-6.45988"/>
|
||||
<line end1="none" x1="-0.0216049" length2="1.5" length1="1.5" antialias="false" y1="-6.41049" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="-0.0216049" y2="4.58951"/>
|
||||
<polygon x1="-10" y3="23" closed="false" antialias="false" y1="3" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="10" y2="3" x3="10"/>
|
||||
<terminal y="8" type="Generic" orientation="s" uuid="{1c76ed62-39d8-497d-ad03-da538d3a6ec6}" x="0" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,42 @@
|
||||
<definition width="40" hotspot_x="19" type="element" hotspot_y="20" version="0.90" link_type="simple" height="50">
|
||||
<uuid uuid="{ef27d13e-dbb3-4ea1-8493-0f14d4fb2431}"/>
|
||||
<names>
|
||||
<name lang="ru">антенна</name>
|
||||
<name lang="pl">antena</name>
|
||||
<name lang="nb">antenne</name>
|
||||
<name lang="sr">антена</name>
|
||||
<name lang="en">antenna</name>
|
||||
<name lang="el">κεραία</name>
|
||||
<name lang="es">antena</name>
|
||||
<name lang="ja">アンテナ</name>
|
||||
<name lang="nl">antenne</name>
|
||||
<name lang="fr">antenne</name>
|
||||
<name lang="ro">antenă</name>
|
||||
<name lang="de">antenne</name>
|
||||
<name lang="pt">antena</name>
|
||||
<name lang="it">antenna</name>
|
||||
<name lang="cs">anténa</name>
|
||||
<name lang="ar">هوائي</name>
|
||||
<name lang="hr">antena</name>
|
||||
<name lang="da">antenne</name>
|
||||
<name lang="sl">anteno</name>
|
||||
<name lang="ca">antena</name>
|
||||
<name lang="tr">anten</name>
|
||||
<name lang="hu">antenna</name>
|
||||
<name lang="mn">антенн</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Baboune41</informations>
|
||||
<description>
|
||||
<dynamic_text y="-38" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="false" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="1" rotation="0" Valignment="AlignTop" uuid="{98559de6-2876-4d41-9b76-2d1389415264}" Halignment="AlignLeft" x="-11">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<ellipse width="27" y="-13" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-13.5" height="14"/>
|
||||
<ellipse width="27" y="-14" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-13.5" height="14"/>
|
||||
<line end1="none" x1="-13.4969" length2="1.5" length1="1.5" antialias="false" y1="-6.4537" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="13.5031" y2="-6.45988"/>
|
||||
<line end1="none" x1="-0.0216049" length2="1.5" length1="1.5" antialias="false" y1="-6.41049" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="-0.0216049" y2="4.58951"/>
|
||||
<polygon x1="10" y3="23" closed="false" antialias="false" y1="3" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-10" y2="3" x3="-10"/>
|
||||
<terminal y="8" type="Generic" orientation="s" uuid="{1c76ed62-39d8-497d-ad03-da538d3a6ec6}" x="0" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,44 @@
|
||||
<definition width="30" hotspot_x="15" type="element" hotspot_y="20" version="0.90" link_type="simple" height="50">
|
||||
<uuid uuid="{e4454adb-21f3-4d77-a554-9f727eb916bb}"/>
|
||||
<names>
|
||||
<name lang="ru">антенна</name>
|
||||
<name lang="pl">antena</name>
|
||||
<name lang="nb">antenne</name>
|
||||
<name lang="sr">антена</name>
|
||||
<name lang="en">antenna</name>
|
||||
<name lang="el">κεραία</name>
|
||||
<name lang="es">antena</name>
|
||||
<name lang="ja">アンテナ</name>
|
||||
<name lang="nl">antenne</name>
|
||||
<name lang="fr">antenne</name>
|
||||
<name lang="ro">antenă</name>
|
||||
<name lang="de">antenne</name>
|
||||
<name lang="pt">antena</name>
|
||||
<name lang="it">antenna</name>
|
||||
<name lang="cs">anténa</name>
|
||||
<name lang="ar">هوائي</name>
|
||||
<name lang="hr">antena</name>
|
||||
<name lang="da">antenne</name>
|
||||
<name lang="sl">anteno</name>
|
||||
<name lang="ca">antena</name>
|
||||
<name lang="tr">anten</name>
|
||||
<name lang="hu">antenna</name>
|
||||
<name lang="mn">антенн</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Baboune41</informations>
|
||||
<description>
|
||||
<dynamic_text y="-38" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="false" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="1" rotation="0" Valignment="AlignTop" uuid="{98559de6-2876-4d41-9b76-2d1389415264}" Halignment="AlignLeft" x="-11">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<ellipse width="12" y="-2" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-6" height="4"/>
|
||||
<line end1="none" x1="-4.99373" length2="1.5" length1="1.5" antialias="false" y1="-10.0797" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="-5.99805" y2="-0.0090332"/>
|
||||
<ellipse width="10" y="-12" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-5" height="4"/>
|
||||
<line end1="none" x1="0" length2="1.5" length1="1.5" antialias="false" y1="3" style="line-style:normal;line-weight:hight;filling:none;color:black" end2="none" x2="0" y2="5"/>
|
||||
<line end1="none" x1="4.98663" length2="1.5" length1="1.5" antialias="false" y1="-10.1636" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="6" y2="0"/>
|
||||
<polygon x1="-10" y3="23" closed="false" antialias="false" y1="3" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="10" y2="3" x3="10"/>
|
||||
<arc y="-14" width="10" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-5" height="8" angle="180.313" start="358.438"/>
|
||||
<terminal y="10" type="Generic" orientation="s" uuid="{1c76ed62-39d8-497d-ad03-da538d3a6ec6}" x="0" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,44 @@
|
||||
<definition width="30" hotspot_x="15" type="element" hotspot_y="20" version="0.90" link_type="simple" height="50">
|
||||
<uuid uuid="{dcf0db93-55cc-448d-9747-c23044ffba0d}"/>
|
||||
<names>
|
||||
<name lang="ru">антенна</name>
|
||||
<name lang="pl">antena</name>
|
||||
<name lang="nb">antenne</name>
|
||||
<name lang="sr">антена</name>
|
||||
<name lang="en">antenna</name>
|
||||
<name lang="el">κεραία</name>
|
||||
<name lang="es">antena</name>
|
||||
<name lang="ja">アンテナ</name>
|
||||
<name lang="nl">antenne</name>
|
||||
<name lang="fr">antenne</name>
|
||||
<name lang="ro">antenă</name>
|
||||
<name lang="de">antenne</name>
|
||||
<name lang="pt">antena</name>
|
||||
<name lang="it">antenna</name>
|
||||
<name lang="cs">anténa</name>
|
||||
<name lang="ar">هوائي</name>
|
||||
<name lang="hr">antena</name>
|
||||
<name lang="da">antenne</name>
|
||||
<name lang="sl">anteno</name>
|
||||
<name lang="ca">antena</name>
|
||||
<name lang="tr">anten</name>
|
||||
<name lang="hu">antenna</name>
|
||||
<name lang="mn">антенн</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Baboune41</informations>
|
||||
<description>
|
||||
<dynamic_text y="-38" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="false" font="Sans Serif,7,-1,5,50,0,0,0,0,0" z="1" rotation="0" Valignment="AlignTop" uuid="{98559de6-2876-4d41-9b76-2d1389415264}" Halignment="AlignLeft" x="-11">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<ellipse width="12" y="-2" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-6" height="4"/>
|
||||
<line end1="none" x1="-4.99373" length2="1.5" length1="1.5" antialias="false" y1="-10.0797" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="-5.99805" y2="-0.0090332"/>
|
||||
<ellipse width="10" y="-12" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-5" height="4"/>
|
||||
<line end1="none" x1="0" length2="1.5" length1="1.5" antialias="false" y1="3" style="line-style:normal;line-weight:hight;filling:none;color:black" end2="none" x2="0" y2="5"/>
|
||||
<line end1="none" x1="4.98663" length2="1.5" length1="1.5" antialias="false" y1="-10.1636" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="6" y2="0"/>
|
||||
<polygon x1="10" y3="23" closed="false" antialias="false" y1="3" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-10" y2="3" x3="-10"/>
|
||||
<arc y="-14" width="10" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-5" height="8" angle="180.313" start="358.438"/>
|
||||
<terminal y="10" type="Generic" orientation="s" uuid="{1c76ed62-39d8-497d-ad03-da538d3a6ec6}" x="0" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,135 @@
|
||||
<definition width="120" hotspot_x="35" type="element" hotspot_y="206" version="0.90" link_type="simple" height="330">
|
||||
<uuid uuid="{1e86eb72-1527-48e4-b79e-1b220c367cb0}"/>
|
||||
<names>
|
||||
<name lang="en">cosy_EC61330</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="description">cosy_EC61330</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<rect y="-175" width="100" rx="0" ry="0" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:gray" x="-25" height="30"/>
|
||||
<line end1="none" x1="57" length2="1.5" length1="1.5" antialias="false" y1="39" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="57" y2="40"/>
|
||||
<polygon x1="1" y3="111" y4="106" closed="false" x4="-9" antialias="false" y1="106" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="1" y2="111" x3="-9"/>
|
||||
<text y="-119" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="2" x="20"/>
|
||||
<circle y="-136" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="4" x="-18"/>
|
||||
<rect y="30" width="90" rx="0" ry="0" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:gray" x="-20" height="20"/>
|
||||
<circle y="32.5" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="3" x="42.5"/>
|
||||
<rect y="60" width="8" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-8" height="50"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="PWR" x="18"/>
|
||||
<arc y="67" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O-" x="-22"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="6" height="1"/>
|
||||
<arc y="97" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<dynamic_text y="-220" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" z="13" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-30">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<arc y="77" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<text y="110" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="270" text="EC61330" x="70"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-4" height="1"/>
|
||||
<arc y="107" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="14" height="10"/>
|
||||
<text y="-119" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="1" x="31"/>
|
||||
<polygon x1="-21" y3="83" y4="83" closed="false" x4="-21" antialias="false" y1="77" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="77" x3="-30"/>
|
||||
<polygon x1="-21" y3="73" y4="73" closed="false" x4="-21" antialias="false" y1="67" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="67" x3="-30"/>
|
||||
<text y="110" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="270" text="Cosy 131" x="60"/>
|
||||
<rect y="-122.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-7.7269" height="6"/>
|
||||
<polygon x1="-21" y3="103" y4="103" closed="false" x4="-21" antialias="false" y1="97" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="97" x3="-30"/>
|
||||
<rect y="35" width="30" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-10" height="10"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="DI 2" x="48"/>
|
||||
<rect y="-123" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="4" height="6"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="1" height="1"/>
|
||||
<line end1="none" x1="67.2" length2="1.5" length1="1.5" antialias="false" y1="-189.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="72.2" y2="-189.9"/>
|
||||
<polygon x1="-21" y3="113" y4="113" closed="false" x4="-21" antialias="false" y1="107" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="107" x3="-30"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="6" x="35"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="11" height="1"/>
|
||||
<arc y="87" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<rect y="-122.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="52.2731" height="6"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="4" x="15"/>
|
||||
<rect y="-122.709" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35.2731" height="6"/>
|
||||
<rect y="37" width="22" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-6" height="2"/>
|
||||
<polygon x1="-21" y3="93" y4="93" closed="false" x4="-21" antialias="false" y1="87" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="87" x3="-30"/>
|
||||
<rect y="33" width="34" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-12" height="14"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="KEY" x="38"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="1" x="-15"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I-" x="8"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="T2M" x="58"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="3" x="5"/>
|
||||
<rect y="-115" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-20" height="50"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I2" x="28"/>
|
||||
<text y="1" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="4" x="20"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="8" x="65"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="USR" x="28"/>
|
||||
<text y="-190" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="_" x="59"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="5" x="25"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="24" height="10"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="7" x="55"/>
|
||||
<text y="1" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="3" x="32"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="+" x="48"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O" x="-12"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="2" x="-5"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I1" x="18"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O+" x="-2"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="24" height="10"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="43.6" height="10"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="64" height="10"/>
|
||||
<rect y="-2.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-7.7269" height="6"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="34" height="10"/>
|
||||
<rect y="-115" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="30" height="50"/>
|
||||
<line end1="none" x1="69" length2="1.5" length1="1.5" antialias="false" y1="-187.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="70" y2="-187.9"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="54" height="10"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="9" x="75"/>
|
||||
<line end1="none" x1="68" length2="1.5" length1="1.5" antialias="false" y1="-188.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="71" y2="-188.9"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="B/1" x="8"/>
|
||||
<rect y="-3" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="4" height="6"/>
|
||||
<rect y="-2.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="52.2731" height="6"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="@" x="68"/>
|
||||
<polygon x4="58.318" x11="58.318" closed="false" x6="63.316" x10="63.316" y13="-109.54" x13="34.9974" y2="-70.23" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="66.647" x12="58.318" y6="-84.525" y11="-100.606" antialias="false" x8="66.647" y1="-109.54" y4="-79.164" y5="-79.164" y12="-109.54" y3="-70.23" y7="-84.525" y9="-95.245" x3="58.318" x9="63.316" x2="34.9974" y8="-95.245" x5="63.316" x1="34.9974" y10="-100.606"/>
|
||||
<polygon x4="-13.5041" x11="-13.5041" closed="false" x6="-8.4822" x10="-8.4822" y13="-95.402" x13="-16.852" y2="-84.658" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="14.9535" x12="-13.5041" y6="-70.333" y11="-100.774" antialias="false" x8="14.9535" y1="-95.402" y4="-79.286" y5="-79.286" y12="-95.402" y3="-84.658" y7="-70.333" y9="-109.728" x3="-13.5041" x9="-8.4822" x2="-16.852" y8="-109.728" x5="-8.4822" x1="-16.852" y10="-100.774"/>
|
||||
<rect y="-2.709" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35.2731" height="6"/>
|
||||
<rect y="-55" width="39.9789" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="30" height="50"/>
|
||||
<rect y="-55" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-20" height="50"/>
|
||||
<polygon x4="-13.4795" x11="-13.4795" closed="false" x6="-8.4576" x10="-8.4576" y13="-35.202" x13="-16.8274" y2="-24.458" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="14.9781" x12="-13.4795" y6="-10.133" y11="-40.574" antialias="false" x8="14.9781" y1="-35.202" y4="-19.086" y5="-19.086" y12="-35.202" y3="-24.458" y7="-10.133" y9="-49.528" x3="-13.4795" x9="-8.4576" x2="-16.8274" y8="-49.528" x5="-8.4576" x1="-16.8274" y10="-40.574"/>
|
||||
<polygon x4="58.3184" x11="58.3184" closed="false" x6="63.3157" x10="63.3157" y13="-49.527" x13="34.9974" y2="-10.217" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="66.6473" x12="58.3184" y6="-24.512" y11="-40.593" antialias="false" x8="66.6473" y1="-49.527" y4="-19.151" y5="-19.151" y12="-49.527" y3="-10.217" y7="-24.512" y9="-35.232" x3="58.3184" x9="63.3157" x2="34.9974" y8="-35.232" x5="63.3157" x1="34.9974" y10="-40.593"/>
|
||||
<rect y="-200" width="110" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-30" height="319.9"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="4" height="10"/>
|
||||
<line end1="none" x1="-30" length2="1.5" length1="1.5" antialias="false" y1="20" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="80" y2="20"/>
|
||||
<line end1="none" x1="69.7" length2="1.5" length1="1.5" antialias="false" y1="-193.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="69.7" y2="-189.9"/>
|
||||
<text y="110" color="#000000" font="Sans Serif,11,-1,5,50,0,0,0,0,0" rotation="270" text="EWON" x="40"/>
|
||||
<circle y="-138" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="8" x="-20"/>
|
||||
<circle y="37.5" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="5" x="27.5"/>
|
||||
<polygon x1="30" y3="38" y5="40.1384" y4="42" closed="false" x4="56" antialias="false" y1="40" x5="59.3547" style="line-style:normal;line-weight:normal;filling:black;color:black" x2="59.7213" y2="39.9968" x3="56"/>
|
||||
<line end1="none" x1="30" length2="1.5" length1="1.5" antialias="false" y1="42" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="30" y2="40"/>
|
||||
<polygon x1="36.1864" y3="34" closed="false" antialias="false" y1="39.7229" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" y2="34" x3="44"/>
|
||||
<rect y="45" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" x="50" height="2"/>
|
||||
<polygon x1="-9" y3="59" y4="64" closed="false" x4="1" antialias="false" y1="64" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-9" y2="59" x3="1"/>
|
||||
<arc y="57" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<polygon x1="-21" y3="63" y4="63" closed="false" x4="-21" antialias="false" y1="57" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="57" x3="-30"/>
|
||||
<polygon x1="40.1961" y3="46" closed="false" antialias="false" y1="40.3206" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="44" y2="46" x3="50"/>
|
||||
<line end1="none" x1="57" length2="1.5" length1="1.5" antialias="false" y1="39" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="57" y2="41"/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{dd5178d1-7a20-4530-bb1c-24cd5c4c5ae8}" x="70" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{bc230f0d-ee9a-4bb0-996f-09d161942702}" x="20" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{168bae35-99d8-4536-9975-b35d30d8d8ca}" x="0" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{1a1b0942-da45-47a1-bb07-164fbacd6970}" x="50" name=""/>
|
||||
<terminal y="-29.9" type="Generic" orientation="w" uuid="{766d1a8d-ff0c-4292-83a8-c0190d0bd4bc}" x="-10" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{f7cb8b6d-f794-4d34-946d-407d4ac91439}" x="10" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{f1cdef52-ab84-49a6-b441-d1924f9ff506}" x="60" name=""/>
|
||||
<terminal y="-89.9" type="Generic" orientation="w" uuid="{0d98d4c6-be61-43ce-96d1-0344fc26c330}" x="-10" name=""/>
|
||||
<terminal y="-29.9" type="Generic" orientation="e" uuid="{11ff64d1-0c82-4ea6-af78-01f32a3f15a8}" x="60" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{0ee6c34f-f674-4121-97f3-316894ad5959}" x="-20" name=""/>
|
||||
<terminal y="-89.9" type="Generic" orientation="e" uuid="{e36db2ba-380e-4ef0-8a82-9ff54931f018}" x="60" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{3f56c9b9-9975-4bec-9dc2-09af0d5e57c1}" x="-10" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{015e6c78-011d-4c3d-81ee-bcac3fc21787}" x="30" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,146 @@
|
||||
<definition width="120" hotspot_x="35" type="element" hotspot_y="206" version="0.90" link_type="simple" height="330">
|
||||
<uuid uuid="{fef6c278-2b5e-400c-b7f1-63d971d30ab8}"/>
|
||||
<names>
|
||||
<name lang="en">cosy_EC6133C</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="description">cosy_EC6133C</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line end1="none" x1="57" length2="1.5" length1="1.5" antialias="false" y1="39" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="57" y2="40"/>
|
||||
<text y="-160" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="ST" x="59"/>
|
||||
<circle y="-165" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="10" x="-5"/>
|
||||
<rect y="-166" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="40" height="6"/>
|
||||
<polygon x1="1" y3="111" y4="106" closed="false" x4="-9" antialias="false" y1="106" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="1" y2="111" x3="-9"/>
|
||||
<circle y="-161" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="2" x="-1"/>
|
||||
<rect y="-157.982" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="30" height="6"/>
|
||||
<text y="-119" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="2" x="20"/>
|
||||
<circle y="-136" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="4" x="-18"/>
|
||||
<rect y="-168" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="48" height="8"/>
|
||||
<rect y="30" width="90" rx="0" ry="0" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:gray" x="-20" height="20"/>
|
||||
<rect y="-157.973" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="54" height="6"/>
|
||||
<dynamic_text y="-220" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" z="13" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-30">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<circle y="32.5" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="3" x="42.5"/>
|
||||
<rect y="-157.973" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="38" height="6"/>
|
||||
<rect y="-157.973" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="46" height="6"/>
|
||||
<rect y="60" width="8" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-8" height="50"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="PWR" x="18"/>
|
||||
<rect y="-164" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="32" height="4"/>
|
||||
<arc y="67" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O-" x="-22"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="6" height="1"/>
|
||||
<arc y="97" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<arc y="77" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<text y="110" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="270" text="EC6133C" x="70"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-4" height="1"/>
|
||||
<arc y="107" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="14" height="10"/>
|
||||
<text y="-119" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="1" x="31"/>
|
||||
<polygon x1="-21" y3="83" y4="83" closed="false" x4="-21" antialias="false" y1="77" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="77" x3="-30"/>
|
||||
<polygon x1="-21" y3="73" y4="73" closed="false" x4="-21" antialias="false" y1="67" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="67" x3="-30"/>
|
||||
<text y="110" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="270" text="Cosy 131" x="60"/>
|
||||
<rect y="-122.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-7.7269" height="6"/>
|
||||
<polygon x1="-21" y3="103" y4="103" closed="false" x4="-21" antialias="false" y1="97" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="97" x3="-30"/>
|
||||
<rect y="35" width="30" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-10" height="10"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="DI 2" x="48"/>
|
||||
<rect y="-123" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="4" height="6"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="1" height="1"/>
|
||||
<line end1="none" x1="67.2" length2="1.5" length1="1.5" antialias="false" y1="-189.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="72.2" y2="-189.9"/>
|
||||
<polygon x1="-21" y3="113" y4="113" closed="false" x4="-21" antialias="false" y1="107" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="107" x3="-30"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="6" x="35"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="11" height="1"/>
|
||||
<arc y="87" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<rect y="-122.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="52.2731" height="6"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="4" x="15"/>
|
||||
<rect y="-122.709" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35.2731" height="6"/>
|
||||
<rect y="37" width="22" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-6" height="2"/>
|
||||
<polygon x1="-21" y3="93" y4="93" closed="false" x4="-21" antialias="false" y1="87" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="87" x3="-30"/>
|
||||
<rect y="33" width="34" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-12" height="14"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="KEY" x="38"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="1" x="-15"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I-" x="8"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="T2M" x="58"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="3" x="5"/>
|
||||
<rect y="-115" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-20" height="50"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I2" x="28"/>
|
||||
<text y="1" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="4" x="20"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="8" x="65"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="USR" x="28"/>
|
||||
<text y="-190" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="_" x="59"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="5" x="25"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="24" height="10"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="7" x="55"/>
|
||||
<text y="1" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="3" x="32"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="+" x="48"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O" x="-12"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="2" x="-5"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I1" x="18"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O+" x="-2"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="24" height="10"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="43.6" height="10"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="64" height="10"/>
|
||||
<rect y="-2.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-7.7269" height="6"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="34" height="10"/>
|
||||
<rect y="-115" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="30" height="50"/>
|
||||
<rect y="-175" width="100" rx="0" ry="0" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:gray" x="-25" height="30"/>
|
||||
<line end1="none" x1="69" length2="1.5" length1="1.5" antialias="false" y1="-187.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="70" y2="-187.9"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="54" height="10"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="9" x="75"/>
|
||||
<line end1="none" x1="68" length2="1.5" length1="1.5" antialias="false" y1="-188.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="71" y2="-188.9"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="B/1" x="8"/>
|
||||
<rect y="-3" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="4" height="6"/>
|
||||
<rect y="-2.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="52.2731" height="6"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="@" x="68"/>
|
||||
<polygon x4="58.318" x11="58.318" closed="false" x6="63.316" x10="63.316" y13="-109.54" x13="34.9974" y2="-70.23" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="66.647" x12="58.318" y6="-84.525" y11="-100.606" antialias="false" x8="66.647" y1="-109.54" y4="-79.164" y5="-79.164" y12="-109.54" y3="-70.23" y7="-84.525" y9="-95.245" x3="58.318" x9="63.316" x2="34.9974" y8="-95.245" x5="63.316" x1="34.9974" y10="-100.606"/>
|
||||
<polygon x4="-13.5041" x11="-13.5041" closed="false" x6="-8.4822" x10="-8.4822" y13="-95.402" x13="-16.852" y2="-84.658" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="14.9535" x12="-13.5041" y6="-70.333" y11="-100.774" antialias="false" x8="14.9535" y1="-95.402" y4="-79.286" y5="-79.286" y12="-95.402" y3="-84.658" y7="-70.333" y9="-109.728" x3="-13.5041" x9="-8.4822" x2="-16.852" y8="-109.728" x5="-8.4822" x1="-16.852" y10="-100.774"/>
|
||||
<rect y="-2.709" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35.2731" height="6"/>
|
||||
<rect y="-55" width="39.9789" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="30" height="50"/>
|
||||
<rect y="-55" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-20" height="50"/>
|
||||
<polygon x4="-13.4795" x11="-13.4795" closed="false" x6="-8.4576" x10="-8.4576" y13="-35.202" x13="-16.8274" y2="-24.458" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="14.9781" x12="-13.4795" y6="-10.133" y11="-40.574" antialias="false" x8="14.9781" y1="-35.202" y4="-19.086" y5="-19.086" y12="-35.202" y3="-24.458" y7="-10.133" y9="-49.528" x3="-13.4795" x9="-8.4576" x2="-16.8274" y8="-49.528" x5="-8.4576" x1="-16.8274" y10="-40.574"/>
|
||||
<polygon x4="58.3184" x11="58.3184" closed="false" x6="63.3157" x10="63.3157" y13="-49.527" x13="34.9974" y2="-10.217" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="66.6473" x12="58.3184" y6="-24.512" y11="-40.593" antialias="false" x8="66.6473" y1="-49.527" y4="-19.151" y5="-19.151" y12="-49.527" y3="-10.217" y7="-24.512" y9="-35.232" x3="58.3184" x9="63.3157" x2="34.9974" y8="-35.232" x5="63.3157" x1="34.9974" y10="-40.593"/>
|
||||
<rect y="-200" width="110" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-30" height="319.9"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="4" height="10"/>
|
||||
<line end1="none" x1="-30" length2="1.5" length1="1.5" antialias="false" y1="20" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="80" y2="20"/>
|
||||
<line end1="none" x1="69.7" length2="1.5" length1="1.5" antialias="false" y1="-193.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="69.7" y2="-189.9"/>
|
||||
<text y="110" color="#000000" font="Sans Serif,11,-1,5,50,0,0,0,0,0" rotation="270" text="EWON" x="40"/>
|
||||
<circle y="-138" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="8" x="-20"/>
|
||||
<circle y="37.5" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="5" x="27.5"/>
|
||||
<polygon x1="30" y3="38" y5="40.1384" y4="42" closed="false" x4="56" antialias="false" y1="40" x5="59.3547" style="line-style:normal;line-weight:normal;filling:black;color:black" x2="59.7213" y2="39.9968" x3="56"/>
|
||||
<line end1="none" x1="30" length2="1.5" length1="1.5" antialias="false" y1="42" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="30" y2="40"/>
|
||||
<polygon x1="36.1864" y3="34" closed="false" antialias="false" y1="39.7229" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" y2="34" x3="44"/>
|
||||
<rect y="45" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" x="50" height="2"/>
|
||||
<polygon x1="-9" y3="59" y4="64" closed="false" x4="1" antialias="false" y1="64" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-9" y2="59" x3="1"/>
|
||||
<arc y="57" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<polygon x1="-21" y3="63" y4="63" closed="false" x4="-21" antialias="false" y1="57" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="57" x3="-30"/>
|
||||
<polygon x1="40.1961" y3="46" closed="false" antialias="false" y1="40.3206" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="44" y2="46" x3="50"/>
|
||||
<line end1="none" x1="57" length2="1.5" length1="1.5" antialias="false" y1="39" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="57" y2="41"/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{dd5178d1-7a20-4530-bb1c-24cd5c4c5ae8}" x="70" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{bc230f0d-ee9a-4bb0-996f-09d161942702}" x="20" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{168bae35-99d8-4536-9975-b35d30d8d8ca}" x="0" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{1a1b0942-da45-47a1-bb07-164fbacd6970}" x="50" name=""/>
|
||||
<terminal y="-29.9" type="Generic" orientation="w" uuid="{766d1a8d-ff0c-4292-83a8-c0190d0bd4bc}" x="-10" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{f7cb8b6d-f794-4d34-946d-407d4ac91439}" x="10" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{f1cdef52-ab84-49a6-b441-d1924f9ff506}" x="60" name=""/>
|
||||
<terminal y="-89.9" type="Generic" orientation="w" uuid="{0d98d4c6-be61-43ce-96d1-0344fc26c330}" x="-10" name=""/>
|
||||
<terminal y="-29.9" type="Generic" orientation="e" uuid="{11ff64d1-0c82-4ea6-af78-01f32a3f15a8}" x="60" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{0ee6c34f-f674-4121-97f3-316894ad5959}" x="-20" name=""/>
|
||||
<terminal y="-89.9" type="Generic" orientation="e" uuid="{e36db2ba-380e-4ef0-8a82-9ff54931f018}" x="60" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{3f56c9b9-9975-4bec-9dc2-09af0d5e57c1}" x="-10" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{015e6c78-011d-4c3d-81ee-bcac3fc21787}" x="30" name=""/>
|
||||
<terminal y="-160" type="Generic" orientation="n" uuid="{bf9c2434-5b64-43ab-a88d-aa3f9f99a955}" x="0" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,146 @@
|
||||
<definition width="120" hotspot_x="35" type="element" hotspot_y="206" version="0.90" link_type="simple" height="330">
|
||||
<uuid uuid="{35a4d12c-61f0-418a-a25e-267a512abd2a}"/>
|
||||
<names>
|
||||
<name lang="en">cosy_EC6133F</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="description">cosy_EC6133F</elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line end1="none" x1="57" length2="1.5" length1="1.5" antialias="false" y1="39" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="57" y2="40"/>
|
||||
<text y="-160" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="ST" x="59"/>
|
||||
<circle y="-165" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="10" x="-5"/>
|
||||
<rect y="-166" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="40" height="6"/>
|
||||
<polygon x1="1" y3="111" y4="106" closed="false" x4="-9" antialias="false" y1="106" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="1" y2="111" x3="-9"/>
|
||||
<circle y="-161" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="2" x="-1"/>
|
||||
<rect y="-157.982" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="30" height="6"/>
|
||||
<text y="-119" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="2" x="20"/>
|
||||
<circle y="-136" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="4" x="-18"/>
|
||||
<rect y="-168" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="48" height="8"/>
|
||||
<rect y="30" width="90" rx="0" ry="0" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:gray" x="-20" height="20"/>
|
||||
<rect y="-157.973" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="54" height="6"/>
|
||||
<circle y="32.5" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="3" x="42.5"/>
|
||||
<dynamic_text y="-220" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" z="13" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-30">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<rect y="-157.973" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="38" height="6"/>
|
||||
<rect y="-157.973" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="46" height="6"/>
|
||||
<rect y="60" width="8" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-8" height="50"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="PWR" x="18"/>
|
||||
<rect y="-164" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="32" height="4"/>
|
||||
<arc y="67" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O-" x="-22"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="6" height="1"/>
|
||||
<arc y="97" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<arc y="77" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<text y="110" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="270" text="EC6133F" x="70"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-4" height="1"/>
|
||||
<arc y="107" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="14" height="10"/>
|
||||
<text y="-119" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="1" x="31"/>
|
||||
<polygon x1="-21" y3="83" y4="83" closed="false" x4="-21" antialias="false" y1="77" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="77" x3="-30"/>
|
||||
<polygon x1="-21" y3="73" y4="73" closed="false" x4="-21" antialias="false" y1="67" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="67" x3="-30"/>
|
||||
<text y="110" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="270" text="Cosy 131" x="60"/>
|
||||
<rect y="-122.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-7.7269" height="6"/>
|
||||
<polygon x1="-21" y3="103" y4="103" closed="false" x4="-21" antialias="false" y1="97" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="97" x3="-30"/>
|
||||
<rect y="35" width="30" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-10" height="10"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="DI 2" x="48"/>
|
||||
<rect y="-123" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="4" height="6"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="1" height="1"/>
|
||||
<line end1="none" x1="67.2" length2="1.5" length1="1.5" antialias="false" y1="-189.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="72.2" y2="-189.9"/>
|
||||
<polygon x1="-21" y3="113" y4="113" closed="false" x4="-21" antialias="false" y1="107" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="107" x3="-30"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="6" x="35"/>
|
||||
<rect y="39" width="3" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="11" height="1"/>
|
||||
<arc y="87" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<rect y="-122.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="52.2731" height="6"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="4" x="15"/>
|
||||
<rect y="-122.709" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35.2731" height="6"/>
|
||||
<rect y="37" width="22" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-6" height="2"/>
|
||||
<polygon x1="-21" y3="93" y4="93" closed="false" x4="-21" antialias="false" y1="87" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="87" x3="-30"/>
|
||||
<rect y="33" width="34" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-12" height="14"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="KEY" x="38"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="1" x="-15"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I-" x="8"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="T2M" x="58"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="3" x="5"/>
|
||||
<rect y="-115" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-20" height="50"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I2" x="28"/>
|
||||
<text y="1" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="4" x="20"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="8" x="65"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="USR" x="28"/>
|
||||
<text y="-190" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="_" x="59"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="5" x="25"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="24" height="10"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="7" x="55"/>
|
||||
<text y="1" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0" rotation="270" text="3" x="32"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="+" x="48"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O" x="-12"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="2" x="-5"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I1" x="18"/>
|
||||
<text y="-188" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O+" x="-2"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="24" height="10"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="43.6" height="10"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="64" height="10"/>
|
||||
<rect y="-2.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-7.7269" height="6"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="34" height="10"/>
|
||||
<rect y="-115" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="30" height="50"/>
|
||||
<rect y="-175" width="100" rx="0" ry="0" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:gray" x="-25" height="30"/>
|
||||
<line end1="none" x1="69" length2="1.5" length1="1.5" antialias="false" y1="-187.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="70" y2="-187.9"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="54" height="10"/>
|
||||
<text y="-196" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="9" x="75"/>
|
||||
<line end1="none" x1="68" length2="1.5" length1="1.5" antialias="false" y1="-188.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="71" y2="-188.9"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="B/1" x="8"/>
|
||||
<rect y="-3" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="4" height="6"/>
|
||||
<rect y="-2.709" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="52.2731" height="6"/>
|
||||
<text y="-131" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="@" x="68"/>
|
||||
<polygon x4="58.318" x11="58.318" closed="false" x6="63.316" x10="63.316" y13="-109.54" x13="34.9974" y2="-70.23" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="66.647" x12="58.318" y6="-84.525" y11="-100.606" antialias="false" x8="66.647" y1="-109.54" y4="-79.164" y5="-79.164" y12="-109.54" y3="-70.23" y7="-84.525" y9="-95.245" x3="58.318" x9="63.316" x2="34.9974" y8="-95.245" x5="63.316" x1="34.9974" y10="-100.606"/>
|
||||
<polygon x4="-13.5041" x11="-13.5041" closed="false" x6="-8.4822" x10="-8.4822" y13="-95.402" x13="-16.852" y2="-84.658" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="14.9535" x12="-13.5041" y6="-70.333" y11="-100.774" antialias="false" x8="14.9535" y1="-95.402" y4="-79.286" y5="-79.286" y12="-95.402" y3="-84.658" y7="-70.333" y9="-109.728" x3="-13.5041" x9="-8.4822" x2="-16.852" y8="-109.728" x5="-8.4822" x1="-16.852" y10="-100.774"/>
|
||||
<rect y="-2.709" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35.2731" height="6"/>
|
||||
<rect y="-55" width="39.9789" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="30" height="50"/>
|
||||
<rect y="-55" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-20" height="50"/>
|
||||
<polygon x4="-13.4795" x11="-13.4795" closed="false" x6="-8.4576" x10="-8.4576" y13="-35.202" x13="-16.8274" y2="-24.458" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="14.9781" x12="-13.4795" y6="-10.133" y11="-40.574" antialias="false" x8="14.9781" y1="-35.202" y4="-19.086" y5="-19.086" y12="-35.202" y3="-24.458" y7="-10.133" y9="-49.528" x3="-13.4795" x9="-8.4576" x2="-16.8274" y8="-49.528" x5="-8.4576" x1="-16.8274" y10="-40.574"/>
|
||||
<polygon x4="58.3184" x11="58.3184" closed="false" x6="63.3157" x10="63.3157" y13="-49.527" x13="34.9974" y2="-10.217" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="66.6473" x12="58.3184" y6="-24.512" y11="-40.593" antialias="false" x8="66.6473" y1="-49.527" y4="-19.151" y5="-19.151" y12="-49.527" y3="-10.217" y7="-24.512" y9="-35.232" x3="58.3184" x9="63.3157" x2="34.9974" y8="-35.232" x5="63.3157" x1="34.9974" y10="-40.593"/>
|
||||
<rect y="-200" width="110" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-30" height="319.9"/>
|
||||
<rect y="-140" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="4" height="10"/>
|
||||
<line end1="none" x1="-30" length2="1.5" length1="1.5" antialias="false" y1="20" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="80" y2="20"/>
|
||||
<line end1="none" x1="69.7" length2="1.5" length1="1.5" antialias="false" y1="-193.9" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="69.7" y2="-189.9"/>
|
||||
<text y="110" color="#000000" font="Sans Serif,11,-1,5,50,0,0,0,0,0" rotation="270" text="EWON" x="40"/>
|
||||
<circle y="-138" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="8" x="-20"/>
|
||||
<circle y="37.5" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="5" x="27.5"/>
|
||||
<polygon x1="30" y3="38" y5="40.1384" y4="42" closed="false" x4="56" antialias="false" y1="40" x5="59.3547" style="line-style:normal;line-weight:normal;filling:black;color:black" x2="59.7213" y2="39.9968" x3="56"/>
|
||||
<line end1="none" x1="30" length2="1.5" length1="1.5" antialias="false" y1="42" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="30" y2="40"/>
|
||||
<polygon x1="36.1864" y3="34" closed="false" antialias="false" y1="39.7229" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="40" y2="34" x3="44"/>
|
||||
<rect y="45" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" x="50" height="2"/>
|
||||
<polygon x1="-9" y3="59" y4="64" closed="false" x4="1" antialias="false" y1="64" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-9" y2="59" x3="1"/>
|
||||
<arc y="57" width="6" antialias="true" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="6" angle="180.813" start="269.125"/>
|
||||
<polygon x1="-21" y3="63" y4="63" closed="false" x4="-21" antialias="false" y1="57" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-30" y2="57" x3="-30"/>
|
||||
<polygon x1="40.1961" y3="46" closed="false" antialias="false" y1="40.3206" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="44" y2="46" x3="50"/>
|
||||
<line end1="none" x1="57" length2="1.5" length1="1.5" antialias="false" y1="39" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="57" y2="41"/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{dd5178d1-7a20-4530-bb1c-24cd5c4c5ae8}" x="70" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{bc230f0d-ee9a-4bb0-996f-09d161942702}" x="20" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{168bae35-99d8-4536-9975-b35d30d8d8ca}" x="0" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{1a1b0942-da45-47a1-bb07-164fbacd6970}" x="50" name=""/>
|
||||
<terminal y="-29.9" type="Generic" orientation="w" uuid="{766d1a8d-ff0c-4292-83a8-c0190d0bd4bc}" x="-10" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{f7cb8b6d-f794-4d34-946d-407d4ac91439}" x="10" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{f1cdef52-ab84-49a6-b441-d1924f9ff506}" x="60" name=""/>
|
||||
<terminal y="-89.9" type="Generic" orientation="w" uuid="{0d98d4c6-be61-43ce-96d1-0344fc26c330}" x="-10" name=""/>
|
||||
<terminal y="-29.9" type="Generic" orientation="e" uuid="{11ff64d1-0c82-4ea6-af78-01f32a3f15a8}" x="60" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{0ee6c34f-f674-4121-97f3-316894ad5959}" x="-20" name=""/>
|
||||
<terminal y="-89.9" type="Generic" orientation="e" uuid="{e36db2ba-380e-4ef0-8a82-9ff54931f018}" x="60" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{3f56c9b9-9975-4bec-9dc2-09af0d5e57c1}" x="-10" name=""/>
|
||||
<terminal y="-200" type="Generic" orientation="n" uuid="{015e6c78-011d-4c3d-81ee-bcac3fc21787}" x="30" name=""/>
|
||||
<terminal y="-160" type="Generic" orientation="n" uuid="{bf9c2434-5b64-43ab-a88d-aa3f9f99a955}" x="0" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,146 @@
|
||||
<definition height="330" hotspot_y="206" width="120" type="element" hotspot_x="35" version="0.90" link_type="simple">
|
||||
<uuid uuid="{1dad1be1-43ea-4d83-ab90-a73f5368fd3a}"/>
|
||||
<names>
|
||||
<name lang="en">cosy_EC6133G</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="description" show="1">cosy_EC6133G</elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Ewon</elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y2="40" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="57" antialias="false" length1="1.5" x2="57" end2="none" y1="39" length2="1.5"/>
|
||||
<text y="-160" text="ST" x="59" rotation="270" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" y="-165" antialias="false" x="-5" diameter="10"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:white;color:black" y="-166" height="6" antialias="false" x="40" rx="0" ry="0" width="2"/>
|
||||
<polygon y2="111" y3="111" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="1" closed="false" x3="-9" antialias="false" x2="1" x4="-9" y1="106" y4="106"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" y="-161" antialias="false" x="-1" diameter="2"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-157.982" height="6" antialias="false" x="30" rx="0" ry="0" width="6"/>
|
||||
<text y="-119" text="2" x="20" rotation="270" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<circle style="line-style:normal;line-weight:thin;filling:black;color:black" y="-136" antialias="false" x="-18" diameter="4"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:white;color:black" y="-168" height="8" antialias="false" x="48" rx="0" ry="0" width="2"/>
|
||||
<rect style="line-style:dotted;line-weight:thin;filling:none;color:gray" y="30" height="20" antialias="false" x="-20" rx="0" ry="0" width="90"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-157.973" height="6" antialias="false" x="54" rx="0" ry="0" width="6"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:black;color:black" y="32.5" antialias="false" x="42.5" diameter="3"/>
|
||||
<dynamic_text text_from="ElementInfo" Valignment="AlignTop" y="-221" frame="false" text_width="-1" Halignment="AlignLeft" x="-32" z="13" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" keep_visual_rotation="true" rotation="0" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-157.973" height="6" antialias="false" x="38" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-157.973" height="6" antialias="false" x="46" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="60" height="50" antialias="false" x="-8" rx="0" ry="0" width="8"/>
|
||||
<text y="-131" text="PWR" x="18" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:white;color:black" y="-164" height="4" antialias="false" x="32" rx="0" ry="0" width="2"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="67" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<text y="-188" text="O-" x="-22" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="39" height="1" antialias="false" x="6" rx="0" ry="0" width="3"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="97" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="77" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<text y="110" text="EC6133G" x="70" rotation="270" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="39" height="1" antialias="false" x="-4" rx="0" ry="0" width="3"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="107" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="14" rx="0" ry="0" width="6"/>
|
||||
<text y="-119" text="1" x="31" rotation="270" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<polygon y2="77" y3="83" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="77" y4="83"/>
|
||||
<polygon y2="67" y3="73" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="67" y4="73"/>
|
||||
<text y="110" text="Cosy 131" x="60" rotation="270" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-122.709" height="6" antialias="false" x="-7.7269" rx="0" ry="0" width="6"/>
|
||||
<polygon y2="97" y3="103" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="97" y4="103"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="35" height="10" antialias="false" x="-10" rx="0" ry="0" width="30"/>
|
||||
<text y="-131" text="DI 2" x="48" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-123" height="6" antialias="false" x="4" rx="0" ry="0" width="10"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="39" height="1" antialias="false" x="1" rx="0" ry="0" width="3"/>
|
||||
<line y2="-189.9" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="67.2" antialias="false" length1="1.5" x2="72.2" end2="none" y1="-189.9" length2="1.5"/>
|
||||
<polygon y2="107" y3="113" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="107" y4="113"/>
|
||||
<text y="-196" text="6" x="35" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="39" height="1" antialias="false" x="11" rx="0" ry="0" width="3"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="87" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-122.709" height="6" antialias="false" x="52.2731" rx="0" ry="0" width="6"/>
|
||||
<text y="-196" text="4" x="15" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-122.709" height="6" antialias="false" x="35.2731" rx="0" ry="0" width="10"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="37" height="2" antialias="false" x="-6" rx="0" ry="0" width="22"/>
|
||||
<polygon y2="87" y3="93" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="87" y4="93"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="33" height="14" antialias="false" x="-12" rx="0" ry="0" width="34"/>
|
||||
<text y="-131" text="KEY" x="38" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-196" text="1" x="-15" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-188" text="I-" x="8" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-131" text="T2M" x="58" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-196" text="3" x="5" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-115" height="50" antialias="false" x="-20" rx="0" ry="0" width="40"/>
|
||||
<text y="-188" text="I2" x="28" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="1" text="4" x="20" rotation="270" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-196" text="8" x="65" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-131" text="USR" x="28" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-190" text="_" x="59" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-196" text="5" x="25" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="24" rx="0" ry="0" width="6"/>
|
||||
<text y="-196" text="7" x="55" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="1" text="3" x="32" rotation="270" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-188" text="+" x="48" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-188" text="O" x="-12" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-196" text="2" x="-5" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-188" text="I1" x="18" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-188" text="O+" x="-2" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="24" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="43.6" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="64" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-2.709" height="6" antialias="false" x="-7.7269" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="34" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-115" height="50" antialias="false" x="30" rx="0" ry="0" width="40"/>
|
||||
<rect style="line-style:dotted;line-weight:thin;filling:none;color:gray" y="-175" height="30" antialias="false" x="-25" rx="0" ry="0" width="100"/>
|
||||
<line y2="-187.9" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="69" antialias="false" length1="1.5" x2="70" end2="none" y1="-187.9" length2="1.5"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="54" rx="0" ry="0" width="6"/>
|
||||
<text y="-196" text="9" x="75" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<line y2="-188.9" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="68" antialias="false" length1="1.5" x2="71" end2="none" y1="-188.9" length2="1.5"/>
|
||||
<text y="-131" text="B/1" x="8" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-3" height="6" antialias="false" x="4" rx="0" ry="0" width="10"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-2.709" height="6" antialias="false" x="52.2731" rx="0" ry="0" width="6"/>
|
||||
<text y="-131" text="@" x="68" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<polygon x9="63.316" y6="-84.525" y7="-84.525" x6="63.316" x11="58.318" y4="-79.164" x10="63.316" y13="-109.54" y10="-100.606" y3="-70.23" y9="-95.245" x1="34.9974" x12="58.318" y11="-100.606" y5="-79.164" x3="58.318" x2="34.9974" x4="58.318" x13="34.9974" y2="-70.23" antialias="false" x7="66.647" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-109.54" x8="66.647" closed="false" y12="-109.54" y8="-95.245" x5="63.316"/>
|
||||
<polygon x9="-8.4822" y6="-70.333" y7="-70.333" x6="-8.4822" x11="-13.5041" y4="-79.286" x10="-8.4822" y13="-95.402" y10="-100.774" y3="-84.658" y9="-109.728" x1="-16.852" x12="-13.5041" y11="-100.774" y5="-79.286" x3="-13.5041" x2="-16.852" x4="-13.5041" x13="-16.852" y2="-84.658" antialias="false" x7="14.9535" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-95.402" x8="14.9535" closed="false" y12="-95.402" y8="-109.728" x5="-8.4822"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-2.709" height="6" antialias="false" x="35.2731" rx="0" ry="0" width="10"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-55" height="50" antialias="false" x="30" rx="0" ry="0" width="39.9789"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-55" height="50" antialias="false" x="-20" rx="0" ry="0" width="40"/>
|
||||
<polygon x9="-8.4576" y6="-10.133" y7="-10.133" x6="-8.4576" x11="-13.4795" y4="-19.086" x10="-8.4576" y13="-35.202" y10="-40.574" y3="-24.458" y9="-49.528" x1="-16.8274" x12="-13.4795" y11="-40.574" y5="-19.086" x3="-13.4795" x2="-16.8274" x4="-13.4795" x13="-16.8274" y2="-24.458" antialias="false" x7="14.9781" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-35.202" x8="14.9781" closed="false" y12="-35.202" y8="-49.528" x5="-8.4576"/>
|
||||
<polygon x9="63.3157" y6="-24.512" y7="-24.512" x6="63.3157" x11="58.3184" y4="-19.151" x10="63.3157" y13="-49.527" y10="-40.593" y3="-10.217" y9="-35.232" x1="34.9974" x12="58.3184" y11="-40.593" y5="-19.151" x3="58.3184" x2="34.9974" x4="58.3184" x13="34.9974" y2="-10.217" antialias="false" x7="66.6473" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-49.527" x8="66.6473" closed="false" y12="-49.527" y8="-35.232" x5="63.3157"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" y="-200" height="319.9" antialias="false" x="-30" rx="0" ry="0" width="110"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="4" rx="0" ry="0" width="6"/>
|
||||
<line y2="20" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-30" antialias="false" length1="1.5" x2="80" end2="none" y1="20" length2="1.5"/>
|
||||
<line y2="-189.9" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="69.7" antialias="false" length1="1.5" x2="69.7" end2="none" y1="-193.9" length2="1.5"/>
|
||||
<text y="110" text="EWON" x="40" rotation="270" color="#000000" font="Sans Serif,11,-1,5,50,0,0,0,0,0"/>
|
||||
<circle style="line-style:normal;line-weight:thin;filling:none;color:black" y="-138" antialias="false" x="-20" diameter="8"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:black;color:black" y="37.5" antialias="false" x="27.5" diameter="5"/>
|
||||
<polygon y2="39.9968" y3="38" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="30" closed="false" x3="56" antialias="false" x5="59.3547" x2="59.7213" x4="56" y5="40.1384" y1="40" y4="42"/>
|
||||
<line y2="40" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" antialias="false" length1="1.5" x2="30" end2="none" y1="42" length2="1.5"/>
|
||||
<polygon y2="34" y3="34" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="36.1864" closed="false" x3="44" antialias="false" x2="40" y1="39.7229"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:black;color:black" y="45" height="2" antialias="false" x="50" rx="0" ry="0" width="2"/>
|
||||
<polygon y2="59" y3="59" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-9" closed="false" x3="1" antialias="false" x2="-9" x4="1" y1="64" y4="64"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="57" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<polygon y2="57" y3="63" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="57" y4="63"/>
|
||||
<polygon y2="46" y3="46" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40.1961" closed="false" x3="50" antialias="false" x2="44" y1="40.3206"/>
|
||||
<line y2="41" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="57" antialias="false" length1="1.5" x2="57" end2="none" y1="39" length2="1.5"/>
|
||||
<terminal name="" y="-200" x="70" uuid="{dd5178d1-7a20-4530-bb1c-24cd5c4c5ae8}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-200" x="20" uuid="{bc230f0d-ee9a-4bb0-996f-09d161942702}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-200" x="0" uuid="{168bae35-99d8-4536-9975-b35d30d8d8ca}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-200" x="50" uuid="{1a1b0942-da45-47a1-bb07-164fbacd6970}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-29.9" x="-10" uuid="{766d1a8d-ff0c-4292-83a8-c0190d0bd4bc}" orientation="w" type="Generic"/>
|
||||
<terminal name="" y="-200" x="10" uuid="{f7cb8b6d-f794-4d34-946d-407d4ac91439}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-200" x="60" uuid="{f1cdef52-ab84-49a6-b441-d1924f9ff506}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-89.9" x="-10" uuid="{0d98d4c6-be61-43ce-96d1-0344fc26c330}" orientation="w" type="Generic"/>
|
||||
<terminal name="" y="-29.9" x="60" uuid="{11ff64d1-0c82-4ea6-af78-01f32a3f15a8}" orientation="e" type="Generic"/>
|
||||
<terminal name="" y="-200" x="-20" uuid="{0ee6c34f-f674-4121-97f3-316894ad5959}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-89.9" x="60" uuid="{e36db2ba-380e-4ef0-8a82-9ff54931f018}" orientation="e" type="Generic"/>
|
||||
<terminal name="" y="-200" x="-10" uuid="{3f56c9b9-9975-4bec-9dc2-09af0d5e57c1}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-200" x="30" uuid="{015e6c78-011d-4c3d-81ee-bcac3fc21787}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-160" x="0" uuid="{bf9c2434-5b64-43ab-a88d-aa3f9f99a955}" orientation="n" type="Generic"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,146 @@
|
||||
<definition height="330" hotspot_y="206" width="120" type="element" hotspot_x="35" version="0.90" link_type="simple">
|
||||
<uuid uuid="{220f7b11-9c37-429c-b280-511d5e7376b6}"/>
|
||||
<names>
|
||||
<name lang="en">cosy_EC6133C</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="description" show="1">cosy_EC6133C</elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Ewon</elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<line y2="40" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="57" antialias="false" length1="1.5" x2="57" end2="none" y1="39" length2="1.5"/>
|
||||
<text y="-160" text="ST" x="59" rotation="270" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" y="-165" antialias="false" x="-5" diameter="10"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:white;color:black" y="-166" height="6" antialias="false" x="40" rx="0" ry="0" width="2"/>
|
||||
<polygon y2="111" y3="111" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="1" closed="false" x3="-9" antialias="false" x2="1" x4="-9" y1="106" y4="106"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:none;color:black" y="-161" antialias="false" x="-1" diameter="2"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-157.982" height="6" antialias="false" x="30" rx="0" ry="0" width="6"/>
|
||||
<text y="-119" text="2" x="20" rotation="270" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<circle style="line-style:normal;line-weight:thin;filling:black;color:black" y="-136" antialias="false" x="-18" diameter="4"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:white;color:black" y="-168" height="8" antialias="false" x="48" rx="0" ry="0" width="2"/>
|
||||
<rect style="line-style:dotted;line-weight:thin;filling:none;color:gray" y="30" height="20" antialias="false" x="-20" rx="0" ry="0" width="90"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-157.973" height="6" antialias="false" x="54" rx="0" ry="0" width="6"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:black;color:black" y="32.5" antialias="false" x="42.5" diameter="3"/>
|
||||
<dynamic_text text_from="ElementInfo" Valignment="AlignTop" y="-221" frame="false" text_width="-1" Halignment="AlignLeft" x="-32" z="13" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" keep_visual_rotation="true" rotation="0" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-157.973" height="6" antialias="false" x="38" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-157.973" height="6" antialias="false" x="46" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="60" height="50" antialias="false" x="-8" rx="0" ry="0" width="8"/>
|
||||
<text y="-131" text="PWR" x="18" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:white;color:black" y="-164" height="4" antialias="false" x="32" rx="0" ry="0" width="2"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="67" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<text y="-188" text="O-" x="-22" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="39" height="1" antialias="false" x="6" rx="0" ry="0" width="3"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="97" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="77" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<text y="110" text="EC6133H" x="70" rotation="270" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="39" height="1" antialias="false" x="-4" rx="0" ry="0" width="3"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="107" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="14" rx="0" ry="0" width="6"/>
|
||||
<text y="-119" text="1" x="31" rotation="270" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<polygon y2="77" y3="83" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="77" y4="83"/>
|
||||
<polygon y2="67" y3="73" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="67" y4="73"/>
|
||||
<text y="110" text="Cosy 131" x="60" rotation="270" color="#000000" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-122.709" height="6" antialias="false" x="-7.7269" rx="0" ry="0" width="6"/>
|
||||
<polygon y2="97" y3="103" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="97" y4="103"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="35" height="10" antialias="false" x="-10" rx="0" ry="0" width="30"/>
|
||||
<text y="-131" text="DI 2" x="48" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-123" height="6" antialias="false" x="4" rx="0" ry="0" width="10"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="39" height="1" antialias="false" x="1" rx="0" ry="0" width="3"/>
|
||||
<line y2="-189.9" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="67.2" antialias="false" length1="1.5" x2="72.2" end2="none" y1="-189.9" length2="1.5"/>
|
||||
<polygon y2="107" y3="113" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="107" y4="113"/>
|
||||
<text y="-196" text="6" x="35" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="39" height="1" antialias="false" x="11" rx="0" ry="0" width="3"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="87" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-122.709" height="6" antialias="false" x="52.2731" rx="0" ry="0" width="6"/>
|
||||
<text y="-196" text="4" x="15" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-122.709" height="6" antialias="false" x="35.2731" rx="0" ry="0" width="10"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="37" height="2" antialias="false" x="-6" rx="0" ry="0" width="22"/>
|
||||
<polygon y2="87" y3="93" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="87" y4="93"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="33" height="14" antialias="false" x="-12" rx="0" ry="0" width="34"/>
|
||||
<text y="-131" text="KEY" x="38" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-196" text="1" x="-15" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-188" text="I-" x="8" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-131" text="T2M" x="58" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-196" text="3" x="5" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-115" height="50" antialias="false" x="-20" rx="0" ry="0" width="40"/>
|
||||
<text y="-188" text="I2" x="28" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="1" text="4" x="20" rotation="270" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-196" text="8" x="65" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-131" text="USR" x="28" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-190" text="_" x="59" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-196" text="5" x="25" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="24" rx="0" ry="0" width="6"/>
|
||||
<text y="-196" text="7" x="55" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="1" text="3" x="32" rotation="270" color="#000000" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-188" text="+" x="48" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-188" text="O" x="-12" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-196" text="2" x="-5" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-188" text="I1" x="18" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text y="-188" text="O+" x="-2" rotation="0" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="24" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="43.6" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="64" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-2.709" height="6" antialias="false" x="-7.7269" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="34" rx="0" ry="0" width="6"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-115" height="50" antialias="false" x="30" rx="0" ry="0" width="40"/>
|
||||
<rect style="line-style:dotted;line-weight:thin;filling:none;color:gray" y="-175" height="30" antialias="false" x="-25" rx="0" ry="0" width="100"/>
|
||||
<line y2="-187.9" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="69" antialias="false" length1="1.5" x2="70" end2="none" y1="-187.9" length2="1.5"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="54" rx="0" ry="0" width="6"/>
|
||||
<text y="-196" text="9" x="75" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<line y2="-188.9" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="68" antialias="false" length1="1.5" x2="71" end2="none" y1="-188.9" length2="1.5"/>
|
||||
<text y="-131" text="B/1" x="8" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-3" height="6" antialias="false" x="4" rx="0" ry="0" width="10"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-2.709" height="6" antialias="false" x="52.2731" rx="0" ry="0" width="6"/>
|
||||
<text y="-131" text="@" x="68" rotation="270" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<polygon x9="63.316" y6="-84.525" y7="-84.525" x6="63.316" x11="58.318" y4="-79.164" x10="63.316" y13="-109.54" y10="-100.606" y3="-70.23" y9="-95.245" x1="34.9974" x12="58.318" y11="-100.606" y5="-79.164" x3="58.318" x2="34.9974" x4="58.318" x13="34.9974" y2="-70.23" antialias="false" x7="66.647" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-109.54" x8="66.647" closed="false" y12="-109.54" y8="-95.245" x5="63.316"/>
|
||||
<polygon x9="-8.4822" y6="-70.333" y7="-70.333" x6="-8.4822" x11="-13.5041" y4="-79.286" x10="-8.4822" y13="-95.402" y10="-100.774" y3="-84.658" y9="-109.728" x1="-16.852" x12="-13.5041" y11="-100.774" y5="-79.286" x3="-13.5041" x2="-16.852" x4="-13.5041" x13="-16.852" y2="-84.658" antialias="false" x7="14.9535" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-95.402" x8="14.9535" closed="false" y12="-95.402" y8="-109.728" x5="-8.4822"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-2.709" height="6" antialias="false" x="35.2731" rx="0" ry="0" width="10"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-55" height="50" antialias="false" x="30" rx="0" ry="0" width="39.9789"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-55" height="50" antialias="false" x="-20" rx="0" ry="0" width="40"/>
|
||||
<polygon x9="-8.4576" y6="-10.133" y7="-10.133" x6="-8.4576" x11="-13.4795" y4="-19.086" x10="-8.4576" y13="-35.202" y10="-40.574" y3="-24.458" y9="-49.528" x1="-16.8274" x12="-13.4795" y11="-40.574" y5="-19.086" x3="-13.4795" x2="-16.8274" x4="-13.4795" x13="-16.8274" y2="-24.458" antialias="false" x7="14.9781" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-35.202" x8="14.9781" closed="false" y12="-35.202" y8="-49.528" x5="-8.4576"/>
|
||||
<polygon x9="63.3157" y6="-24.512" y7="-24.512" x6="63.3157" x11="58.3184" y4="-19.151" x10="63.3157" y13="-49.527" y10="-40.593" y3="-10.217" y9="-35.232" x1="34.9974" x12="58.3184" y11="-40.593" y5="-19.151" x3="58.3184" x2="34.9974" x4="58.3184" x13="34.9974" y2="-10.217" antialias="false" x7="66.6473" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-49.527" x8="66.6473" closed="false" y12="-49.527" y8="-35.232" x5="63.3157"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:none;color:black" y="-200" height="319.9" antialias="false" x="-30" rx="0" ry="0" width="110"/>
|
||||
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" y="-140" height="10" antialias="false" x="4" rx="0" ry="0" width="6"/>
|
||||
<line y2="20" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-30" antialias="false" length1="1.5" x2="80" end2="none" y1="20" length2="1.5"/>
|
||||
<line y2="-189.9" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="69.7" antialias="false" length1="1.5" x2="69.7" end2="none" y1="-193.9" length2="1.5"/>
|
||||
<text y="110" text="EWON" x="40" rotation="270" color="#000000" font="Sans Serif,11,-1,5,50,0,0,0,0,0"/>
|
||||
<circle style="line-style:normal;line-weight:thin;filling:none;color:black" y="-138" antialias="false" x="-20" diameter="8"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:black;color:black" y="37.5" antialias="false" x="27.5" diameter="5"/>
|
||||
<polygon y2="39.9968" y3="38" style="line-style:normal;line-weight:normal;filling:black;color:black" x1="30" closed="false" x3="56" antialias="false" x5="59.3547" x2="59.7213" x4="56" y5="40.1384" y1="40" y4="42"/>
|
||||
<line y2="40" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="30" antialias="false" length1="1.5" x2="30" end2="none" y1="42" length2="1.5"/>
|
||||
<polygon y2="34" y3="34" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="36.1864" closed="false" x3="44" antialias="false" x2="40" y1="39.7229"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:black;color:black" y="45" height="2" antialias="false" x="50" rx="0" ry="0" width="2"/>
|
||||
<polygon y2="59" y3="59" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-9" closed="false" x3="1" antialias="false" x2="-9" x4="1" y1="64" y4="64"/>
|
||||
<arc style="line-style:normal;line-weight:thin;filling:none;color:black" y="57" height="6" start="269.125" antialias="true" angle="180.813" x="-24" width="6"/>
|
||||
<polygon y2="57" y3="63" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-21" closed="false" x3="-30" antialias="false" x2="-30" x4="-21" y1="57" y4="63"/>
|
||||
<polygon y2="46" y3="46" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40.1961" closed="false" x3="50" antialias="false" x2="44" y1="40.3206"/>
|
||||
<line y2="41" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="57" antialias="false" length1="1.5" x2="57" end2="none" y1="39" length2="1.5"/>
|
||||
<terminal name="" y="-200" x="70" uuid="{dd5178d1-7a20-4530-bb1c-24cd5c4c5ae8}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-200" x="20" uuid="{bc230f0d-ee9a-4bb0-996f-09d161942702}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-200" x="0" uuid="{168bae35-99d8-4536-9975-b35d30d8d8ca}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-200" x="50" uuid="{1a1b0942-da45-47a1-bb07-164fbacd6970}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-29.9" x="-10" uuid="{766d1a8d-ff0c-4292-83a8-c0190d0bd4bc}" orientation="w" type="Generic"/>
|
||||
<terminal name="" y="-200" x="10" uuid="{f7cb8b6d-f794-4d34-946d-407d4ac91439}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-200" x="60" uuid="{f1cdef52-ab84-49a6-b441-d1924f9ff506}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-89.9" x="-10" uuid="{0d98d4c6-be61-43ce-96d1-0344fc26c330}" orientation="w" type="Generic"/>
|
||||
<terminal name="" y="-29.9" x="60" uuid="{11ff64d1-0c82-4ea6-af78-01f32a3f15a8}" orientation="e" type="Generic"/>
|
||||
<terminal name="" y="-200" x="-20" uuid="{0ee6c34f-f674-4121-97f3-316894ad5959}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-89.9" x="60" uuid="{e36db2ba-380e-4ef0-8a82-9ff54931f018}" orientation="e" type="Generic"/>
|
||||
<terminal name="" y="-200" x="-10" uuid="{3f56c9b9-9975-4bec-9dc2-09af0d5e57c1}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-200" x="30" uuid="{015e6c78-011d-4c3d-81ee-bcac3fc21787}" orientation="n" type="Generic"/>
|
||||
<terminal name="" y="-160" x="0" uuid="{bf9c2434-5b64-43ab-a88d-aa3f9f99a955}" orientation="n" type="Generic"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,5 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="en">ewon cosy 131</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -1,63 +0,0 @@
|
||||
<definition version="0.90" type="element" link_type="simple" height="450" width="100" hotspot_y="216" hotspot_x="45">
|
||||
<uuid uuid="{40e1f46e-86a5-4d60-9ac1-aa4506da62d5}"/>
|
||||
<names>
|
||||
<name lang="fr">EWON</name>
|
||||
<name lang="cs">EWON</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation name="manufacturer" show="1">Ewon</elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<circle y="-76" x="-24" diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line y2="135" end2="none" y1="141" x1="-7" length2="1.5" x2="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" end1="none" length1="1.5"/>
|
||||
<circle y="-76" x="3" diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<arc y="139" x="-8" height="10" angle="-32" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" start="-180"/>
|
||||
<arc y="134" x="2" height="10" angle="-120" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" start="-240"/>
|
||||
<circle y="-106" x="-24" diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line y2="178" end2="none" y1="184" x1="4" length2="1.5" x2="-7" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" end1="none" length1="1.5"/>
|
||||
<circle y="-106" x="3" diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<circle y="-154" x="-24" diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<arc y="170" x="-8" height="10" angle="-30" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" start="-150"/>
|
||||
<arc y="175" x="2" height="10" angle="-120" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" start="0"/>
|
||||
<circle y="-131" x="-24" diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line y2="174" end2="none" y1="144" x1="-8" length2="1.5" x2="-8" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5"/>
|
||||
<circle y="-154" x="3" diameter="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<dynamic_text Valignment="AlignTop" y="24.5" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" keep_visual_rotation="true" x="-21" rotation="0" text_width="-1" text_from="ElementInfo" Halignment="AlignLeft" frame="false" z="14" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y2="179" end2="none" y1="139" x1="12" length2="1.5" x2="12" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" end1="none" length1="1.5"/>
|
||||
<polygon x1="18.556" y4="-32.1111" y3="-32.1111" x2="-1.444" y11="3.889" y9="-2.111" y10="-2.111" y14="-38.1111" y1="-38.1111" x6="-13.444" x14="18.556" style="line-style:normal;line-weight:thin;filling:none;color:black" x9="-7.444" x5="-7.444" y8="-12.111" x12="20.556" x11="-1.444" y7="-12.111" y13="-38.1111" x4="-7.444" x13="20.556" y2="-38.1111" x8="-7.444" closed="false" x7="-13.444" x3="-1.444" y5="-22.1111" x10="-1.444" antialias="false" y6="-22.1111" y12="3.889"/>
|
||||
<rect y="-42" x="-14" height="50" rx="0" width="40" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/>
|
||||
<circle y="177" x="5" diameter="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
|
||||
<dynamic_text Valignment="AlignTop" y="-211.327" uuid="{b94f175a-e9fb-48a5-9366-c78aca207388}" keep_visual_rotation="true" x="-15.6634" rotation="0" text_width="-1" text_from="UserText" Halignment="AlignLeft" frame="false" z="18" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal">
|
||||
<text>WON</text>
|
||||
</dynamic_text>
|
||||
<rect y="-210" x="-39" height="420" rx="0" width="87" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<circle y="137" x="5" diameter="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
|
||||
<text y="-190" x="-20" text="E" rotation="0" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<circle y="157" x="5" diameter="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
|
||||
<circle y="142" x="-5" diameter="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
|
||||
<rect y="211" x="1" height="12" rx="0" width="48" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<circle y="167" x="5" diameter="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
|
||||
<circle y="147" x="5" diameter="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
|
||||
<circle y="162" x="-5" diameter="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
|
||||
<circle y="172" x="-5" diameter="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
|
||||
<circle y="152" x="-5" diameter="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
|
||||
<terminal y="225" uuid="{3082ee59-3994-4502-9bb9-e1110b51cf74}" name="" x="40" type="Generic" orientation="s"/>
|
||||
<terminal y="225" uuid="{c4ca02dd-ffda-459a-b011-10bd243a166f}" name="" x="10" type="Generic" orientation="s"/>
|
||||
<terminal y="159.5" uuid="{e9816ff4-5be1-4160-be3d-3daeb649970a}" name="" x="2" type="Generic" orientation="w"/>
|
||||
<terminal y="-22" uuid="{3ea8cebf-de8a-4f74-8daf-554d00ac376e}" name="" x="-14" type="Generic" orientation="w"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,122 +0,0 @@
|
||||
<definition link_type="simple" type="element" width="160" hotspot_x="77" height="390" version="0.90" hotspot_y="194">
|
||||
<uuid uuid="{4acb056a-4a06-4c07-a25f-4f804e4818a5}"/>
|
||||
<names>
|
||||
<name lang="de">ewon_flexy205_gsm_flb3204</name>
|
||||
<name lang="fr">ewon_flexy205_gsm_flb3204</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">Flexy205 GSM FLB3204</elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text x="-39" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="FLB 3204" rotation="0" y="8"/>
|
||||
<text x="77" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Flexy 205" rotation="270" y="81"/>
|
||||
<text x="-30.3502" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" text="STAT" rotation="270" y="-168.039"/>
|
||||
<text x="-58" color="#000000" font="Sans Serif,11,-1,5,50,0,0,0,0,0" text="EWON" rotation="270" y="71"/>
|
||||
<rect x="-16" width="2" height="6" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" y="-175"/>
|
||||
<rect x="-34" width="6" height="6" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="-165.009"/>
|
||||
<rect x="-8" width="2" height="8" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" y="-177"/>
|
||||
<rect x="-10" width="6" height="6" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="-165"/>
|
||||
<rect x="-26" width="6" height="6" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="-165"/>
|
||||
<text x="-52" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" text="O-" rotation="0" y="186"/>
|
||||
<rect x="-18" width="6" height="6" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="-165"/>
|
||||
<rect x="-30" width="6" height="10" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="167.1"/>
|
||||
<text x="5.4" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="DI 2" rotation="270" y="176.1"/>
|
||||
<line end2="none" length2="1.5" y1="183.1" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="58" antialias="false" x2="63" y2="183.1" length1="1.5"/>
|
||||
<dynamic_text x="-90" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" keep_visual_rotation="true" text_from="ElementInfo" Halignment="AlignLeft" frame="false" z="14" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" text_width="-1" rotation="0" Valignment="AlignTop" y="-190">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="14" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="6" rotation="270" y="188"/>
|
||||
<text x="-6" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="4" rotation="270" y="188"/>
|
||||
<text x="-10" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="DI 1" rotation="270" y="176.1"/>
|
||||
<text x="-46" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="1" rotation="270" y="188"/>
|
||||
<text x="-11" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" text="I-" rotation="0" y="186"/>
|
||||
<text x="21" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="DO" rotation="270" y="176.1"/>
|
||||
<text x="37" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="T2M" rotation="270" y="176.1"/>
|
||||
<text x="-24" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="3" rotation="270" y="188"/>
|
||||
<rect x="30.5999" width="6" height="7.61806" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="30"/>
|
||||
<rect x="-40.2" width="40.1754" height="50.1393" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="39.9"/>
|
||||
<text x="8" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" text="I2" rotation="0" y="186"/>
|
||||
<text x="-15.2463" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="1" rotation="270" y="157.379"/>
|
||||
<text x="54" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="8" rotation="270" y="188"/>
|
||||
<text x="-25.5" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="USR" rotation="270" y="175.3"/>
|
||||
<text x="49" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="184"/>
|
||||
<text x="4" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="5" rotation="270" y="188"/>
|
||||
<rect x="-30" width="6" height="10" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="167.1"/>
|
||||
<text x="44" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="7" rotation="270" y="188"/>
|
||||
<text x="27.9952" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="2" rotation="270" y="157.189"/>
|
||||
<text x="38" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="186"/>
|
||||
<text x="-42" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" text="O" rotation="0" y="186"/>
|
||||
<text x="-15.7318" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="3" rotation="270" y="35.0916"/>
|
||||
<text x="-36" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="2" rotation="270" y="188"/>
|
||||
<text x="-2" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" text="I1" rotation="0" y="186"/>
|
||||
<text x="-33" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" text="O+" rotation="0" y="186"/>
|
||||
<rect x="-30" width="6" height="10" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="167.1"/>
|
||||
<rect x="17" width="6" height="10" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="167.1"/>
|
||||
<rect x="1" width="6" height="10" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="167.1"/>
|
||||
<rect x="50" width="6" height="10" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="167.1"/>
|
||||
<rect x="-27.7269" width="6" height="7.61806" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="152.291"/>
|
||||
<rect x="-14" width="6" height="10" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="167.1"/>
|
||||
<rect x="10" width="39.9789" height="50.03" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="40.1"/>
|
||||
<rect x="10" width="60" height="190" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" y="-179.9"/>
|
||||
<line end2="none" length2="1.5" y1="185.1" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="60" antialias="false" x2="61" y2="185.1" length1="1.5"/>
|
||||
<rect x="33" width="6" height="10" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="167.1"/>
|
||||
<text x="64" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="9" rotation="270" y="188"/>
|
||||
<line end2="none" length2="1.5" y1="184.1" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="59" antialias="false" x2="62" y2="184.1" length1="1.5"/>
|
||||
<text x="-42" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="PWR" rotation="270" y="176.1"/>
|
||||
<rect x="-11.7269" width="6" height="7.61806" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="152.291"/>
|
||||
<rect x="31.2731" width="6" height="7.61806" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="152.291"/>
|
||||
<text x="54" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="BI 1" rotation="270" y="176.1"/>
|
||||
<text x="26.94" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" text="4" rotation="270" y="34.7122"/>
|
||||
<rect x="-12.4" width="6" height="7.61806" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="30"/>
|
||||
<polygon y3="84.77" x10="43.316" x4="38.318" y9="59.755" y8="59.755" x11="38.318" y12="45.46" x12="38.318" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x3="38.318" x8="46.647" x2="14.9974" y13="45.46" x6="43.316" x5="43.316" y11="54.394" y2="84.77" y6="70.475" y5="75.836" x1="14.9974" y7="70.475" x7="46.647" y10="54.394" y1="45.46" x9="43.316" y4="75.836" x13="14.9974"/>
|
||||
<polygon y3="70.342" x10="-28.4822" x4="-33.5041" y9="45.272" y8="45.272" x11="-33.5041" y12="59.598" x12="-33.5041" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x3="-33.5041" x8="-5.0465" x2="-36.852" y13="59.598" x6="-28.4822" x5="-28.4822" y11="54.226" y2="70.342" y6="84.667" y5="75.714" x1="-36.852" y7="84.667" x7="-5.0465" y10="54.226" y1="59.598" x9="-28.4822" y4="75.714" x13="-36.852"/>
|
||||
<rect x="15.2731" width="6" height="7.61806" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="152.291"/>
|
||||
<text x="-50" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="P3" rotation="0" y="88.1"/>
|
||||
<rect x="-28.4" width="6" height="7.61806" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="30"/>
|
||||
<text x="50.2941" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="P4" rotation="0" y="87.3817"/>
|
||||
<rect x="14.6" width="6" height="7.61806" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="30"/>
|
||||
<rect x="10" width="39.9789" height="50.03" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="100.113"/>
|
||||
<text x="-50" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="P1" rotation="0" y="108.1"/>
|
||||
<text x="50" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="P2" rotation="0" y="110.1"/>
|
||||
<rect x="-40.1754" width="40.1754" height="50.1393" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="100.1"/>
|
||||
<polygon y3="130.542" x10="-28.4576" x4="-33.4795" y9="105.472" y8="105.472" x11="-33.4795" y12="119.798" x12="-33.4795" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x3="-33.4795" x8="-5.02192" x2="-36.8274" y13="119.798" x6="-28.4576" x5="-28.4576" y11="114.426" y2="130.542" y6="144.867" y5="135.914" x1="-36.8274" y7="144.867" x7="-5.02192" y10="114.426" y1="119.798" x9="-28.4576" y4="135.914" x13="-36.8274"/>
|
||||
<polygon y3="144.783" x10="43.3157" x4="38.3184" y9="119.768" y8="119.768" x11="38.3184" y12="105.473" x12="38.3184" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x3="38.3184" x8="46.6473" x2="14.9974" y13="105.473" x6="43.3157" x5="43.3157" y11="114.407" y2="144.783" y6="130.488" y5="135.849" x1="14.9974" y7="130.488" x7="46.6473" y10="114.407" y1="105.473" x9="43.3157" y4="135.849" x13="14.9974"/>
|
||||
<rect x="-70" width="150" height="380" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" y="-189.9"/>
|
||||
<rect x="-46" width="6" height="10" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="0" y="167.1"/>
|
||||
<polygon y3="156.1" x3="-35" y1="125.1" style="line-style:normal;line-weight:hight;filling:none;color:black" x1="-60" antialias="false" x2="-60" y2="156.1" closed="false"/>
|
||||
<text x="-62" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="LAN" rotation="90" y="106.1"/>
|
||||
<line end2="none" length2="1.5" y1="20.1" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-70" antialias="false" x2="80" y2="20.1" length1="1.5"/>
|
||||
<rect x="-60" width="60" height="190" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" y="-179.9"/>
|
||||
<line end2="none" length2="1.5" y1="179.1" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="60.5" antialias="false" x2="60.5" y2="183.1" length1="1.5"/>
|
||||
<rect x="-60" width="60" height="10" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" y="-167"/>
|
||||
<rect x="-24" width="2" height="4" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" rx="0" y="-173"/>
|
||||
<circle x="-40" diameter="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="-110"/>
|
||||
<circle x="-31" diameter="2" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="-101"/>
|
||||
<terminal x="40" uuid="{e36db2ba-380e-4ef0-8a82-9ff54931f018}" type="Generic" name="" orientation="e" y="65.1"/>
|
||||
<terminal x="50" uuid="{f1cdef52-ab84-49a6-b441-d1924f9ff506}" type="Generic" name="" orientation="s" y="190"/>
|
||||
<terminal x="40" uuid="{11ff64d1-0c82-4ea6-af78-01f32a3f15a8}" type="Generic" name="" orientation="e" y="125.1"/>
|
||||
<terminal x="-30" uuid="{0d98d4c6-be61-43ce-96d1-0344fc26c330}" type="Generic" name="" orientation="w" y="65.1"/>
|
||||
<terminal x="-40" uuid="{3f56c9b9-9975-4bec-9dc2-09af0d5e57c1}" type="Generic" name="" orientation="s" y="190"/>
|
||||
<terminal x="-10" uuid="{f7cb8b6d-f794-4d34-946d-407d4ac91439}" type="Generic" name="" orientation="s" y="190"/>
|
||||
<terminal x="-30" uuid="{c4469a6b-ec42-4cd8-93e5-6bf42574581f}" type="Generic" name="" orientation="n" y="-100"/>
|
||||
<terminal x="60" uuid="{dd5178d1-7a20-4530-bb1c-24cd5c4c5ae8}" type="Generic" name="" orientation="s" y="190.1"/>
|
||||
<terminal x="-50" uuid="{0ee6c34f-f674-4121-97f3-316894ad5959}" type="Generic" name="" orientation="s" y="190"/>
|
||||
<terminal x="10" uuid="{015e6c78-011d-4c3d-81ee-bcac3fc21787}" type="Generic" name="" orientation="s" y="190"/>
|
||||
<terminal x="0" uuid="{bc230f0d-ee9a-4bb0-996f-09d161942702}" type="Generic" name="" orientation="s" y="190"/>
|
||||
<terminal x="-30" uuid="{168bae35-99d8-4536-9975-b35d30d8d8ca}" type="Generic" name="" orientation="s" y="190"/>
|
||||
<terminal x="-30" uuid="{766d1a8d-ff0c-4292-83a8-c0190d0bd4bc}" type="Generic" name="" orientation="w" y="125.1"/>
|
||||
<terminal x="40" uuid="{1a1b0942-da45-47a1-bb07-164fbacd6970}" type="Generic" name="" orientation="s" y="190"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,108 +0,0 @@
|
||||
<definition hotspot_x="74" link_type="simple" hotspot_y="194" type="element" width="160" height="390" version="0.90">
|
||||
<uuid uuid="{cbaace38-a243-4dbd-be36-a8bd119b2bf3}"/>
|
||||
<names>
|
||||
<name lang="de">ewon_flexy_205_plaint</name>
|
||||
<name lang="fr">ewon_flexy_205_plaint</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="description">ewon_flexy_205_plaint</elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text x="-52" text="O-" rotation="0" color="#000000" y="186" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="80" text="Flexy 205" rotation="270" color="#000000" y="80" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="5.4" text="DI 2" rotation="270" color="#000000" y="176.1" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<line y1="183.1" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="57.2" y2="183.1" length1="1.5" antialias="false" end1="none" x2="62.2" end2="none"/>
|
||||
<text x="14" text="6" rotation="270" color="#000000" y="188" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-6" text="4" rotation="270" color="#000000" y="188" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-10" text="DI 1" rotation="270" color="#000000" y="176.1" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-46" text="1" rotation="270" color="#000000" y="188" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-12" text="I-" rotation="0" color="#000000" y="186" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="21" text="DO" rotation="270" color="#000000" y="176.1" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="37" text="T2M" rotation="270" color="#000000" y="176.1" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-26" text="3" rotation="270" color="#000000" y="188" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect x="30.5999" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="30" height="7.61806" rx="0" antialias="false"/>
|
||||
<dynamic_text Valignment="AlignTop" x="-90" keep_visual_rotation="true" rotation="0" y="-190" text_from="ElementInfo" z="14" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" text_width="-1" Halignment="AlignLeft" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<rect x="-40.2" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="40.1754" y="39.9" height="50.1393" rx="0" antialias="false"/>
|
||||
<text x="8" text="I2" rotation="0" color="#000000" y="186" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-15.2463" text="1" rotation="270" color="#000000" y="157.379" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="54" text="8" rotation="270" color="#000000" y="188" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-26" text="USR" rotation="270" color="#000000" y="176.1" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="49.1" text="_" rotation="0" color="#000000" y="184" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="4" text="5" rotation="270" color="#000000" y="188" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect x="-30" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="167.1" height="10" rx="0" antialias="false"/>
|
||||
<text x="44" text="7" rotation="270" color="#000000" y="188" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="27.9952" text="2" rotation="270" color="#000000" y="157.189" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="38" text="+" rotation="0" color="#000000" y="186" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-42" text="O" rotation="0" color="#000000" y="186" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-15.7318" text="3" rotation="270" color="#000000" y="35.0916" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-36" text="2" rotation="270" color="#000000" y="188" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-2" text="I1" rotation="0" color="#000000" y="186" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-32" text="O+" rotation="0" color="#000000" y="186" font="Sans Serif,3,-1,5,50,0,0,0,0,0"/>
|
||||
<rect x="-30" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="167.1" height="10" rx="0" antialias="false"/>
|
||||
<rect x="17" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="167.1" height="10" rx="0" antialias="false"/>
|
||||
<rect x="1" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="167.1" height="10" rx="0" antialias="false"/>
|
||||
<rect x="50" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="167.1" height="10" rx="0" antialias="false"/>
|
||||
<rect x="-27.7269" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="152.291" height="7.61806" rx="0" antialias="false"/>
|
||||
<rect x="-14" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="167.1" height="10" rx="0" antialias="false"/>
|
||||
<rect x="10" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="39.9789" y="40.1" height="50.03" rx="0" antialias="false"/>
|
||||
<rect x="10" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="60" y="-179.9" height="190" rx="0" antialias="false"/>
|
||||
<line y1="185.1" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="59" y2="185.1" length1="1.5" antialias="false" end1="none" x2="60" end2="none"/>
|
||||
<rect x="33" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="167.1" height="10" rx="0" antialias="false"/>
|
||||
<text x="64" text="9" rotation="270" color="#000000" y="188" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<line y1="184.1" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="58" y2="184.1" length1="1.5" antialias="false" end1="none" x2="61" end2="none"/>
|
||||
<text x="-42" text="PWR" rotation="270" color="#000000" y="176.1" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect x="-11.7269" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="152.291" height="7.61806" rx="0" antialias="false"/>
|
||||
<rect x="31.2731" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="152.291" height="7.61806" rx="0" antialias="false"/>
|
||||
<text x="54" text="BI 1" rotation="270" color="#000000" y="176.1" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="26.94" text="4" rotation="270" color="#000000" y="34.7122" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
|
||||
<rect x="-12.4" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="30" height="7.61806" rx="0" antialias="false"/>
|
||||
<polygon y8="59.755" y3="84.77" x10="43.316" closed="false" y7="70.475" y2="84.77" y4="75.836" x6="43.316" x8="46.647" x11="38.318" y1="45.46" y10="54.394" y13="45.46" x4="38.318" y11="54.394" y9="59.755" x3="38.318" style="line-style:normal;line-weight:thin;filling:none;color:black" y6="70.475" x1="14.9974" x13="14.9974" x5="43.316" antialias="false" x2="14.9974" y5="75.836" x9="43.316" x7="46.647" x12="38.318" y12="45.46"/>
|
||||
<polygon y8="45.272" y3="70.342" x10="-28.4822" closed="false" y7="84.667" y2="70.342" y4="75.714" x6="-28.4822" x8="-5.0465" x11="-33.5041" y1="59.598" y10="54.226" y13="59.598" x4="-33.5041" y11="54.226" y9="45.272" x3="-33.5041" style="line-style:normal;line-weight:thin;filling:none;color:black" y6="84.667" x1="-36.852" x13="-36.852" x5="-28.4822" antialias="false" x2="-36.852" y5="75.714" x9="-28.4822" x7="-5.0465" x12="-33.5041" y12="59.598"/>
|
||||
<rect x="15.2731" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="152.291" height="7.61806" rx="0" antialias="false"/>
|
||||
<text x="-50" text="P3" rotation="0" color="#000000" y="88.1" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<rect x="-28.4" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="30" height="7.61806" rx="0" antialias="false"/>
|
||||
<text x="50.2941" text="P4" rotation="0" color="#000000" y="87.3817" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<rect x="14.6" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="30" height="7.61806" rx="0" antialias="false"/>
|
||||
<rect x="10" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="39.9789" y="100.113" height="50.03" rx="0" antialias="false"/>
|
||||
<text x="-50" text="P1" rotation="0" color="#000000" y="108.1" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="50" text="P2" rotation="0" color="#000000" y="110.1" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<rect x="-40.1754" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="40.1754" y="100.1" height="50.1393" rx="0" antialias="false"/>
|
||||
<polygon y8="105.472" y3="130.542" x10="-28.4576" closed="false" y7="144.867" y2="130.542" y4="135.914" x6="-28.4576" x8="-5.02192" x11="-33.4795" y1="119.798" y10="114.426" y13="119.798" x4="-33.4795" y11="114.426" y9="105.472" x3="-33.4795" style="line-style:normal;line-weight:thin;filling:none;color:black" y6="144.867" x1="-36.8274" x13="-36.8274" x5="-28.4576" antialias="false" x2="-36.8274" y5="135.914" x9="-28.4576" x7="-5.02192" x12="-33.4795" y12="119.798"/>
|
||||
<polygon y8="119.768" y3="144.783" x10="43.3157" closed="false" y7="130.488" y2="144.783" y4="135.849" x6="43.3157" x8="46.6473" x11="38.3184" y1="105.473" y10="114.407" y13="105.473" x4="38.3184" y11="114.407" y9="119.768" x3="38.3184" style="line-style:normal;line-weight:thin;filling:none;color:black" y6="130.488" x1="14.9974" x13="14.9974" x5="43.3157" antialias="false" x2="14.9974" y5="135.849" x9="43.3157" x7="46.6473" x12="38.3184" y12="105.473"/>
|
||||
<rect x="-70" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="150" y="-189.9" height="380" rx="0" antialias="false"/>
|
||||
<rect x="-46" ry="0" style="line-style:normal;line-weight:thin;filling:none;color:black" width="6" y="167.1" height="10" rx="0" antialias="false"/>
|
||||
<polygon y3="156.1" closed="false" y1="125.1" style="line-style:normal;line-weight:hight;filling:none;color:black" x3="-34.5" x1="-59.5" y2="156.1" antialias="false" x2="-59.5"/>
|
||||
<text x="-62" text="LAN" rotation="90" color="#000000" y="104.1" font="Sans Serif,6,-1,5,50,0,0,0,0,0"/>
|
||||
<line y1="20.1" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-70" y2="20.1" length1="1.5" antialias="false" end1="none" x2="80" end2="none"/>
|
||||
<rect x="-60" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="60" y="-179.9" height="190" rx="0" antialias="false"/>
|
||||
<line y1="179.1" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="59.7" y2="183.1" length1="1.5" antialias="false" end1="none" x2="59.7" end2="none"/>
|
||||
<text x="-55" text="EWON" rotation="270" color="#000000" y="70" font="Sans Serif,11,-1,5,50,0,0,0,0,0"/>
|
||||
<terminal orientation="s" x="60" type="Generic" y="190" uuid="{dd5178d1-7a20-4530-bb1c-24cd5c4c5ae8}" name=""/>
|
||||
<terminal orientation="s" x="0" type="Generic" y="190" uuid="{bc230f0d-ee9a-4bb0-996f-09d161942702}" name=""/>
|
||||
<terminal orientation="s" x="-30" type="Generic" y="190" uuid="{168bae35-99d8-4536-9975-b35d30d8d8ca}" name=""/>
|
||||
<terminal orientation="s" x="40" type="Generic" y="190" uuid="{1a1b0942-da45-47a1-bb07-164fbacd6970}" name=""/>
|
||||
<terminal orientation="w" x="-30" type="Generic" y="125.1" uuid="{766d1a8d-ff0c-4292-83a8-c0190d0bd4bc}" name=""/>
|
||||
<terminal orientation="s" x="-10" type="Generic" y="190" uuid="{f7cb8b6d-f794-4d34-946d-407d4ac91439}" name=""/>
|
||||
<terminal orientation="s" x="50" type="Generic" y="190" uuid="{f1cdef52-ab84-49a6-b441-d1924f9ff506}" name=""/>
|
||||
<terminal orientation="w" x="-30" type="Generic" y="65.1" uuid="{0d98d4c6-be61-43ce-96d1-0344fc26c330}" name=""/>
|
||||
<terminal orientation="e" x="40" type="Generic" y="125.1" uuid="{11ff64d1-0c82-4ea6-af78-01f32a3f15a8}" name=""/>
|
||||
<terminal orientation="s" x="-50" type="Generic" y="190" uuid="{0ee6c34f-f674-4121-97f3-316894ad5959}" name=""/>
|
||||
<terminal orientation="e" x="40" type="Generic" y="65.1" uuid="{e36db2ba-380e-4ef0-8a82-9ff54931f018}" name=""/>
|
||||
<terminal orientation="s" x="-40" type="Generic" y="190" uuid="{3f56c9b9-9975-4bec-9dc2-09af0d5e57c1}" name=""/>
|
||||
<terminal orientation="s" x="10" type="Generic" y="190" uuid="{015e6c78-011d-4c3d-81ee-bcac3fc21787}" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,129 @@
|
||||
<definition width="160" hotspot_x="75" type="element" hotspot_y="194" version="0.90" link_type="simple" height="390">
|
||||
<uuid uuid="{2a644200-cb76-4657-b669-e08b30db4fd0}"/>
|
||||
<names>
|
||||
<name lang="ru">flexy 205 базовый блок</name>
|
||||
<name lang="pl">flexy 205 jednostka podstawowa</name>
|
||||
<name lang="nb">flexy 205 baseenhet</name>
|
||||
<name lang="en">flexy 205 base unit</name>
|
||||
<name lang="sr">flexy 205 база</name>
|
||||
<name lang="el">flexy 205 βασική μονάδα</name>
|
||||
<name lang="es">flexy 205 unidad base</name>
|
||||
<name lang="ja">flexy 205 基本単位</name>
|
||||
<name lang="nl">flexy 205 basiseenheid</name>
|
||||
<name lang="fr">flexy 205 unité de base</name>
|
||||
<name lang="de">flexy 205 Basisgerät</name>
|
||||
<name lang="ro">flexy 205 unitate de baza</name>
|
||||
<name lang="it">flexy 205 unità base</name>
|
||||
<name lang="pt">flexy 205 unidade base</name>
|
||||
<name lang="cs">flexy 205 základní jednotka</name>
|
||||
<name lang="ar">flexy 205 وحدة قاعدة</name>
|
||||
<name lang="hr">flexy 205 osnovna jedinica</name>
|
||||
<name lang="da">flexy 205 basisenhed</name>
|
||||
<name lang="sl">flexy 205 osnovna enota</name>
|
||||
<name lang="ca">flexy 205 unitat base</name>
|
||||
<name lang="tr">flexy 205 ana ünite</name>
|
||||
<name lang="hu">flexy 205 alapegység</name>
|
||||
<name lang="mn">flexy 205 суурь нэгж</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="description">ewon_flexy_205_plaint</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text y="184" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O-" x="-52"/>
|
||||
<text y="80" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="270" text="Flexy 205" x="76.0414"/>
|
||||
<text y="176.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="DI 2" x="5.4"/>
|
||||
<line end1="none" x1="57.2" length2="1.5" length1="1.5" antialias="false" y1="182.1" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="62.2" y2="182.1"/>
|
||||
<text y="188" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="6" x="14"/>
|
||||
<text y="188" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="4" x="-6"/>
|
||||
<text y="176.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="DI 1" x="-10"/>
|
||||
<text y="188" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="1" x="-46"/>
|
||||
<text y="184" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I-" x="-12"/>
|
||||
<text y="176.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="DO" x="21"/>
|
||||
<text y="176.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="T2M" x="37"/>
|
||||
<text y="188" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="3" x="-26"/>
|
||||
<rect y="30" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="30.5999" height="7.61806"/>
|
||||
<dynamic_text y="-190" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" z="14" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-90">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<rect y="40" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-40" height="50"/>
|
||||
<text y="184" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I2" x="8"/>
|
||||
<text y="157.379" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="1" x="-15.2463"/>
|
||||
<text y="188" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="8" x="54"/>
|
||||
<text y="176.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="USR" x="-26"/>
|
||||
<text y="182" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="_" x="49.1"/>
|
||||
<text y="188" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="5" x="4"/>
|
||||
<rect y="167.1" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-30" height="10"/>
|
||||
<text y="188" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="7" x="44"/>
|
||||
<text y="157.189" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="2" x="27.9952"/>
|
||||
<text y="184" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="+" x="38"/>
|
||||
<text y="184" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O" x="-42"/>
|
||||
<text y="35.0916" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="3" x="-15.7318"/>
|
||||
<text y="188" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="2" x="-36"/>
|
||||
<text y="184" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="I1" x="-2"/>
|
||||
<text y="184" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="0" text="O+" x="-32"/>
|
||||
<rect y="167.1" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-30" height="10"/>
|
||||
<rect y="167.1" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="17" height="10"/>
|
||||
<rect y="167.1" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="1" height="10"/>
|
||||
<rect y="167.1" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="50" height="10"/>
|
||||
<rect y="152.291" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-27.7269" height="7.61806"/>
|
||||
<rect y="167.1" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-14" height="10"/>
|
||||
<rect y="40" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="10" height="50"/>
|
||||
<rect y="-180" width="60" rx="0" ry="0" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:gray" x="10" height="190"/>
|
||||
<line end1="none" x1="59" length2="1.5" length1="1.5" antialias="false" y1="184.1" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="60" y2="184.1"/>
|
||||
<rect y="167.1" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="33" height="10"/>
|
||||
<text y="188" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="9" x="64"/>
|
||||
<line end1="none" x1="58" length2="1.5" length1="1.5" antialias="false" y1="183.1" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="61" y2="183.1"/>
|
||||
<text y="176.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="PWR" x="-42"/>
|
||||
<rect y="152.291" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-11.7269" height="7.61806"/>
|
||||
<rect y="152.291" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="31.2731" height="7.61806"/>
|
||||
<text y="176.1" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="BI 1" x="54"/>
|
||||
<text y="34.7122" color="#000000" font="Sans Serif,2,-1,5,50,0,0,0,0,0" rotation="270" text="4" x="26.94"/>
|
||||
<rect y="30" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-12.4" height="7.61806"/>
|
||||
<polygon x4="38.318" x11="38.318" closed="false" x6="43.316" x10="43.316" y13="45.46" x13="14.9974" y2="84.77" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="46.647" x12="38.318" y6="70.475" y11="54.394" antialias="false" x8="46.647" y1="45.46" y4="75.836" y5="75.836" y12="45.46" y3="84.77" y7="70.475" y9="59.755" x3="38.318" x9="43.316" x2="14.9974" y8="59.755" x5="43.316" x1="14.9974" y10="54.394"/>
|
||||
<polygon x4="-33.5041" x11="-33.5041" closed="false" x6="-28.4822" x10="-28.4822" y13="59.598" x13="-36.852" y2="70.342" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="-5.0465" x12="-33.5041" y6="84.667" y11="54.226" antialias="false" x8="-5.0465" y1="59.598" y4="75.714" y5="75.714" y12="59.598" y3="70.342" y7="84.667" y9="45.272" x3="-33.5041" x9="-28.4822" x2="-36.852" y8="45.272" x5="-28.4822" x1="-36.852" y10="54.226"/>
|
||||
<rect y="152.291" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="15.2731" height="7.61806"/>
|
||||
<text y="87.5062" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="P3" x="-50.5938"/>
|
||||
<rect y="30" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-28.4" height="7.61806"/>
|
||||
<text y="87.6786" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="P4" x="50.591"/>
|
||||
<rect y="30" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="14.6" height="7.61806"/>
|
||||
<rect y="100" width="39.9789" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="10" height="50"/>
|
||||
<text y="109.691" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="P1" x="-50.6341"/>
|
||||
<text y="109.677" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="P2" x="50.4932"/>
|
||||
<rect y="100" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-40" height="50"/>
|
||||
<polygon x4="-33.4795" x11="-33.4795" closed="false" x6="-28.4576" x10="-28.4576" y13="119.798" x13="-36.8274" y2="130.542" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="-5.02192" x12="-33.4795" y6="144.867" y11="114.426" antialias="false" x8="-5.02192" y1="119.798" y4="135.914" y5="135.914" y12="119.798" y3="130.542" y7="144.867" y9="105.472" x3="-33.4795" x9="-28.4576" x2="-36.8274" y8="105.472" x5="-28.4576" x1="-36.8274" y10="114.426"/>
|
||||
<polygon x4="38.3184" x11="38.3184" closed="false" x6="43.3157" x10="43.3157" y13="105.473" x13="14.9974" y2="144.783" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="46.6473" x12="38.3184" y6="130.488" y11="114.407" antialias="false" x8="46.6473" y1="105.473" y4="135.849" y5="135.849" y12="105.473" y3="144.783" y7="130.488" y9="119.768" x3="38.3184" x9="43.3157" x2="14.9974" y8="119.768" x5="43.3157" x1="14.9974" y10="114.407"/>
|
||||
<rect y="-189.9" width="150" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-70" height="380"/>
|
||||
<rect y="167.1" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-46" height="10"/>
|
||||
<polygon x1="-50" y3="155" closed="false" antialias="false" y1="140" style="line-style:normal;line-weight:hight;filling:none;color:black" x2="-50" y2="155" x3="-35"/>
|
||||
<text y="121.195" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="90" text="LAN" x="-53.0375"/>
|
||||
<line end1="none" x1="-70" length2="1.5" length1="1.5" antialias="false" y1="20.1" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x2="80" y2="20.1"/>
|
||||
<rect y="-180" width="60" rx="0" ry="0" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:gray" x="-60" height="190"/>
|
||||
<line end1="none" x1="59.7" length2="1.5" length1="1.5" antialias="false" y1="178.1" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x2="59.7" y2="182.1"/>
|
||||
<text y="71.9597" color="#000000" font="Sans Serif,11,-1,5,50,0,0,0,0,0" rotation="270" text="EWON" x="-50.6651"/>
|
||||
<terminal y="190" type="Generic" orientation="s" uuid="{dd5178d1-7a20-4530-bb1c-24cd5c4c5ae8}" x="60" name=""/>
|
||||
<terminal y="190" type="Generic" orientation="s" uuid="{bc230f0d-ee9a-4bb0-996f-09d161942702}" x="0" name=""/>
|
||||
<terminal y="190" type="Generic" orientation="s" uuid="{1a1b0942-da45-47a1-bb07-164fbacd6970}" x="40" name=""/>
|
||||
<terminal y="190" type="Generic" orientation="s" uuid="{168bae35-99d8-4536-9975-b35d30d8d8ca}" x="-30" name=""/>
|
||||
<terminal y="125.1" type="Generic" orientation="w" uuid="{766d1a8d-ff0c-4292-83a8-c0190d0bd4bc}" x="-30" name=""/>
|
||||
<terminal y="190" type="Generic" orientation="s" uuid="{f7cb8b6d-f794-4d34-946d-407d4ac91439}" x="-10" name=""/>
|
||||
<terminal y="190" type="Generic" orientation="s" uuid="{f1cdef52-ab84-49a6-b441-d1924f9ff506}" x="50" name=""/>
|
||||
<terminal y="65.1" type="Generic" orientation="w" uuid="{0d98d4c6-be61-43ce-96d1-0344fc26c330}" x="-30" name=""/>
|
||||
<terminal y="125.1" type="Generic" orientation="e" uuid="{11ff64d1-0c82-4ea6-af78-01f32a3f15a8}" x="40" name=""/>
|
||||
<terminal y="190" type="Generic" orientation="s" uuid="{0ee6c34f-f674-4121-97f3-316894ad5959}" x="-50" name=""/>
|
||||
<terminal y="65.1" type="Generic" orientation="e" uuid="{e36db2ba-380e-4ef0-8a82-9ff54931f018}" x="40" name=""/>
|
||||
<terminal y="190" type="Generic" orientation="s" uuid="{3f56c9b9-9975-4bec-9dc2-09af0d5e57c1}" x="-40" name=""/>
|
||||
<terminal y="190" type="Generic" orientation="s" uuid="{015e6c78-011d-4c3d-81ee-bcac3fc21787}" x="10" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,76 @@
|
||||
<definition width="70" hotspot_x="65" type="element" hotspot_y="184" version="0.90" link_type="simple" height="200">
|
||||
<uuid uuid="{1636dc96-ead9-4197-9250-49b445403779}"/>
|
||||
<names>
|
||||
<name lang="en">fla3301_rs232</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="description">fla3301_rs232</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text y="-168" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="HD" x="-14"/>
|
||||
<polygon x18="-20.61" y8="-60.61" x14="-24.06" y18="-51.72" y4="-50.59" y2="-18.21" x4="-39.39" x22="-23.11" y3="-19.64" x29="-35.05" y15="-54.14" y17="-53.26" y19="-19.23" x28="-32.83" x31="-36.04" y13="-64.07" antialias="false" x11="-30.32" x1="-37.54" x20="-20.78" x24="-24.01" x13="-25.11" x19="-20.65" y10="-65.79" y20="-17.69" x12="-27.38" x5="-38.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x30="-36.02" y16="-54.13" x7="-36.04" x9="-35.27" y23="-15.63" x26="-27.02" x27="-29.9" y30="-9.2" y29="-6.3" x23="-24.01" y28="-4.24" y1="-17.5" x15="-24.07" x8="-36.04" y22="-16.23" x17="-20.74" y5="-52.04" y7="-52.95" x21="-21.63" y31="-16.93" y11="-66.69" x16="-21.87" y24="-9.44" y25="-6.51" y9="-63.58" x3="-39.36" x25="-24.87" y6="-52.74" y14="-61.2" y12="-66.07" x6="-37.63" x10="-33.19" y21="-16.48" y26="-4.37" x2="-38.86" y27="-3.54"/>
|
||||
<text y="-168" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="232" x="-22"/>
|
||||
<text y="8" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="FLA 3301" x="-39"/>
|
||||
<text y="-122" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="2 SERIAL PORTS" x="-2"/>
|
||||
<text y="-168" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="S2" x="-6"/>
|
||||
<dynamic_text y="-130" frame="false" text_width="-1" text_from="UserText" keep_visual_rotation="true" font="Sans Serif,4.57,-1,5,25,0,0,0,0,0" z="6" rotation="270" Valignment="AlignTop" uuid="{5d5c5757-1a91-45fd-9b7b-b6e994a95f8c}" Halignment="AlignLeft" x="-54">
|
||||
<text>S1</text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-51" frame="false" text_width="-1" text_from="UserText" keep_visual_rotation="true" font="Sans Serif,4.57,-1,5,25,0,0,0,0,0" z="6" rotation="270" Valignment="AlignTop" uuid="{5d5c5757-1a91-45fd-9b7b-b6e994a95f8c}" Halignment="AlignLeft" x="-54">
|
||||
<text>S2</text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text y="-168" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="S1" x="-30"/>
|
||||
<circle y="-12.91" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="4.86" x="-32.28"/>
|
||||
<polygon x18="-20.58" y8="-140" x14="-24.03" y18="-131.11" y4="-129.98" y2="-97.6" x4="-39.36" x22="-23.08" y3="-99.03" x29="-35.02" y15="-133.53" y17="-132.65" y19="-98.62" x28="-32.8" x31="-36.01" y13="-143.46" antialias="false" x11="-30.29" x1="-37.51" x20="-20.75" x24="-23.98" x13="-25.08" x19="-20.62" y10="-145.18" y20="-97.08" x12="-27.35" x5="-38.91" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x30="-35.99" y16="-133.52" x7="-36.01" x9="-35.24" y23="-95.02" x26="-26.99" x27="-29.87" y30="-88.59" y29="-85.69" x23="-23.98" y28="-83.63" y1="-96.89" x15="-24.04" x8="-36.01" y22="-95.62" x17="-20.71" y5="-131.43" y7="-132.34" x21="-21.6" y31="-96.32" y11="-146.08" x16="-21.84" y24="-88.83" y25="-85.9" y9="-142.97" x3="-39.33" x25="-24.84" y6="-132.13" y14="-140.59" y12="-145.46" x6="-37.6" x10="-33.16" y21="-95.87" y26="-83.76" x2="-38.83" y27="-82.93"/>
|
||||
<circle y="-92.3" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="4.86" x="-32.25"/>
|
||||
<polygon x1="-29.9" y6="-62.52" y3="-57.43" y5="-57.43" y4="-54.88" x6="-34.3" x4="-29.9" antialias="false" y1="-65.07" x5="-34.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-25.48" y2="-62.52" x3="-25.48"/>
|
||||
<polygon x18="-37.82" y8="-20.49" x14="-25.63" y18="-47.44" y4="-20.36" y2="-22.65" x4="-36.07" y3="-21.25" y15="-50.39" y17="-48.83" y19="-45.92" y13="-52.11" antialias="false" x11="-22.28" x1="-38.04" x13="-24.13" x19="-38.04" y10="-48.32" x12="-22.9" x5="-25.72" style="line-style:normal;line-weight:thin;filling:gray;color:black" y16="-49.79" x7="-22.97" x9="-22.06" y1="-24.19" x15="-34.55" x8="-22.3" x17="-37.06" y5="-18.05" y7="-19.12" y11="-49.85" x16="-35.94" y9="-22.01" x3="-37.29" y6="-18.28" y14="-52.22" y12="-51.25" x6="-24.22" x10="-22.06" x2="-37.91"/>
|
||||
<rect y="-165.009" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-34" height="6"/>
|
||||
<polygon x1="-29.87" y6="-141.91" y3="-136.82" y5="-136.82" y4="-134.27" x6="-34.27" x4="-29.87" antialias="false" y1="-144.46" x5="-34.27" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-25.45" y2="-141.91" x3="-25.45"/>
|
||||
<dynamic_text y="-210" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" z="14" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-60">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<polygon x1="-29.86" y6="-13.07" y3="-7.98" y5="-7.98" y4="-5.43" x6="-34.26" x4="-29.86" antialias="false" y1="-15.61" x5="-34.26" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-25.44" y2="-13.07" x3="-25.44"/>
|
||||
<polygon x18="-37.79" y8="-99.88" x14="-25.6" y18="-126.83" y4="-99.75" y2="-102.04" x4="-36.04" y3="-100.64" y15="-129.78" y17="-128.22" y19="-125.31" y13="-131.5" antialias="false" x11="-22.25" x1="-38.01" x13="-24.1" x19="-38.01" y10="-127.71" x12="-22.87" x5="-25.69" style="line-style:normal;line-weight:thin;filling:gray;color:black" y16="-129.18" x7="-22.94" x9="-22.03" y1="-103.58" x15="-34.52" x8="-22.27" x17="-37.03" y5="-97.44" y7="-98.51" y11="-129.24" x16="-35.91" y9="-101.4" x3="-37.26" y6="-97.67" y14="-131.61" y12="-130.64" x6="-24.19" x10="-22.03" x2="-37.88"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-10" height="6"/>
|
||||
<polygon x1="-29.83" y6="-92.46" y3="-87.37" y5="-87.37" y4="-84.82" x6="-34.23" x4="-29.83" antialias="false" y1="-95" x5="-34.23" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-25.41" y2="-92.46" x3="-25.41"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-26" height="6"/>
|
||||
<circle y="-118.49" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-34.26"/>
|
||||
<circle y="-39.1" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-34.29"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-18" height="6"/>
|
||||
<circle y="-112.65" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-34.26"/>
|
||||
<circle y="-33.26" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-34.29"/>
|
||||
<circle y="-27.49" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-34.29"/>
|
||||
<rect y="-180" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="190"/>
|
||||
<circle y="-106.88" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-34.26"/>
|
||||
<circle y="-25.09" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-28.29"/>
|
||||
<rect y="-167" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="10"/>
|
||||
<circle y="-104.48" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-28.26"/>
|
||||
<circle y="-30.86" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-28.29"/>
|
||||
<circle y="-110.25" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-28.26"/>
|
||||
<circle y="-36.58" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-28.29"/>
|
||||
<circle y="-115.97" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-28.26"/>
|
||||
<circle y="-42.41" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-28.29"/>
|
||||
<circle y="-121.8" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-28.26"/>
|
||||
<circle y="-127.52" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-28.26"/>
|
||||
<circle y="-48.13" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-28.29"/>
|
||||
<circle y="-124.2" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-34.26"/>
|
||||
<circle y="-44.81" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black" diameter="2.57" x="-34.29"/>
|
||||
<circle y="-141.75" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="4.86" x="-32.29"/>
|
||||
<circle y="-62.36" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="4.86" x="-32.32"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,40 @@
|
||||
<definition width="70" hotspot_x="65" type="element" hotspot_y="184" version="0.90" link_type="simple" height="200">
|
||||
<uuid uuid="{a20b0789-c0ff-4f72-91b0-3a3f6c986433}"/>
|
||||
<names>
|
||||
<name lang="en">flb3202_gsm</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="description">Flexy205 GSM FLB3202</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text y="8" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="FLB 3202" x="-39"/>
|
||||
<text y="-168.039" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="STAT" x="-30.3502"/>
|
||||
<rect y="-175" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-16" height="6"/>
|
||||
<rect y="-165.009" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-34" height="6"/>
|
||||
<rect y="-177" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-8" height="8"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-10" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-26" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-18" height="6"/>
|
||||
<rect y="-180" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="190"/>
|
||||
<rect y="-167" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="10"/>
|
||||
<rect y="-173" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-24" height="4"/>
|
||||
<circle y="-110" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" x="-40"/>
|
||||
<dynamic_text y="-210" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" z="14" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-60">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<circle y="-101" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="2" x="-31"/>
|
||||
<terminal y="-100" type="Generic" orientation="n" uuid="{c4469a6b-ec42-4cd8-93e5-6bf42574581f}" x="-30" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,40 @@
|
||||
<definition width="70" hotspot_x="65" type="element" hotspot_y="184" version="0.90" link_type="simple" height="200">
|
||||
<uuid uuid="{335e8301-716e-4a99-9d63-d038fe649413}"/>
|
||||
<names>
|
||||
<name lang="en">flb3204_gsm</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="description">Flexy205 GSM FLB3204</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text y="8" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="FLB 3204" x="-39"/>
|
||||
<text y="-168.039" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="STAT" x="-30.3502"/>
|
||||
<rect y="-175" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="-16" height="6"/>
|
||||
<rect y="-165.009" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-34" height="6"/>
|
||||
<rect y="-177" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="-8" height="8"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-10" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-26" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-18" height="6"/>
|
||||
<rect y="-180" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="190"/>
|
||||
<rect y="-167" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="10"/>
|
||||
<rect y="-173" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="-24" height="4"/>
|
||||
<circle y="-110" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" x="-40"/>
|
||||
<dynamic_text y="-210" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" z="14" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-60">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<circle y="-101" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="2" x="-31"/>
|
||||
<terminal y="-100" type="Generic" orientation="n" uuid="{c4469a6b-ec42-4cd8-93e5-6bf42574581f}" x="-30" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,40 @@
|
||||
<definition width="70" hotspot_x="65" type="element" hotspot_y="184" version="0.90" link_type="simple" height="200">
|
||||
<uuid uuid="{79581b0a-7b84-48d1-8f99-153f366cf03a}"/>
|
||||
<names>
|
||||
<name lang="en">flb3205_gsm</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="description">flb3205_gsm</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text y="8" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="FLB 3204" x="-39"/>
|
||||
<text y="-168.039" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="STAT" x="-30.3502"/>
|
||||
<rect y="-175" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="-16" height="6"/>
|
||||
<rect y="-165.009" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-34" height="6"/>
|
||||
<rect y="-177" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="-8" height="8"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-10" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-26" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-18" height="6"/>
|
||||
<rect y="-180" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="190"/>
|
||||
<rect y="-167" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="10"/>
|
||||
<rect y="-173" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="-24" height="4"/>
|
||||
<circle y="-110" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" x="-40"/>
|
||||
<dynamic_text y="-210" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" z="14" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-60">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<circle y="-101" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="2" x="-31"/>
|
||||
<terminal y="-100" type="Generic" orientation="n" uuid="{c4469a6b-ec42-4cd8-93e5-6bf42574581f}" x="-30" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,40 @@
|
||||
<definition width="70" hotspot_x="65" type="element" hotspot_y="184" version="0.90" link_type="simple" height="200">
|
||||
<uuid uuid="{27901a94-6ae8-4930-8016-9331a4bdadde}"/>
|
||||
<names>
|
||||
<name lang="en">flb3271_wlan</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="description">flb3271_wlan</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text y="8" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="FLB 3271" x="-39"/>
|
||||
<text y="-168.039" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="STAT" x="-30.3502"/>
|
||||
<rect y="-175" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="-16" height="6"/>
|
||||
<rect y="-165.009" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-34" height="6"/>
|
||||
<rect y="-177" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="-8" height="8"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-10" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-26" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-18" height="6"/>
|
||||
<rect y="-180" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="190"/>
|
||||
<rect y="-167" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="10"/>
|
||||
<rect y="-173" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="-24" height="4"/>
|
||||
<circle y="-110" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="20" x="-40"/>
|
||||
<dynamic_text y="-210" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" z="14" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-60">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<circle y="-101" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="2" x="-31"/>
|
||||
<terminal y="-100" type="Generic" orientation="n" uuid="{c4469a6b-ec42-4cd8-93e5-6bf42574581f}" x="-30" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,68 @@
|
||||
<definition width="70" hotspot_x="65" type="element" hotspot_y="184" version="0.90" link_type="simple" height="200">
|
||||
<uuid uuid="{45345321-c8b7-4d82-8e79-c7e79ceacc00}"/>
|
||||
<names>
|
||||
<name lang="en">flb3601_usb</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="description">flb3601_usb</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text y="8" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="FLB 3601" x="-39"/>
|
||||
<rect y="-137" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<rect y="-127" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<rect y="-142" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<rect y="-132" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<text y="-168" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="P2" x="-14"/>
|
||||
<rect y="-144" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-40" height="22"/>
|
||||
<text y="-146.492" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="USB" x="-2.95"/>
|
||||
<text y="-168" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="P3" x="-6"/>
|
||||
<rect y="-82" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<rect y="-148" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-42" height="30"/>
|
||||
<rect y="-32" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<rect y="-92" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<text y="-168" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="P1" x="-22"/>
|
||||
<dynamic_text y="-210" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" z="14" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-60">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text y="-168.039" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="STAT" x="-30.3502"/>
|
||||
<rect y="-42" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<rect y="-98" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-42" height="30"/>
|
||||
<rect y="-48" width="10" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-42" height="30"/>
|
||||
<rect y="-37" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<rect y="-87" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<rect y="-165.009" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-34" height="6"/>
|
||||
<rect y="-27" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<rect y="-77" width="1" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-38" height="3"/>
|
||||
<rect y="-44" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-40" height="22"/>
|
||||
<rect y="-94" width="2" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-40" height="22"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-10" height="6"/>
|
||||
<rect y="-50" width="14" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-44" height="34"/>
|
||||
<rect y="-100" width="14" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-44" height="34"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-26" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-18" height="6"/>
|
||||
<rect y="-180" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="190"/>
|
||||
<rect y="-167" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="10"/>
|
||||
<rect y="-150" width="14" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-44" height="34"/>
|
||||
<dynamic_text y="-142" frame="false" text_width="-1" text_from="UserText" keep_visual_rotation="false" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal" z="42" rotation="270" Valignment="AlignTop" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" Halignment="AlignLeft" x="-63">
|
||||
<text>P1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-92" frame="false" text_width="-1" text_from="UserText" keep_visual_rotation="false" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal" z="42" rotation="270" Valignment="AlignTop" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" Halignment="AlignLeft" x="-63">
|
||||
<text>P2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-42" frame="false" text_width="-1" text_from="UserText" keep_visual_rotation="false" font="Sans Serif,3,-1,5,0,0,0,0,0,0,normal" z="42" rotation="270" Valignment="AlignTop" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" Halignment="AlignLeft" x="-63">
|
||||
<text>P3</text>
|
||||
</dynamic_text>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,55 @@
|
||||
<definition width="70" hotspot_x="65" type="element" hotspot_y="184" version="0.90" link_type="simple" height="200">
|
||||
<uuid uuid="{b01528cd-4998-47d8-a522-0ee70724e035}"/>
|
||||
<names>
|
||||
<name lang="en">flc3701_MPI</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="description">flc3701_MPI</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text y="-168" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="MTK" x="-22"/>
|
||||
<text y="8" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="FLC 3701" x="-39"/>
|
||||
<text y="-146" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="MPI" x="-4"/>
|
||||
<text y="-168" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="MPI" x="-30"/>
|
||||
<dynamic_text y="-130" frame="false" text_width="-1" text_from="UserText" keep_visual_rotation="true" font="Sans Serif,4.57,-1,5,25,0,0,0,0,0" z="6" rotation="270" Valignment="AlignTop" uuid="{5d5c5757-1a91-45fd-9b7b-b6e994a95f8c}" Halignment="AlignLeft" x="-54">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<polygon x18="-20.58" y8="-140" x14="-24.03" y18="-131.11" y4="-129.98" y2="-97.6" x4="-39.36" x22="-23.08" y3="-99.03" x29="-35.02" y15="-133.53" y17="-132.65" y19="-98.62" x28="-32.8" x31="-36.01" y13="-143.46" antialias="false" x11="-30.29" x1="-37.51" x20="-20.75" x24="-23.98" x13="-25.08" x19="-20.62" y10="-145.18" y20="-97.08" x12="-27.35" x5="-38.91" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x30="-35.99" y16="-133.52" x7="-36.01" x9="-35.24" y23="-95.02" x26="-26.99" x27="-29.87" y30="-88.59" y29="-85.69" x23="-23.98" y28="-83.63" y1="-96.89" x15="-24.04" x8="-36.01" y22="-95.62" x17="-20.71" y5="-131.43" y7="-132.34" x21="-21.6" y31="-96.32" y11="-146.08" x16="-21.84" y24="-88.83" y25="-85.9" y9="-142.97" x3="-39.33" x25="-24.84" y6="-132.13" y14="-140.59" y12="-145.46" x6="-37.6" x10="-33.16" y21="-95.87" y26="-83.76" x2="-38.83" y27="-82.93"/>
|
||||
<circle y="-92.3" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="4.86" x="-32.25"/>
|
||||
<rect y="-165.009" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-34" height="6"/>
|
||||
<polygon x1="-29.87" y6="-141.91" y3="-136.82" y5="-136.82" y4="-134.27" x6="-34.27" x4="-29.87" antialias="false" y1="-144.46" x5="-34.27" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x2="-25.45" y2="-141.91" x3="-25.45"/>
|
||||
<polygon x18="-37.79" y8="-99.88" x14="-25.6" y18="-126.83" y4="-99.75" y2="-102.04" x4="-36.04" y3="-100.64" y15="-129.78" y17="-128.22" y19="-125.31" y13="-131.5" antialias="false" x11="-22.25" x1="-38.01" x13="-24.1" x19="-38.01" y10="-127.71" x12="-22.87" x5="-25.69" style="line-style:normal;line-weight:thin;filling:gray;color:black" y16="-129.18" x7="-22.94" x9="-22.03" y1="-103.58" x15="-34.52" x8="-22.27" x17="-37.03" y5="-97.44" y7="-98.51" y11="-129.24" x16="-35.91" y9="-101.4" x3="-37.26" y6="-97.67" y14="-131.61" y12="-130.64" x6="-24.19" x10="-22.03" x2="-37.88"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-10" height="6"/>
|
||||
<polygon x1="-29.83" y6="-92.46" y3="-87.37" y5="-87.37" y4="-84.82" x6="-34.23" x4="-29.83" antialias="false" y1="-95" x5="-34.23" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-25.41" y2="-92.46" x3="-25.41"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-26" height="6"/>
|
||||
<dynamic_text y="-210" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" z="14" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-60">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<circle y="-118.49" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="2.57" x="-34.26"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-18" height="6"/>
|
||||
<circle y="-112.65" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="2.57" x="-34.26"/>
|
||||
<rect y="-180" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="190"/>
|
||||
<circle y="-106.88" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="2.57" x="-34.26"/>
|
||||
<rect y="-167" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="10"/>
|
||||
<circle y="-104.48" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="2.57" x="-28.26"/>
|
||||
<circle y="-110.25" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="2.57" x="-28.26"/>
|
||||
<circle y="-115.97" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="2.57" x="-28.26"/>
|
||||
<circle y="-121.8" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="2.57" x="-28.26"/>
|
||||
<circle y="-127.52" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="2.57" x="-28.26"/>
|
||||
<circle y="-124.2" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" diameter="2.57" x="-34.26"/>
|
||||
<circle y="-141.75" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="4.86" x="-32.29"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,39 @@
|
||||
<definition width="70" hotspot_x="65" type="element" hotspot_y="184" version="0.90" link_type="simple" height="200">
|
||||
<uuid uuid="{fcc34833-6166-434a-8350-0ca8d7bbcc1c}"/>
|
||||
<names>
|
||||
<name lang="en">flx3101_ethernet</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="description">flx3101_ethernet</elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text y="8" color="#000000" font="Sans Serif,6,-1,5,50,0,0,0,0,0" rotation="0" text="FLX 3101" x="-39"/>
|
||||
<text y="-119" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="ETHERNET 10/100" x="-3"/>
|
||||
<text y="-168" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="ACK" x="-22"/>
|
||||
<rect y="-125" width="40" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-50" height="50"/>
|
||||
<polygon x4="-43.4795" x11="-43.4795" closed="false" x6="-38.4576" x10="-38.4576" y13="-105.202" x13="-46.8274" y2="-94.458" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="-15.0219" x12="-43.4795" y6="-80.133" y11="-110.574" antialias="false" x8="-15.0219" y1="-105.202" y4="-89.086" y5="-89.086" y12="-105.202" y3="-94.458" y7="-80.133" y9="-119.528" x3="-43.4795" x9="-38.4576" x2="-46.8274" y8="-119.528" x5="-38.4576" x1="-46.8274" y10="-110.574"/>
|
||||
<text y="-168" color="#000000" font="Sans Serif,3,-1,5,50,0,0,0,0,0" rotation="270" text="LNK" x="-30"/>
|
||||
<rect y="-165.009" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-34" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-10" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-26" height="6"/>
|
||||
<rect y="-165" width="6" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="-18" height="6"/>
|
||||
<rect y="-180" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="190"/>
|
||||
<rect y="-167" width="60" rx="0" ry="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" height="10"/>
|
||||
<dynamic_text y="-210" frame="false" text_width="-1" text_from="ElementInfo" keep_visual_rotation="true" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" z="14" rotation="0" Valignment="AlignTop" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" Halignment="AlignLeft" x="-60">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal y="-99.9" type="Generic" orientation="w" uuid="{51ba3c71-9d91-4e3d-889e-c1950f92cf54}" x="-40" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,110 @@
|
||||
<definition hotspot_x="65" hotspot_y="184" link_type="simple" height="200" width="70" type="element" version="0.90">
|
||||
<uuid uuid="{94b586ac-897c-43e7-a371-5f456f68b6cc}"/>
|
||||
<names>
|
||||
<name lang="en">flx3402_io_left</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">flx3402_io_left</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text x="-39" text="FLX 3402" rotation="0" y="8" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-14" text="REL1" rotation="270" y="-168" font="Sans Serif,3,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-2" text="8DI - 4AI - 2DO" rotation="270" y="-125" font="Sans Serif,3,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-6" text="REL2" rotation="270" y="-168" font="Sans Serif,3,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-22" text="AI" rotation="270" y="-168" font="Sans Serif,3,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-30.3502" text="DI" rotation="270" y="-168.039" font="Sans Serif,3,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<rect x="-34" antialias="false" height="6" width="6" y="-165.009" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect x="-10" antialias="false" height="6" width="6" y="-165" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect x="-26" antialias="false" height="6" width="6" y="-165" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect x="-18" antialias="false" height="6" width="6" y="-165" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect x="-60" antialias="false" height="190" width="60" y="-180" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect x="-60" antialias="false" height="10" width="60" y="-167" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text x="-60" z="14" rotation="0" keep_visual_rotation="true" Halignment="AlignLeft" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" text_from="ElementInfo" y="-210" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-49" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-13" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>R11</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-74" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI4</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-19" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-3" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>R24</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-144" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>AI1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-24" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-101" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI-</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-34" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI8</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-49" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-3" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>R21</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-94" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-114" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>AI4</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-64" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-44" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI7</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-19" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-13" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>R14</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-54" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI6</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-84" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI3</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-124" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>AI3</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-104" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-24" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-141" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>AI-</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-48" z="42" rotation="270" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-134" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>AI2</text>
|
||||
</dynamic_text>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{2fd65b7e-d4d8-434d-ab5e-a8bc27c09b6f}" y="-40" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{79915a08-f394-47d2-9b47-422cb1abf5d8}" y="-100" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{fecd83cc-5d4d-4c0a-aad1-0d92506e2cb8}" y="-10" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{b484c1e7-4a80-4a65-aa34-7d556b2d8459}" y="-120" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{29b50e5b-7233-466a-bd78-04929d892b69}" y="-150" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{dc66c270-981b-4659-9fad-be43dcf52b95}" y="-130" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{1c97fbec-0691-4e2e-a62e-05ee8402dcb9}" y="-80" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{3744dd7c-1cb8-4e99-a0b1-d35879053a92}" y="-90" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{ee9f75b1-af21-47d6-b5e9-d971e7448ed1}" y="-20" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{820edc88-7bcd-4dab-947c-7017c737cd1a}" y="-140" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{2e1a8b47-ef6f-48a6-88fe-c995eee029ce}" y="-70" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{1c41a561-c3fc-4d50-90b9-8d230aac3c5a}" y="-50" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{7f86c212-721b-4c7a-998f-4fdf58edd55d}" y="-110" type="Generic"/>
|
||||
<terminal x="-50" orientation="w" name="" uuid="{574d9a6e-9611-4f41-8a5f-f30c1c8f817c}" y="-60" type="Generic"/>
|
||||
<terminal x="-20" orientation="w" name="" uuid="{9d89124f-7714-4243-bafd-b25ff914063d}" y="-10" type="Generic"/>
|
||||
<terminal x="-20" orientation="w" name="" uuid="{bb2aac92-db01-4b91-b8e5-757b01a09610}" y="-20" type="Generic"/>
|
||||
<terminal x="-20" orientation="w" name="" uuid="{38ef4774-941b-4032-abd8-a425614ec1ff}" y="-110" type="Generic"/>
|
||||
<terminal x="-20" orientation="w" name="" uuid="{18014a25-8879-4c8c-8bb9-3c66d07cd02f}" y="-150" type="Generic"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,110 @@
|
||||
<definition hotspot_x="65" hotspot_y="184" link_type="simple" height="200" width="70" type="element" version="0.90">
|
||||
<uuid uuid="{205dc962-82cd-485d-925f-e9ffe709b3fb}"/>
|
||||
<names>
|
||||
<name lang="en">flx3402_io_right</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="label"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">Ewon</elementInformation>
|
||||
<elementInformation show="1" name="designation"></elementInformation>
|
||||
<elementInformation show="1" name="plant"></elementInformation>
|
||||
<elementInformation show="1" name="comment"></elementInformation>
|
||||
<elementInformation show="1" name="description">flx3402_io_right</elementInformation>
|
||||
<elementInformation show="1" name="quantity"></elementInformation>
|
||||
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="unity"></elementInformation>
|
||||
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
|
||||
<elementInformation show="1" name="supplier"></elementInformation>
|
||||
</elementInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<text x="-39" text="FLX 3402" rotation="0" y="8" font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-14" text="REL1" rotation="270" y="-168" font="Sans Serif,3,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-54" text="8DI - 4AI - 2DO" rotation="270" y="-125" font="Sans Serif,3,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-6" text="REL2" rotation="270" y="-168" font="Sans Serif,3,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-22" text="AI" rotation="270" y="-168" font="Sans Serif,3,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-30.3502" text="DI" rotation="270" y="-168.039" font="Sans Serif,3,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<rect x="-34" antialias="false" height="6" width="6" y="-165.009" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect x="-10" antialias="false" height="6" width="6" y="-165" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect x="-26" antialias="false" height="6" width="6" y="-165" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect x="-18" antialias="false" height="6" width="6" y="-165" ry="0" rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<rect x="-60" antialias="false" height="190" width="60" y="-180" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect x="-60" antialias="false" height="10" width="60" y="-167" ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text x="-60" z="14" rotation="0" keep_visual_rotation="true" Halignment="AlignLeft" uuid="{91b94312-45d2-4e8d-934d-8247b95d18b5}" text_from="ElementInfo" y="-210" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-146" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>AI2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-41" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-27" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>R11</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-106" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-77" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI5</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-126" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>AI4</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-97" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI3</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-87" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI4</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-17" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>R24</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-117" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-57" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI7</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-27" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>R14</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-47" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI8</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-156" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>AI1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-67" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI6</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-11" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-136" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>AI3</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-36" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-152" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>AI-</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-36" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-113" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>DI-</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-41" z="42" rotation="90" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{f16e1f1d-ef04-4d01-ba40-0cb05b5fa5e9}" text_from="UserText" y="-17" font="Sans Serif,2,-1,5,0,0,0,0,0,0,normal" Valignment="AlignTop" frame="false" text_width="-1">
|
||||
<text>R21</text>
|
||||
</dynamic_text>
|
||||
<terminal x="-40" orientation="e" name="" uuid="{fecd83cc-5d4d-4c0a-aad1-0d92506e2cb8}" y="-10" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{29b50e5b-7233-466a-bd78-04929d892b69}" y="-150" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{b6406ddc-1b8c-4748-aa45-da5f1555fe4c}" y="-50" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{0023c197-bdbf-4822-be24-1f374179e1b2}" y="-40" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{738373b0-352e-438d-94e8-337d1f4db5ce}" y="-60" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{1df61754-2a1f-4aa3-8cd9-182e1e0c6316}" y="-70" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{9d89124f-7714-4243-bafd-b25ff914063d}" y="-10" type="Generic"/>
|
||||
<terminal x="-40" orientation="e" name="" uuid="{ee9f75b1-af21-47d6-b5e9-d971e7448ed1}" y="-20" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{81aef2d8-43f2-475e-80ad-d0b8e3f6fbcb}" y="-90" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{5edc9021-0e3c-44b1-b57c-b9909191c5e4}" y="-80" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{9811d39c-128b-4398-bb5d-1e94b7e3d8db}" y="-100" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{313ba46b-74e3-4099-a813-e795d47e26b7}" y="-110" type="Generic"/>
|
||||
<terminal x="-40" orientation="e" name="" uuid="{38ef4774-941b-4032-abd8-a425614ec1ff}" y="-110" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{820edc88-7bcd-4dab-947c-7017c737cd1a}" y="-140" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{b484c1e7-4a80-4a65-aa34-7d556b2d8459}" y="-120" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{bb2aac92-db01-4b91-b8e5-757b01a09610}" y="-20" type="Generic"/>
|
||||
<terminal x="-10" orientation="e" name="" uuid="{dc66c270-981b-4659-9fad-be43dcf52b95}" y="-130" type="Generic"/>
|
||||
<terminal x="-40" orientation="e" name="" uuid="{18014a25-8879-4c8c-8bb9-3c66d07cd02f}" y="-150" type="Generic"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,28 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="ar">ewon flexy ملحقات</name>
|
||||
<name lang="ca">ewon flexy extensions</name>
|
||||
<name lang="cs">ewon flexy rozšíření</name>
|
||||
<name lang="da">ewon flexy udvidelser</name>
|
||||
<name lang="de">ewon flexy Erweiterungen</name>
|
||||
<name lang="el">ewon flexy επεκτάσεις</name>
|
||||
<name lang="en">ewon flexy extensions</name>
|
||||
<name lang="es">ewon flexy extensiones</name>
|
||||
<name lang="fr">ewon flexy extensions</name>
|
||||
<name lang="hr">ewon flexy proširenja</name>
|
||||
<name lang="hu">ewon flexy kiterjesztések</name>
|
||||
<name lang="it">ewon flexy estensioni</name>
|
||||
<name lang="ja">ewon flexy 拡張機能</name>
|
||||
<name lang="mn">ewon flexy өргөтгөлүүд</name>
|
||||
<name lang="nb">ewon flexy utvidelser</name>
|
||||
<name lang="nl">ewon flexy extensies</name>
|
||||
<name lang="pl">ewon flexy rozszerzenia</name>
|
||||
<name lang="pt">ewon flexy extensões</name>
|
||||
<name lang="pt_br">ewon flexy extensões</name>
|
||||
<name lang="ro">ewon flexy extensii</name>
|
||||
<name lang="ru">ewon flexy расширения</name>
|
||||
<name lang="sl">ewon flexy razširitve</name>
|
||||
<name lang="sr">ewon flexy проширења</name>
|
||||
<name lang="tr">ewon flexy uzantılar</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,28 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="ar">ewon flexy وحدة قاعدة</name>
|
||||
<name lang="ca">ewon flexy unitat base</name>
|
||||
<name lang="cs">ewon flexy základní jednotka</name>
|
||||
<name lang="da">ewon flexy basisenhed</name>
|
||||
<name lang="de">ewon flexy Basisgerät</name>
|
||||
<name lang="el">ewon flexy βασική μονάδα</name>
|
||||
<name lang="en">ewon flexy base unit</name>
|
||||
<name lang="es">ewon flexy unidad base</name>
|
||||
<name lang="fr">ewon flexy unité de base</name>
|
||||
<name lang="hr">ewon flexy osnovna jedinica</name>
|
||||
<name lang="hu">ewon flexy alapegység</name>
|
||||
<name lang="it">ewon flexy unità base</name>
|
||||
<name lang="ja">ewon flexy 基本単位</name>
|
||||
<name lang="mn">ewon flexy суурь нэгж</name>
|
||||
<name lang="nb">ewon flexy baseenhet</name>
|
||||
<name lang="nl">ewon flexy basiseenheid</name>
|
||||
<name lang="pl">ewon flexy jednostka podstawowa</name>
|
||||
<name lang="pt">ewon flexy unidade base</name>
|
||||
<name lang="pt_br">ewon flexy unidade base</name>
|
||||
<name lang="ro">ewon flexy unitate de baza</name>
|
||||
<name lang="ru">ewon flexy базовый блок</name>
|
||||
<name lang="sl">ewon flexy osnovna enota</name>
|
||||
<name lang="sr">ewon flexy база</name>
|
||||
<name lang="tr">ewon flexy ana ünite</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -1,7 +1,29 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="en">Ewon</name>
|
||||
<name lang="de">Ewon</name>
|
||||
<name lang="cs">Ewon</name>
|
||||
<name lang="ar">ewon router</name>
|
||||
<name lang="be">ewon router</name>
|
||||
<name lang="ca">ewon router</name>
|
||||
<name lang="cs">ewon router</name>
|
||||
<name lang="da">ewon router</name>
|
||||
<name lang="de">ewon router</name>
|
||||
<name lang="el">ewon router</name>
|
||||
<name lang="en">ewon router</name>
|
||||
<name lang="es">ewon router</name>
|
||||
<name lang="fr">ewon router</name>
|
||||
<name lang="hr">ewon router</name>
|
||||
<name lang="hu">ewon router</name>
|
||||
<name lang="it">ewon router</name>
|
||||
<name lang="ja">ewon router</name>
|
||||
<name lang="mn">ewon router</name>
|
||||
<name lang="nb">ewon router</name>
|
||||
<name lang="nl">ewon router</name>
|
||||
<name lang="pl">ewon router</name>
|
||||
<name lang="pt">ewon router</name>
|
||||
<name lang="ro">ewon router</name>
|
||||
<name lang="ru">ewon router</name>
|
||||
<name lang="sl">ewon router</name>
|
||||
<name lang="sr">ewon router</name>
|
||||
<name lang="tr">ewon router</name>
|
||||
<name lang="pt_br">ewon router</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
<definition link_type="simple" type="element" width="100" hotspot_x="50" height="80" hotspot_y="39" version="0.90">
|
||||
<uuid uuid="{ff862671-1834-46af-8fe5-e1e81944ab49}"/>
|
||||
<names>
|
||||
<name lang="fr">ABL8RPS24100</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>EN 60617: 06-14-03</informations>
|
||||
<description>
|
||||
<text color="#000000" x="-5" y="24" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="PE"/>
|
||||
<text color="#000000" x="-35.5156" y="-19" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="LV"/>
|
||||
<circle x="-2.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="5" y="27.5" antialias="false"/>
|
||||
<circle x="-12.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="5" y="-32.5" antialias="false"/>
|
||||
<text color="#000000" x="-28" y="-7" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="AC ~"/>
|
||||
<circle x="27.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="5" y="-32.5" antialias="false"/>
|
||||
<text color="#000000" x="-12" y="24" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="-"/>
|
||||
<text color="#000000" x="-32" y="24" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="-"/>
|
||||
<text color="#000000" x="4" y="-19" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="HV"/>
|
||||
<line y1="30" x2="27" y2="30" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="13" length2="1.5" antialias="false"/>
|
||||
<text color="#000000" x="6" y="12" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="24 VDC"/>
|
||||
<line y1="30" x2="-13" y2="30" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-27" length2="1.5" antialias="false"/>
|
||||
<text color="#000000" x="26" y="24" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="+"/>
|
||||
<text color="#000000" x="-13" y="-19" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="C"/>
|
||||
<circle x="7.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="5" y="-32.5" antialias="false"/>
|
||||
<text color="#000000" x="25" y="-19" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="PE"/>
|
||||
<circle x="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="5" y="27.5" antialias="false"/>
|
||||
<circle x="27.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="5" y="27.5" antialias="false"/>
|
||||
<circle x="-12.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="5" y="27.5" antialias="false"/>
|
||||
<dynamic_text text_from="ElementInfo" keep_visual_rotation="false" x="-80" Halignment="AlignLeft" y="-32" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{2bf5a26a-b60c-4c01-b67c-a5a0d37eb572}" frame="false" Valignment="AlignTop" text_width="-1" z="18">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<circle x="7.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="5" y="27.5" antialias="false"/>
|
||||
<text color="#000000" x="7" y="24" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="+"/>
|
||||
<polygon y6="-29.8785" closed="false" y1="30" x2="-45" y2="30" y5="-29.8785" y3="-29.8785" y4="-29.8785" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-33" x5="-33" x3="-45" antialias="false" x4="-33" x6="-33"/>
|
||||
<polygon y6="30" closed="false" y1="-30.1383" x2="45" y2="-30.1383" y5="30" y3="30" y4="30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="33" x5="33" x3="45" antialias="false" x4="33" x6="33"/>
|
||||
<rect x="-30" style="line-style:normal;line-weight:thin;filling:none;color:black" y="-15" rx="0" width="60" ry="0" height="30" antialias="false"/>
|
||||
<line y1="-15" x2="-30" y2="15" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x1="30" length2="1.5" antialias="false"/>
|
||||
<circle x="-32.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="5" y="-32.5" antialias="false"/>
|
||||
<line y1="-29.9882" x2="-12.7737" y2="-30.0143" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-27.2715" length2="1.5" antialias="false"/>
|
||||
<line y1="-29.9882" x2="7.10522" y2="-29.9882" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-6.68727" length2="1.5" antialias="false"/>
|
||||
<line y1="-29.9882" x2="26.9581" y2="-29.9882" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="12.5386" length2="1.5" antialias="false"/>
|
||||
<line y1="30" x2="-3" y2="30" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-7" length2="1.5" antialias="false"/>
|
||||
<line y1="30" x2="7" y2="30" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="3" length2="1.5" antialias="false"/>
|
||||
<terminal x="30" y="-33" name="" type="Generic" uuid="{1da5da5f-95c5-4ad0-8fda-967a73c92604}" orientation="n"/>
|
||||
<terminal x="10" y="33" name="" type="Generic" uuid="{07b9a97c-4c87-4804-bd7d-f212d42628e1}" orientation="s"/>
|
||||
<terminal x="-30" y="33" name="" type="Generic" uuid="{2913e8fd-de10-42ae-b7ec-2e39367c9998}" orientation="s"/>
|
||||
<terminal x="-10" y="-33" name="" type="Generic" uuid="{a41ad474-7111-4a9d-88d1-7753abfe0392}" orientation="n"/>
|
||||
<terminal x="10" y="-33" name="" type="Generic" uuid="{76bb85a9-d636-4737-816f-3e749f894a3c}" orientation="n"/>
|
||||
<terminal x="-30" y="-33" name="" type="Generic" uuid="{72f63bc5-0d4e-40d0-b289-a17661aad653}" orientation="n"/>
|
||||
<terminal x="-10" y="33" name="" type="Generic" uuid="{e3b6a5af-6a05-4500-a606-33068dfa8cdb}" orientation="s"/>
|
||||
<terminal x="30" y="33" name="" type="Generic" uuid="{14e65d19-e9c1-415b-be53-af1a9c028de8}" orientation="s"/>
|
||||
<terminal x="0" y="33" name="" type="Generic" uuid="{1a2d625b-71a6-4195-b367-a32d8dbe0972}" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,85 @@
|
||||
<definition link_type="simple" type="element" width="940" hotspot_x="35" height="90" hotspot_y="35" version="0.90">
|
||||
<uuid uuid="{a5c7b99f-ec21-4780-aa46-4c8fcfd09893}"/>
|
||||
<names>
|
||||
<name lang="fr">ABE7-H16R11/2</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>SIEMENS S7-300 (digital inputs)</informations>
|
||||
<description>
|
||||
<rect x="710.778" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<rect x="210.068" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<rect x="810.434" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<rect x="511.075" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<rect x="610.744" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<rect x="310.638" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<rect x="411.15" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<text color="#000000" x="121" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="108"/>
|
||||
<text color="#000000" x="521" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="112"/>
|
||||
<text color="#000000" x="322" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="110"/>
|
||||
<text color="#000000" x="221" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="109"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="803" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{51b025ed-9dc6-4597-8c89-0f6c71f07cc0}" frame="false" Valignment="AlignTop" text_width="-1" z="15">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" x="722" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="114"/>
|
||||
<text color="#000000" x="421" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="111"/>
|
||||
<text color="#000000" x="622" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="113"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="302" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{9366e8cb-b61f-49bb-93fb-d5653876bc3f}" frame="false" Valignment="AlignTop" text_width="-1" z="21">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" x="821" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="115"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="204.587" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{78cba0c9-7814-4bad-a0e4-2bcf5855af28}" frame="false" Valignment="AlignTop" text_width="-1" z="22">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="504" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{76b8c5bb-d211-4ec5-bfcd-8c3aa837c566}" frame="false" Valignment="AlignTop" text_width="-1" z="23">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<polygon closed="false" y1="-30" x2="40" y2="-30" y5="50" y3="50" y4="50" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="900" x5="900" x3="-30" antialias="false" x4="900"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="101" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{8d0e73ac-2a4b-42e2-92f9-2797d8fb8fd2}" frame="false" Valignment="AlignTop" text_width="-1" z="24">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="704" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{2a20c815-f92d-4a57-866f-aacafb9f3757}" frame="false" Valignment="AlignTop" text_width="-1" z="25">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<line y1="10" x2="820" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="60" length2="1.5" antialias="false"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="402.126" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{51601ab9-d3bb-4e99-abe1-a41591750980}" frame="false" Valignment="AlignTop" text_width="-1" z="26">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<rect x="110" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="601.529" Halignment="AlignLeft" y="9.45" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{34c5d6d6-2083-4495-becf-75aab30d2c06}" frame="false" Valignment="AlignTop" text_width="-1" z="27">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" x="80" y="40" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="TELEFAST 2"/>
|
||||
<line y1="-30" x2="120" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="120" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="220" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="220" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="320" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="320" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="420" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="420" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="520" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="520" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="620" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="620" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="720" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="720" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="820" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="820" length2="1.5" antialias="false"/>
|
||||
<line y1="5" x2="120" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="120" length2="1.5" antialias="false"/>
|
||||
<line y1="5" x2="220" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="220" length2="1.5" antialias="false"/>
|
||||
<line y1="5" x2="320" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="320" length2="1.5" antialias="false"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="140" Halignment="AlignLeft" y="20" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{4f0974c5-9e6d-415d-8ba8-bd0fe0dc3609}" frame="false" Valignment="AlignTop" text_width="-1" z="40">
|
||||
<text>ABE7-H16210/11</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_from="ElementInfo" keep_visual_rotation="false" x="530" Halignment="AlignLeft" y="18.5" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{b59782f9-9d89-4dbb-80db-265efa766bbc}" frame="false" Valignment="AlignTop" text_width="-1" z="41">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="6" x2="420" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="420" length2="1.5" antialias="false"/>
|
||||
<line y1="6" x2="520" y2="9" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="520" length2="1.5" antialias="false"/>
|
||||
<line y1="5" x2="620" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="620" length2="1.5" antialias="false"/>
|
||||
<line y1="6" x2="720" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="720" length2="1.5" antialias="false"/>
|
||||
<line y1="5" x2="820" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="820" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="900" y2="50" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="900" length2="1.5" antialias="false"/>
|
||||
<terminal x="220" y="-29" name="" type="Generic" uuid="{36cd91e1-aaf8-4589-a736-795adb97e5f5}" orientation="n"/>
|
||||
<terminal x="720" y="-29" name="" type="Generic" uuid="{a71d9555-d648-49a4-a161-f492b4a430be}" orientation="n"/>
|
||||
<terminal x="620" y="-29" name="" type="Generic" uuid="{099e5c33-dfdb-4abd-b272-55d7dd22c776}" orientation="n"/>
|
||||
<terminal x="120" y="-29" name="" type="Generic" uuid="{5c261b97-d20f-4a02-8959-aaae5133d5b6}" orientation="n"/>
|
||||
<terminal x="520" y="-29" name="" type="Generic" uuid="{0236491c-57c9-4318-8dac-e74923b00163}" orientation="n"/>
|
||||
<terminal x="420" y="-29" name="" type="Generic" uuid="{0fb28fd8-bff6-4882-a114-e04904948c31}" orientation="n"/>
|
||||
<terminal x="320" y="-29" name="" type="Generic" uuid="{f0e3b5ab-e8d5-46b4-bb0b-696a361d0f80}" orientation="n"/>
|
||||
<terminal x="820" y="-29" name="" type="Generic" uuid="{3cd8f1ac-a6b3-4fc6-981c-49f3e47179c3}" orientation="n"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,141 @@
|
||||
<definition link_type="simple" type="element" width="980" hotspot_x="55" height="90" hotspot_y="34" version="0.90">
|
||||
<uuid uuid="{95b9dc3f-fbad-4dc3-8bdb-6fde53293f76}"/>
|
||||
<names>
|
||||
<name lang="fr">ABE7-H16R11/1</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>SIEMENS S7-300 (digital inputs)</informations>
|
||||
<description>
|
||||
<circle x="-24.113" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="30.1992" antialias="false"/>
|
||||
<circle x="-35.4014" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="30.1992" antialias="false"/>
|
||||
<circle x="-35.4348" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="35.2184" antialias="false"/>
|
||||
<circle x="-35.5122" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="10.4442" antialias="false"/>
|
||||
<circle x="-24.1464" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="35.2184" antialias="false"/>
|
||||
<circle x="-24.2238" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="10.4442" antialias="false"/>
|
||||
<rect x="710.778" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<circle x="-35.4295" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="24.7627" antialias="false"/>
|
||||
<circle x="-24.1411" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="24.7627" antialias="false"/>
|
||||
<rect x="210.068" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<circle x="-24.2293" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="4.84129" antialias="false"/>
|
||||
<circle x="-35.5177" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="4.84129" antialias="false"/>
|
||||
<circle x="-24.2627" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="15.4245" antialias="false"/>
|
||||
<circle x="-24.2235" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="0.327844" antialias="false"/>
|
||||
<circle x="-35.5511" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="15.4245" antialias="false"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="803" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{51b025ed-9dc6-4597-8c89-0f6c71f07cc0}" frame="false" Valignment="AlignTop" text_width="-1" z="15">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<circle x="-24.4014" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="-10.0998" antialias="false"/>
|
||||
<rect x="810.434" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<circle x="-24.1402" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="-4.80814" antialias="false"/>
|
||||
<text color="#000000" x="68.4792" y="-7.19009" rotation="270" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="0VCC"/>
|
||||
<text color="#000000" x="-4.95" y="-7.04688" rotation="270" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="+24VCC"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="302" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{9366e8cb-b61f-49bb-93fb-d5653876bc3f}" frame="false" Valignment="AlignTop" text_width="-1" z="21">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="204.587" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{78cba0c9-7814-4bad-a0e4-2bcf5855af28}" frame="false" Valignment="AlignTop" text_width="-1" z="22">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<circle x="-24.2241" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="19.938" antialias="false"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="504" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{76b8c5bb-d211-4ec5-bfcd-8c3aa837c566}" frame="false" Valignment="AlignTop" text_width="-1" z="23">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="101" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{8d0e73ac-2a4b-42e2-92f9-2797d8fb8fd2}" frame="false" Valignment="AlignTop" text_width="-1" z="24">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<circle x="-35.5119" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="0.327844" antialias="false"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="704" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{2a20c815-f92d-4a57-866f-aacafb9f3757}" frame="false" Valignment="AlignTop" text_width="-1" z="25">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<circle x="-24.2116" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="-15.5" antialias="false"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="402.126" Halignment="AlignLeft" y="9" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{51601ab9-d3bb-4e99-abe1-a41591750980}" frame="false" Valignment="AlignTop" text_width="-1" z="26">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="601.529" Halignment="AlignLeft" y="9.45" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" uuid="{34c5d6d6-2083-4495-becf-75aab30d2c06}" frame="false" Valignment="AlignTop" text_width="-1" z="27">
|
||||
<text>%I</text>
|
||||
</dynamic_text>
|
||||
<rect x="511.075" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<rect x="610.744" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<rect x="310.638" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<rect x="411.15" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<circle x="-35.6898" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="-10.0998" antialias="false"/>
|
||||
<circle x="-35.4286" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="-4.80814" antialias="false"/>
|
||||
<circle x="-35.5125" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="19.938" antialias="false"/>
|
||||
<text color="#000000" x="2.55461" y="-22.1903" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="1"/>
|
||||
<dynamic_text text_from="UserText" keep_visual_rotation="false" x="140" Halignment="AlignLeft" y="20" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" uuid="{4f0974c5-9e6d-415d-8ba8-bd0fe0dc3609}" frame="false" Valignment="AlignTop" text_width="-1" z="40">
|
||||
<text>ABE7-H16210/11</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" x="63.3481" y="-22.587" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="4"/>
|
||||
<dynamic_text text_from="ElementInfo" keep_visual_rotation="false" x="530" Halignment="AlignLeft" y="18.5" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{b59782f9-9d89-4dbb-80db-265efa766bbc}" frame="false" Valignment="AlignTop" text_width="-1" z="41">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text color="#000000" x="43.7449" y="-23.3805" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="3"/>
|
||||
<text color="#000000" x="22.9514" y="-22.9838" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="2"/>
|
||||
<text color="#000000" x="121" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="100"/>
|
||||
<text color="#000000" x="521" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="104"/>
|
||||
<text color="#000000" x="322" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="102"/>
|
||||
<text color="#000000" x="221" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="101"/>
|
||||
<text color="#000000" x="722" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="106"/>
|
||||
<text color="#000000" x="421" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="103"/>
|
||||
<text color="#000000" x="622" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="105"/>
|
||||
<text color="#000000" x="821" y="-21" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="107"/>
|
||||
<text color="#000000" x="-3" y="45" rotation="270" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="+24VCC"/>
|
||||
<text color="#000000" x="67.5021" y="46.4292" rotation="270" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="0VCC"/>
|
||||
<polygon closed="false" y1="-30" x2="-50" y2="-30" y5="50" y3="50" y4="50" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="900" x5="910" x3="-50" antialias="false" x4="910"/>
|
||||
<polygon closed="false" y1="-30" x2="890" y2="-10" y5="50" y3="0" y4="50" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="900" x5="910" x3="900" antialias="false" x4="920"/>
|
||||
<rect x="7.00784" style="line-style:normal;line-weight:normal;filling:none;color:black" y="1.10674" rx="0" width="6.82646" ry="0" height="17.7865" antialias="false"/>
|
||||
<circle x="40" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="10" y="5" antialias="false"/>
|
||||
<line y1="13.5" x2="48" y2="7" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="42.0677" length2="1.5" antialias="false"/>
|
||||
<line y1="7" x2="48" y2="13.5" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="42.0677" length2="1.5" antialias="false"/>
|
||||
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" y6="-10" x3="60" y1="-25" y7="-10" x8="45" y5="-30" y3="-10" x5="60" y2="-10" y8="5" x4="60" x6="60" x7="45" x1="40" antialias="false" closed="false" y4="-25" x2="40"/>
|
||||
<polygon closed="false" y1="15" x2="45" y2="30" y3="30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="45" x3="10" antialias="false"/>
|
||||
<polygon y6="35" closed="false" y1="-25" x2="0" y2="-10" y5="35" x7="0" y3="-10" y4="0" y7="50" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="0" x5="10" x3="10" antialias="false" x4="10" x6="0"/>
|
||||
<polygon closed="false" y1="-10" x2="20" y2="-10" y3="-30" y4="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="10" x3="20" antialias="false" x4="20"/>
|
||||
<polygon closed="false" y1="50" x2="20" y2="35" y3="35" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" x3="10" antialias="false"/>
|
||||
<polygon closed="false" y1="25" x2="60" y2="15" y3="-30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="55" x3="60" antialias="false"/>
|
||||
<polygon y6="30" closed="false" y1="50" x2="40" y2="35" y5="30" x7="65" y3="35" y4="50" y7="30" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" x5="60" x3="60" antialias="false" x4="60" x6="55"/>
|
||||
<polygon closed="false" y1="-5" x2="30" y2="-5" y3="0" y4="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="45" x3="30" antialias="false" x4="30"/>
|
||||
<line y1="30" x2="30" y2="25" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="30" length2="1.5" antialias="false"/>
|
||||
<rect x="27.7" style="line-style:normal;line-weight:normal;filling:none;color:black" y="0" rx="0" width="5" ry="0" height="5" antialias="false"/>
|
||||
<rect x="27.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y="19" rx="0" width="5" ry="0" height="5" antialias="false"/>
|
||||
<line y1="10" x2="900" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="60" length2="1.5" antialias="false"/>
|
||||
<rect x="110" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-15" rx="0" width="20" ry="0" height="20" antialias="false"/>
|
||||
<rect x="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-20" rx="0" width="20" ry="0" height="60" antialias="false"/>
|
||||
<text color="#000000" x="-37.6195" y="-23.4535" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="HE10"/>
|
||||
<text color="#000000" x="80" y="40" rotation="0" font="Sans Serif,6,-1,5,50,0,0,0,0,0" text="TELEFAST 2"/>
|
||||
<line y1="-30" x2="120" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="120" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="220" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="220" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="320" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="320" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="420" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="420" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="520" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="520" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="620" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="620" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="720" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="720" length2="1.5" antialias="false"/>
|
||||
<line y1="-30" x2="820" y2="-15" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="820" length2="1.5" antialias="false"/>
|
||||
<line y1="5" x2="120" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="120" length2="1.5" antialias="false"/>
|
||||
<line y1="5" x2="220" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="220" length2="1.5" antialias="false"/>
|
||||
<line y1="5" x2="320" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="320" length2="1.5" antialias="false"/>
|
||||
<line y1="6" x2="420" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="420" length2="1.5" antialias="false"/>
|
||||
<line y1="6" x2="520" y2="9" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="520" length2="1.5" antialias="false"/>
|
||||
<line y1="5" x2="620" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="620" length2="1.5" antialias="false"/>
|
||||
<line y1="6" x2="720" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="720" length2="1.5" antialias="false"/>
|
||||
<line y1="5" x2="820" y2="10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="820" length2="1.5" antialias="false"/>
|
||||
<circle x="-35.5" style="line-style:normal;line-weight:normal;filling:none;color:black" diameter="1" y="-15.5" antialias="false"/>
|
||||
<terminal x="320" y="-29" name="" type="Generic" uuid="{f0e3b5ab-e8d5-46b4-bb0b-696a361d0f80}" orientation="n"/>
|
||||
<terminal x="20" y="-29" name="" type="Generic" uuid="{9eaeb2f6-bdec-4ad3-a83c-4f0ca6eba9fd}" orientation="n"/>
|
||||
<terminal x="0" y="-29" name="" type="Generic" uuid="{1b9cd54d-f8a0-4887-b8f3-f0345686cbb7}" orientation="n"/>
|
||||
<terminal x="220" y="-29" name="" type="Generic" uuid="{36cd91e1-aaf8-4589-a736-795adb97e5f5}" orientation="n"/>
|
||||
<terminal x="720" y="-29" name="" type="Generic" uuid="{a71d9555-d648-49a4-a161-f492b4a430be}" orientation="n"/>
|
||||
<terminal x="620" y="-29" name="" type="Generic" uuid="{099e5c33-dfdb-4abd-b272-55d7dd22c776}" orientation="n"/>
|
||||
<terminal x="120" y="-29" name="" type="Generic" uuid="{5c261b97-d20f-4a02-8959-aaae5133d5b6}" orientation="n"/>
|
||||
<terminal x="20" y="50" name="" type="Generic" uuid="{8286df7c-7770-41d3-bb22-19c1bcf1bf44}" orientation="s"/>
|
||||
<terminal x="520" y="-29" name="" type="Generic" uuid="{0236491c-57c9-4318-8dac-e74923b00163}" orientation="n"/>
|
||||
<terminal x="420" y="-29" name="" type="Generic" uuid="{0fb28fd8-bff6-4882-a114-e04904948c31}" orientation="n"/>
|
||||
<terminal x="60" y="-29" name="" type="Generic" uuid="{1412c38e-98cc-4130-ba90-95c0d5a3fc1d}" orientation="n"/>
|
||||
<terminal x="40" y="-30" name="" type="Generic" uuid="{c721d5ff-21dc-44b7-8920-5acaea761009}" orientation="n"/>
|
||||
<terminal x="-45.4192" y="10.2976" name="" type="Generic" uuid="{44b8d8f1-8e24-4a62-946c-12ab0cbfe4d6}" orientation="w"/>
|
||||
<terminal x="60" y="50" name="" type="Generic" uuid="{a671ab55-b7e6-45fb-b910-7c92284813a2}" orientation="s"/>
|
||||
<terminal x="40" y="50" name="" type="Generic" uuid="{0610645d-1b2f-4982-b5d0-6f196cbe8cda}" orientation="s"/>
|
||||
<terminal x="820" y="-29" name="" type="Generic" uuid="{3cd8f1ac-a6b3-4fc6-981c-49f3e47179c3}" orientation="n"/>
|
||||
<terminal x="0" y="50" name="" type="Generic" uuid="{98c16b89-7e2e-4994-9a38-14e6e2da1fe6}" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,6 @@
|
||||
<qet-directory>
|
||||
<names>
|
||||
<name lang="de">Relais & Schalter</name>
|
||||
<name lang="en">Relay & Switch</name>
|
||||
</names>
|
||||
</qet-directory>
|
||||
@@ -0,0 +1,60 @@
|
||||
<definition height="60" version="0.90" hotspot_x="38" type="element" width="60" hotspot_y="29" link_type="master">
|
||||
<uuid uuid="{6d2d66a8-b841-4c8c-9b46-64638c62d4fa}"/>
|
||||
<names>
|
||||
<name lang="de">Shelly Schalter Eingang</name>
|
||||
<name lang="en">Shelly switch input</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="type">coil</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations>
|
||||
<elementInformation name="supplier" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="designation" show="1"></elementInformation>
|
||||
<elementInformation name="comment" show="1"></elementInformation>
|
||||
<elementInformation name="machine-manufacturer-reference" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="plant" show="1"></elementInformation>
|
||||
<elementInformation name="description" show="1"></elementInformation>
|
||||
<elementInformation name="unity" show="1"></elementInformation>
|
||||
<elementInformation name="machine_manufacturer_reference" show="1"></elementInformation>
|
||||
<elementInformation name="label" show="1"></elementInformation>
|
||||
<elementInformation name="quantity" show="1"></elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">Shelly</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<line x1="7" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-8" x2="0" antialias="true" y2="-2" end2="none"/>
|
||||
<circle y="10" x="-15" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="2" antialias="true"/>
|
||||
<rect height="30" ry="0" rx="0" y="-15" x="-25" style="line-style:normal;line-weight:normal;filling:none;color:black" width="40" antialias="false"/>
|
||||
<arc height="6" start="45" y="8" x="-17" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="90" width="6" antialias="true"/>
|
||||
<line x1="7" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="8" x2="0" antialias="true" y2="2" end2="none"/>
|
||||
<arc height="10" start="45" y="6" x="-19" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="90" width="10" antialias="true"/>
|
||||
<line x1="-7" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="0" x2="0" antialias="false" y2="0" end2="none"/>
|
||||
<arc height="14" start="45" y="4" x="-21" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="90" width="14" antialias="true"/>
|
||||
<dynamic_text uuid="{96611e2b-3d2d-4c9d-b61f-5bd7014dbdbd}" text_from="UserText" z="9" frame="false" y="-27" x="-34" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,5,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text>L</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{96611e2b-3d2d-4c9d-b61f-5bd7014dbdbd}" text_from="UserText" z="9" frame="false" y="12" x="-34" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,5,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text>N</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{96611e2b-3d2d-4c9d-b61f-5bd7014dbdbd}" text_from="UserText" z="9" frame="false" y="-27" x="-13" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,5,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text>SW1</text>
|
||||
</dynamic_text>
|
||||
<line x1="0" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-6" x2="0" antialias="true" y2="6" end2="none"/>
|
||||
<dynamic_text uuid="{8b1a8cee-c90e-4752-bc11-9c244d682c37}" text_from="ElementInfo" z="10" frame="false" y="-10" x="16" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line x1="-10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-21" x2="-10" antialias="false" y2="-11" end2="none"/>
|
||||
<line x1="-10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-11" x2="-10" antialias="false" y2="0" end2="none"/>
|
||||
<line x1="-10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="0" x2="-5" antialias="false" y2="0" end2="none"/>
|
||||
<line x1="-30" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-21" x2="-30" antialias="false" y2="-7" end2="none"/>
|
||||
<line x1="-30" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="21" x2="-30" antialias="false" y2="7" end2="none"/>
|
||||
<line x1="-30" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="7" x2="-26" antialias="false" y2="7" end2="none"/>
|
||||
<line x1="-30" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-7" x2="-25" antialias="false" y2="-7" end2="none"/>
|
||||
<terminal uuid="{d879e806-6ba9-452f-a4a5-b0c5dc1751be}" orientation="n" y="-25" x="-10" name="" type="Generic"/>
|
||||
<terminal uuid="{c6190de5-cbb6-4f5b-a38a-8ae0d02291cf}" orientation="n" y="-25" x="-30" name="" type="Generic"/>
|
||||
<terminal uuid="{92707dd6-8ed0-46a3-b5c8-b2c4b71f02e0}" orientation="s" y="25" x="-30" name="" type="Generic"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,70 @@
|
||||
<definition height="50" version="0.90" hotspot_x="44" type="element" width="100" hotspot_y="24" link_type="master">
|
||||
<uuid uuid="{06c82de6-d3f6-45b3-9913-b3791446205b}"/>
|
||||
<names>
|
||||
<name lang="de">Shelly 2.5 - Rolladen mode</name>
|
||||
<name lang="en">Shelly 2.5 - Roller Shutter</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="type">coil</kindInformation>
|
||||
</kindInformations>
|
||||
<elementInformations/>
|
||||
<informations>License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<rect height="10" ry="0" rx="0" y="-5" x="-40" style="line-style:normal;line-weight:thin;filling:none;color:black" width="20" antialias="false"/>
|
||||
<rect height="10" ry="0" rx="0" y="-5" x="30" style="line-style:normal;line-weight:thin;filling:none;color:black" width="20" antialias="false"/>
|
||||
<polygon x1="17" style="line-style:normal;line-weight:thin;filling:black;color:black" y3="-17" y1="-15" x2="16" x3="18" antialias="true" y2="-17"/>
|
||||
<line x1="17" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-19" x2="17" antialias="false" y2="-17" end2="none"/>
|
||||
<dynamic_text uuid="{4ef7e651-0a2a-40f4-8777-7facc1662619}" text_from="ElementInfo" z="5" frame="false" y="-10" x="22" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line x1="-21" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="10" x2="-21" antialias="false" y2="20" end2="none"/>
|
||||
<polygon x1="45" style="line-style:normal;line-weight:thin;filling:none;color:black" y3="1" y1="-3" x2="41" x4="45" closed="false" x3="41" y4="3" antialias="true" y2="-1"/>
|
||||
<line x1="30" end1="none" style="line-style:dashed;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" y1="0" x2="15" antialias="false" y2="0" end2="none"/>
|
||||
<dynamic_text uuid="{ab238038-7bfe-43e1-8991-4ad9fe1b967b}" text_from="UserText" z="9" frame="false" y="10" x="-31" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text>L</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{ab238038-7bfe-43e1-8991-4ad9fe1b967b}" text_from="UserText" z="10" frame="false" y="-20" x="35" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text>SW2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{ab238038-7bfe-43e1-8991-4ad9fe1b967b}" text_from="UserText" z="11" frame="false" y="-25" x="17" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text>O2</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{ab238038-7bfe-43e1-8991-4ad9fe1b967b}" text_from="UserText" z="12" frame="false" y="10" x="-41" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text>N</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{ab238038-7bfe-43e1-8991-4ad9fe1b967b}" text_from="UserText" z="13" frame="false" y="-25" x="-3" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text>O1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{ab238038-7bfe-43e1-8991-4ad9fe1b967b}" text_from="UserText" z="14" frame="false" y="-20" x="-45" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,4,-1,5,25,0,0,0,0,0" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text>SW1</text>
|
||||
</dynamic_text>
|
||||
<line x1="41" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" y1="-3" x2="41" antialias="false" y2="3" end2="none"/>
|
||||
<polygon x1="-26" style="line-style:normal;line-weight:thin;filling:none;color:black" y3="1" y1="-3" x2="-30" x4="-26" closed="false" x3="-30" y4="3" antialias="true" y2="-1"/>
|
||||
<line x1="37" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" y1="0" x2="41" antialias="false" y2="0" end2="none"/>
|
||||
<line x1="-30" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" y1="-3" x2="-30" antialias="false" y2="3" end2="none"/>
|
||||
<polygon x1="10" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="10" y1="-10" x2="20" closed="false" x3="0" antialias="true" y2="10"/>
|
||||
<line x1="-34" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" y1="0" x2="-30" antialias="false" y2="0" end2="none"/>
|
||||
<line x1="20" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-20" x2="20" antialias="false" y2="-10" end2="none"/>
|
||||
<polygon x1="-21" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="-10" y1="10" x2="0" closed="false" x3="-10" antialias="true" y2="10"/>
|
||||
<circle y="17.5" x="39.5" style="line-style:normal;line-weight:hight;filling:black;color:black" diameter="3" antialias="true"/>
|
||||
<line x1="0" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-20" x2="0" antialias="false" y2="-10" end2="none"/>
|
||||
<arc height="10" start="45" y="14" x="36" style="line-style:normal;line-weight:hight;filling:none;color:black" angle="90" width="10" antialias="true"/>
|
||||
<arc height="17" start="45" y="10.5" x="32.5" style="line-style:normal;line-weight:hight;filling:none;color:black" angle="90" width="17" antialias="true"/>
|
||||
<arc height="24" start="45" y="7" x="29" style="line-style:normal;line-weight:hight;filling:none;color:black" angle="90" width="24" antialias="true"/>
|
||||
<line x1="-31" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="10" x2="-31" antialias="false" y2="20" end2="none"/>
|
||||
<polygon x1="-3" style="line-style:normal;line-weight:thin;filling:black;color:black" y3="-18" y1="-20" x2="-4" x3="-2" antialias="true" y2="-18"/>
|
||||
<line x1="-3" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-18" x2="-3" antialias="false" y2="-16" end2="none"/>
|
||||
<line x1="-30" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-10" x2="-30" antialias="false" y2="-5" end2="none"/>
|
||||
<line x1="40" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-10" x2="40" antialias="false" y2="-5" end2="none"/>
|
||||
<line x1="40" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-10" x2="45" antialias="false" y2="-10" end2="none"/>
|
||||
<line x1="-35" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-10" x2="-30" antialias="false" y2="-10" end2="none"/>
|
||||
<line x1="-5" end1="none" style="line-style:dashed;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" y1="0" x2="-20" antialias="false" y2="0" end2="none"/>
|
||||
<terminal uuid="{d5747199-c96e-4714-b3e6-febb49cddaac}" orientation="s" y="20" x="-31" name="" type="Generic"/>
|
||||
<terminal uuid="{fc04f3e6-2ddd-419b-ad1c-3868bc3a1646}" orientation="w" y="-10" x="-40" name="" type="Generic"/>
|
||||
<terminal uuid="{40f72b9c-690a-486d-9cd3-562c9b112fc2}" orientation="n" y="-20" x="20" name="" type="Generic"/>
|
||||
<terminal uuid="{cc0a4739-febd-4db5-be17-c31dad8dc928}" orientation="n" y="-20" x="0" name="" type="Generic"/>
|
||||
<terminal uuid="{152bb27f-7e9c-4222-81c0-f13cff25460f}" orientation="e" y="-10" x="50" name="" type="Generic"/>
|
||||
<terminal uuid="{99e01aa1-275c-4191-b3f0-71e58022dafd}" orientation="s" y="20" x="-21" name="" type="Generic"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,34 @@
|
||||
<definition height="50" version="0.90" hotspot_x="11" type="element" width="40" hotspot_y="27" link_type="slave">
|
||||
<uuid uuid="{4bee0bb9-9596-47e6-b791-762129714d57}"/>
|
||||
<names>
|
||||
<name lang="de">Shelly WiFi Schalter (1sw)</name>
|
||||
<name lang="en">Shelly WiFi Switch (1sw)</name>
|
||||
</names>
|
||||
<kindInformations>
|
||||
<kindInformation name="type">simple</kindInformation>
|
||||
<kindInformation name="state">NO</kindInformation>
|
||||
<kindInformation name="number">1</kindInformation>
|
||||
</kindInformations>
|
||||
<informations></informations>
|
||||
<description>
|
||||
<circle y="-1" x="-1" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="2" antialias="true"/>
|
||||
<arc height="6" start="45" y="-3" x="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="90" width="6" antialias="true"/>
|
||||
<arc height="10" start="45" y="-5" x="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="90" width="10" antialias="true"/>
|
||||
<arc height="14" start="45" y="-7" x="-7" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="90" width="14" antialias="true"/>
|
||||
<rect height="18" ry="0" rx="0" y="-12" x="-8" style="line-style:normal;line-weight:normal;filling:none;color:black" width="34" antialias="false"/>
|
||||
<line x1="20" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-15" x2="20" antialias="true" y2="-9" end2="none"/>
|
||||
<line x1="19" end1="none" style="line-style:dotted;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" y1="-3" x2="5" antialias="true" y2="-3" end2="none"/>
|
||||
<text y="-13" x="15" text="I" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text y="11" x="14" text="O" rotation="0" font="Sans Serif,4,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<polygon x1="20" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="-9" y1="9" x2="20" x4="24" closed="false" x3="24" y4="-9" antialias="true" y2="3"/>
|
||||
<dynamic_text uuid="{92478ee8-d8fa-4dd9-858b-e1f3eeaea3ed}" text_from="ElementInfo" z="14" frame="false" y="-14" x="-17" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{ce34e949-7971-4cea-a8b8-bf614df6482a}" text_from="UserText" z="15" frame="false" y="1" x="-4" keep_visual_rotation="true" rotation="0" text_width="-1" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" Halignment="AlignRight" Valignment="AlignVCenter">
|
||||
<text>IP:</text>
|
||||
</dynamic_text>
|
||||
<terminal uuid="{228fd84a-4e24-42f5-b70c-0472086822a1}" orientation="s" y="13" x="20" name="" type="Generic"/>
|
||||
<terminal uuid="{e4e1845b-f183-4afb-85b3-4a51430d523b}" orientation="n" y="-19" x="20" name="" type="Generic"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,33 @@
|
||||
<definition link_type="simple" type="element" width="40" hotspot_x="25" height="50" hotspot_y="24" version="0.90">
|
||||
<uuid uuid="{e4f6875c-bb80-4432-bed7-b4e21d2808ca}"/>
|
||||
<names>
|
||||
<name lang="fr">Sonde de niveau vega c11/c22</name>
|
||||
</names>
|
||||
<elementInformations/>
|
||||
<informations>Author: The QElectroTech team
|
||||
License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
|
||||
<description>
|
||||
<line y1="10" x2="0" y2="20" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" length2="1.5" antialias="false"/>
|
||||
<dynamic_text text_from="ElementInfo" keep_visual_rotation="false" x="13" Halignment="AlignLeft" y="-23.5" rotation="0" font="Sans Serif,14,-1,5,50,0,0,0,0,0" uuid="{21d0aeca-2c01-4d53-9c0a-284c0a188abf}" frame="false" Valignment="AlignTop" text_width="-1" z="2">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="-20" x2="0" y2="-10" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="0" length2="1.5" antialias="false"/>
|
||||
<arc x="-23" start="86.1875" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-6" width="10" angle="188.625" height="12" antialias="true"/>
|
||||
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" y6="4.11111" x3="3" y1="-8" y7="11" x8="-10" y5="4" y3="-5" x5="12" y2="-10" y8="9" x4="12" x6="3" x7="3" x1="-10" antialias="false" closed="false" y4="-5" x2="3"/>
|
||||
<polygon closed="false" y1="-6" x2="-12" y2="-6" y3="-8" y4="-8" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-18" x3="-12" antialias="false" x4="-10"/>
|
||||
<polygon closed="false" y1="6" x2="-12" y2="6" y3="8" y4="8.88889" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-18" x3="-12" antialias="false" x4="-10.5556"/>
|
||||
<line y1="-6" x2="-18" y2="6" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x1="-18" length2="1.5" antialias="false"/>
|
||||
<line y1="-6" x2="-16" y2="6" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x1="-16" length2="1.5" antialias="false"/>
|
||||
<line y1="-6" x2="-14" y2="6" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x1="-14" length2="1.5" antialias="false"/>
|
||||
<line y1="-6" x2="-12" y2="6" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="-12" length2="1.5" antialias="false"/>
|
||||
<line y1="-4" x2="4" y2="4" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x1="4" length2="1.5" antialias="false"/>
|
||||
<line y1="-4" x2="6" y2="4" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x1="6" length2="1.5" antialias="false"/>
|
||||
<line y1="-4" x2="8" y2="4" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x1="8" length2="1.5" antialias="false"/>
|
||||
<line y1="-4" x2="10" y2="4" end1="none" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" x1="10" length2="1.5" antialias="false"/>
|
||||
<line y1="-8" x2="3.1" y2="4" end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" x1="3.1" length2="1.5" antialias="false"/>
|
||||
<text color="#000000" x="-10" y="6" rotation="0" font="Sans Serif,3,-1,5,50,1,0,0,0,0,Regular" text="VEGA"/>
|
||||
<terminal x="0" y="-20" name="" type="Generic" uuid="{2342dca9-396d-4d09-a533-a8cf07f57eee}" orientation="n"/>
|
||||
<terminal x="0" y="20" name="" type="Generic" uuid="{49245402-cbca-4f73-9396-923acc84beb7}" orientation="s"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -25,7 +25,7 @@ EN 60617: 07-22-03
|
||||
<text x="-14" text="N out" y="109" rotation="270" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<rect x="-29" height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="43" ry="0" width="10" rx="0"/>
|
||||
<rect x="0" height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="43" ry="0" width="10" rx="0"/>
|
||||
<line y1="80" antialias="false" y2="80" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-13.1677" length1="1.5" x1="-27.8452"/>
|
||||
<line y1="80" antialias="false" y2="80" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-13.17" length1="1.5" x1="-27.85"/>
|
||||
<line y1="-30" antialias="false" y2="110" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-50.05" length1="1.5" x1="-50.05"/>
|
||||
<line y1="90" antialias="false" y2="90" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="20" length1="1.5" x1="7"/>
|
||||
<text x="-14" text="N in" y="-17" rotation="270" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
@@ -47,25 +47,25 @@ EN 60617: 07-22-03
|
||||
<line y1="85.808" antialias="false" y2="94.208" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="7" length1="1.5" x1="7"/>
|
||||
<line y1="75.808" antialias="false" y2="84.208" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-28" length1="1.5" x1="-28"/>
|
||||
<text x="-54" text="PE" y="109" rotation="270" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<line y1="45" antialias="false" y2="45" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-50.006" length1="1.5" x1="-29.2435"/>
|
||||
<line y1="45" antialias="false" y2="45" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-50.006" length1="1.5" x1="-29.24"/>
|
||||
<rect x="-45" height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="58" ry="0" width="10" rx="0"/>
|
||||
<line y1="40" antialias="false" y2="50" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="1" length1="1.5" x1="9"/>
|
||||
<line y1="55" antialias="false" y2="65" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-24" length1="1.5" x1="-16"/>
|
||||
<line y1="90" antialias="false" y2="90" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="2.31791" length1="1.5" x1="-49.6012"/>
|
||||
<line y1="90" antialias="false" y2="90" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="2.32" length1="1.5" x1="-49.6"/>
|
||||
<dynamic_text uuid="{a82efd0e-c6f2-4ddf-9a61-a1e6dd8de5dd}" frame="false" x="43" Valignment="AlignTop" z="37" text_width="-1" y="84" text_from="ElementInfo" rotation="0" Halignment="AlignLeft" font="Sans Serif,9,-1,5,50,0,0,0,0,0">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line y1="80" antialias="false" y2="80" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-32.4194" length1="1.5" x1="-49.6129"/>
|
||||
<line y1="80" antialias="false" y2="80" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-32.42" length1="1.5" x1="-49.61"/>
|
||||
<polygon y1="45" x4="-22" closed="false" antialias="false" y2="43" x3="-19" y4="45" style="line-style:normal;line-weight:normal;filling:black;color:black" x2="-19" x1="-22" y3="47"/>
|
||||
<line y1="50" antialias="false" y2="50" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="1" length1="1.5" x1="-2"/>
|
||||
<line y1="85.808" antialias="false" y2="94.208" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="3" length1="1.5" x1="3"/>
|
||||
<line y1="75.808" antialias="false" y2="84.208" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-32" length1="1.5" x1="-32"/>
|
||||
<line y1="65" antialias="false" y2="65" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-24" length1="1.5" x1="-27"/>
|
||||
<line y1="45" antialias="false" y2="45" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-0.673911" length1="1.5" x1="-18.4549"/>
|
||||
<line y1="60" antialias="false" y2="60" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-49.9316" length1="1.5" x1="-45.9907"/>
|
||||
<line y1="45" antialias="false" y2="45" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-0.67" length1="1.5" x1="-18.45"/>
|
||||
<line y1="60" antialias="false" y2="60" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-49.93" length1="1.5" x1="-46"/>
|
||||
<line y1="45" antialias="false" y2="45" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="20" length1="1.5" x1="10"/>
|
||||
<line y1="60" antialias="false" y2="60" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-10.2072" length1="1.5" x1="-14.7318"/>
|
||||
<line y1="60" antialias="false" y2="60" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-10.2" length1="1.5" x1="-14.73"/>
|
||||
<polygon y1="60" x4="-38" closed="false" antialias="false" y2="58" x3="-35" y4="60" style="line-style:normal;line-weight:normal;filling:black;color:black" x2="-35" x1="-38" y3="62"/>
|
||||
<rect x="0" height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y="3" ry="0" width="10" rx="0"/>
|
||||
<line y1="0" antialias="false" y2="10" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="1" length1="1.5" x1="9"/>
|
||||
@@ -76,7 +76,7 @@ EN 60617: 07-22-03
|
||||
<line y1="-14.192" antialias="false" y2="-5.792" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="3" length1="1.5" x1="3"/>
|
||||
<circle x="-4" antialias="true" diameter="18" style="line-style:normal;line-weight:normal;filling:none;color:black" y="16"/>
|
||||
<rect x="-12" height="10" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y="20" ry="0" width="4" rx="0"/>
|
||||
<line y1="60" antialias="false" y2="60" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-26.1368" length1="1.5" x1="-33.8737"/>
|
||||
<line y1="60" antialias="false" y2="60" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-26.14" length1="1.5" x1="-33.87"/>
|
||||
<text x="-54" text="PE" y="-20" rotation="270" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<circle x="18" antialias="true" diameter="4" style="line-style:normal;line-weight:normal;filling:black;color:black" y="3"/>
|
||||
<line y1="-30" antialias="false" y2="110" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none" length2="1.5" x2="-10" length1="1.5" x1="-10"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition width="130" link_type="simple" height="210" hotspot_x="64" version="0.80" type="element" hotspot_y="155">
|
||||
<definition width="130" link_type="simple" height="210" hotspot_x="64" version="0.90" type="element" hotspot_y="155">
|
||||
<names>
|
||||
<name lang="en">289-101</name>
|
||||
<name lang="de">289-101</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition width="130" link_type="simple" height="210" hotspot_x="64" version="0.80" type="element" hotspot_y="155">
|
||||
<definition width="130" link_type="simple" height="210" hotspot_x="64" version="0.90" type="element" hotspot_y="155">
|
||||
<names>
|
||||
<name lang="en">289-103</name>
|
||||
<name lang="de">289-103</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition version="0.80" type="element" hotspot_x="64" link_type="simple" height="210" width="130" hotspot_y="155">
|
||||
<definition version="0.90" type="element" hotspot_x="64" link_type="simple" height="210" width="130" hotspot_y="155">
|
||||
<names>
|
||||
<name lang="en">289-114</name>
|
||||
<name lang="fr">289-114</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition version="0.80" height="210" hotspot_x="64" link_type="simple" hotspot_y="155" type="element" width="130">
|
||||
<definition width="130" version="0.90" hotspot_x="64" height="210" hotspot_y="154" type="element" link_type="simple">
|
||||
<names>
|
||||
<name lang="en">289-131</name>
|
||||
<name lang="de">289-131</name>
|
||||
@@ -7,83 +7,83 @@
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">289-131</elementInformation>
|
||||
<elementInformation show="1" name="description">Module with terminals</elementInformation>
|
||||
<elementInformation show="1" name="designation">289-131</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect rx="0" height="200" antialias="false" x="-60" ry="0" y="-150" style="line-style:normal;line-weight:normal;filling:none;color:black" width="120"/>
|
||||
<line end2="none" y2="-20" x2="60" x1="24" antialias="false" length2="1.5" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="circle"/>
|
||||
<line end2="none" y2="-100" x2="60" x1="24" antialias="false" length2="1.5" y1="-100" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="circle"/>
|
||||
<line end2="none" y2="-60" x2="60" x1="24" antialias="false" length2="1.5" y1="-60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="circle"/>
|
||||
<line end2="none" y2="20" x2="60" x1="24" antialias="false" length2="1.5" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="circle"/>
|
||||
<circle antialias="true" x="57.5" diameter="5" y="17.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end2="none" y2="-80" x2="60" x1="24" antialias="false" length2="1.5" y1="-80" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="circle"/>
|
||||
<line end2="circle" y2="-20" x2="-24" x1="-60" antialias="false" length2="1.5" y1="-20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none"/>
|
||||
<line end2="none" y2="0" x2="60" x1="24" antialias="false" length2="1.5" y1="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="circle"/>
|
||||
<line end2="circle" y2="-100" x2="-24" x1="-60" antialias="false" length2="1.5" y1="-100" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none"/>
|
||||
<line end2="none" y2="-40" x2="60" x1="24" antialias="false" length2="1.5" y1="-40" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="circle"/>
|
||||
<circle antialias="true" x="-62.5" diameter="5" y="17.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-54.1875" text="7" y="-62" rotation="0"/>
|
||||
<line end2="none" y2="-120" x2="60" x1="24" antialias="false" length2="1.5" y1="-120" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="circle"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-55" text="3" y="-102" rotation="0"/>
|
||||
<line end2="circle" y2="-60" x2="-24" x1="-60" antialias="false" length2="1.5" y1="-60" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-54" text="15" y="18" rotation="0"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="48.625" text="16" y="18" rotation="0"/>
|
||||
<circle antialias="true" x="-62.5" diameter="5" y="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end2="circle" y2="20" x2="-24" x1="-60" antialias="false" length2="1.5" y1="20" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-54.1875" text="5" y="-82" rotation="0"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-54.8125" text="11" y="-22" rotation="0"/>
|
||||
<circle antialias="true" x="57.5" diameter="5" y="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="51.4375" text="8" y="-62" rotation="0"/>
|
||||
<circle antialias="true" x="-62.5" diameter="5" y="-22.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-54" text="13" y="-2" rotation="0"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="50.625" text="4" y="-102" rotation="0"/>
|
||||
<circle antialias="true" x="-62.5" diameter="5" y="-62.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" x="57.5" diameter="5" y="-62.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end2="circle" y2="-80" x2="-24" x1="-60" antialias="false" length2="1.5" y1="-80" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none"/>
|
||||
<circle antialias="true" x="-62.5" diameter="5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" x="57.5" diameter="5" y="-22.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-54.8125" text="9" y="-42" rotation="0"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="51.4375" text="6" y="-82" rotation="0"/>
|
||||
<circle antialias="true" x="57.5" diameter="5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="47.8125" text="12" y="-22" rotation="0"/>
|
||||
<circle antialias="true" x="57.5" diameter="5" y="-82.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" x="-62.5" diameter="5" y="-82.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="48.625" text="14" y="-2" rotation="0"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="47.8125" text="10" y="-42" rotation="0"/>
|
||||
<circle antialias="true" x="-62.5" diameter="5" y="-102.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" x="57.5" diameter="5" y="-102.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<dynamic_text Halignment="AlignLeft" z="44" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{6c442e4a-1f10-485a-aff7-37cccee017f1}" frame="false" x="-4" y="51" text_from="ElementInfo" text_width="-1" rotation="0" Valignment="AlignTop">
|
||||
<rect width="120" x="-60" height="200" rx="0" antialias="false" y="-150" style="line-style:normal;line-weight:normal;filling:none;color:black" ry="0"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="circle" y2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="24" y1="-20" x2="60" end2="none"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="circle" y2="-100" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="24" y1="-100" x2="60" end2="none"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="circle" y2="-60" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="24" y1="-60" x2="60" end2="none"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="circle" y2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="24" y1="20" x2="60" end2="none"/>
|
||||
<circle x="57.5" diameter="5" antialias="true" y="17.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="circle" y2="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="24" y1="-80" x2="60" end2="none"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="none" y2="-20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" y1="-20" x2="-24" end2="circle"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="circle" y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="24" y1="0" x2="60" end2="none"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="none" y2="-100" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" y1="-100" x2="-24" end2="circle"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="circle" y2="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="24" y1="-40" x2="60" end2="none"/>
|
||||
<circle x="-62.5" diameter="5" antialias="true" y="17.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="7" color="#000000" x="-54.1875" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-62" rotation="0"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="circle" y2="-120" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="24" y1="-120" x2="60" end2="none"/>
|
||||
<text text="3" color="#000000" x="-55" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-102" rotation="0"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="none" y2="-60" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" y1="-60" x2="-24" end2="circle"/>
|
||||
<text text="15" color="#000000" x="-54" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="18" rotation="0"/>
|
||||
<text text="16" color="#000000" x="48.625" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="18" rotation="0"/>
|
||||
<circle x="-62.5" diameter="5" antialias="true" y="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="none" y2="20" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" y1="20" x2="-24" end2="circle"/>
|
||||
<text text="5" color="#000000" x="-54.1875" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-82" rotation="0"/>
|
||||
<text text="11" color="#000000" x="-54.8125" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-22" rotation="0"/>
|
||||
<circle x="57.5" diameter="5" antialias="true" y="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="8" color="#000000" x="51.4375" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-62" rotation="0"/>
|
||||
<circle x="-62.5" diameter="5" antialias="true" y="-22.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="13" color="#000000" x="-54" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-2" rotation="0"/>
|
||||
<text text="4" color="#000000" x="50.625" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-102" rotation="0"/>
|
||||
<circle x="-62.5" diameter="5" antialias="true" y="-62.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="57.5" diameter="5" antialias="true" y="-62.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="none" y2="-80" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" y1="-80" x2="-24" end2="circle"/>
|
||||
<circle x="-62.5" diameter="5" antialias="true" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="57.5" diameter="5" antialias="true" y="-22.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="9" color="#000000" x="-54.8125" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" rotation="0"/>
|
||||
<text text="6" color="#000000" x="51.4375" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-82" rotation="0"/>
|
||||
<circle x="57.5" diameter="5" antialias="true" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="12" color="#000000" x="47.8125" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-22" rotation="0"/>
|
||||
<circle x="57.5" diameter="5" antialias="true" y="-82.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-62.5" diameter="5" antialias="true" y="-82.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="14" color="#000000" x="48.625" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-2" rotation="0"/>
|
||||
<text text="10" color="#000000" x="47.8125" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" rotation="0"/>
|
||||
<circle x="-62.5" diameter="5" antialias="true" y="-102.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="57.5" diameter="5" antialias="true" y="-102.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<dynamic_text frame="false" text_width="-1" x="-4" z="44" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="51" rotation="0" uuid="{6c442e4a-1f10-485a-aff7-37cccee017f1}" keep_visual_rotation="true" text_from="ElementInfo" Halignment="AlignLeft" Valignment="AlignTop">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line end2="circle" y2="0" x2="-24" x1="-60" antialias="false" length2="1.5" y1="0" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="50.625" text="2" y="-122" rotation="0"/>
|
||||
<circle antialias="true" x="57.5" diameter="5" y="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" x="-62.5" diameter="5" y="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end2="circle" y2="-40" x2="-24" x1="-60" antialias="false" length2="1.5" y1="-40" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none"/>
|
||||
<line end2="circle" y2="-120" x2="-24" x1="-60" antialias="false" length2="1.5" y1="-120" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none"/>
|
||||
<text color="#000000" font="Sans Serif,8,-1,5,50,0,0,0,0,0" x="-50" text="Module w. Terminals" y="48" rotation="0"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-55" text="1" y="-122" rotation="0"/>
|
||||
<text color="#000000" font="Sans Serif,8,-1,5,50,0,0,0,0,0" x="-38" text="WAGO 289-131" y="-136" rotation="0"/>
|
||||
<terminal orientation="e" name="R1.2" x="60" y="-120"/>
|
||||
<terminal orientation="e" name="R8.2" x="60" y="20"/>
|
||||
<terminal orientation="w" name="R1.1" x="-60" y="-120"/>
|
||||
<terminal orientation="e" name="R2.2" x="60" y="-100"/>
|
||||
<terminal orientation="e" name="R3.2" x="60" y="-80"/>
|
||||
<terminal orientation="e" name="R4.2" x="60" y="-60"/>
|
||||
<terminal orientation="e" name="R5.2" x="60" y="-40"/>
|
||||
<terminal orientation="e" name="R6.2" x="60" y="-20"/>
|
||||
<terminal orientation="e" name="R7.2" x="60" y="0"/>
|
||||
<terminal orientation="w" name="R2.1" x="-60" y="-100"/>
|
||||
<terminal orientation="w" name="R3.1" x="-60" y="-80"/>
|
||||
<terminal orientation="w" name="R4.1" x="-60" y="-60"/>
|
||||
<terminal orientation="w" name="R5.1" x="-60" y="-40"/>
|
||||
<terminal orientation="w" name="R6.1" x="-60" y="-20"/>
|
||||
<terminal orientation="w" name="R7.1" x="-60" y="0"/>
|
||||
<terminal orientation="w" name="R8.1" x="-60" y="20"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="none" y2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" y1="0" x2="-24" end2="circle"/>
|
||||
<text text="2" color="#000000" x="50.625" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-122" rotation="0"/>
|
||||
<circle x="57.5" diameter="5" antialias="true" y="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-62.5" diameter="5" antialias="true" y="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="none" y2="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" y1="-40" x2="-24" end2="circle"/>
|
||||
<line length2="1.5" length1="1.5" antialias="false" end1="none" y2="-120" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-60" y1="-120" x2="-24" end2="circle"/>
|
||||
<text text="Module w. Terminals" color="#000000" x="-55" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="48" rotation="0"/>
|
||||
<text text="1" color="#000000" x="-55" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-122" rotation="0"/>
|
||||
<text text="WAGO 289-131" color="#000000" x="-40" font="Sans Serif,8,-1,5,50,0,0,0,0,0" y="-136" rotation="0"/>
|
||||
<terminal x="60" name="R1.2" y="-120" type="Generic" uuid="{c06a3e92-b98d-4ae1-ac3d-b8d5dc411d74}" orientation="e"/>
|
||||
<terminal x="60" name="R8.2" y="20" type="Generic" uuid="{934850fc-0909-45c2-8cdc-666e9a1eab91}" orientation="e"/>
|
||||
<terminal x="-60" name="R1.1" y="-120" type="Generic" uuid="{7d8948d8-f741-458a-be75-7bb0f73d7cfb}" orientation="w"/>
|
||||
<terminal x="60" name="R2.2" y="-100" type="Generic" uuid="{f3197368-be22-4697-b90a-11b563ea68e9}" orientation="e"/>
|
||||
<terminal x="60" name="R3.2" y="-80" type="Generic" uuid="{1ec57e4a-e877-4740-9deb-d1c1dbbfc1cf}" orientation="e"/>
|
||||
<terminal x="60" name="R4.2" y="-60" type="Generic" uuid="{807ef57c-d5a6-4098-b052-4f6014a7af6f}" orientation="e"/>
|
||||
<terminal x="60" name="R5.2" y="-40" type="Generic" uuid="{61166fe2-e401-408b-85eb-bae4e8b48013}" orientation="e"/>
|
||||
<terminal x="60" name="R6.2" y="-20" type="Generic" uuid="{3f7dea68-36aa-4611-a99a-0310e377a946}" orientation="e"/>
|
||||
<terminal x="60" name="R7.2" y="0" type="Generic" uuid="{b417d560-91ca-40ce-953e-43ed3810c476}" orientation="e"/>
|
||||
<terminal x="-60" name="R2.1" y="-100" type="Generic" uuid="{2b5ae636-3ed1-4657-b046-867d1a9afb0a}" orientation="w"/>
|
||||
<terminal x="-60" name="R3.1" y="-80" type="Generic" uuid="{37ea27b3-67fa-48e4-b07f-b3338ad4b357}" orientation="w"/>
|
||||
<terminal x="-60" name="R4.1" y="-60" type="Generic" uuid="{01663748-4e6d-453f-9cbb-5b76535a5c73}" orientation="w"/>
|
||||
<terminal x="-60" name="R5.1" y="-40" type="Generic" uuid="{ed4e3dd3-e88f-485a-b591-5dd1e7620160}" orientation="w"/>
|
||||
<terminal x="-60" name="R6.1" y="-20" type="Generic" uuid="{aa1e50cf-5cd5-487b-beb2-3946b8a9f71d}" orientation="w"/>
|
||||
<terminal x="-60" name="R7.1" y="0" type="Generic" uuid="{d6150c5a-f82e-40fe-8427-f4c8900b10eb}" orientation="w"/>
|
||||
<terminal x="-60" name="R8.1" y="20" type="Generic" uuid="{e6c7920e-9211-4be2-ad2c-a643eeb084d7}" orientation="w"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
<definition type="element" width="130" hotspot_y="35" link_type="simple" height="70" version="0.90" hotspot_x="64">
|
||||
<names>
|
||||
<name lang="fr">289-172</name>
|
||||
<name lang="de">289-172</name>
|
||||
<name lang="en">289-172</name>
|
||||
<name lang="cs">289-172</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">289-172</elementInformation>
|
||||
<elementInformation show="1" name="description">Übergabemodul RJ45 RJ-45</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect width="120" antialias="false" rx="0" height="60" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" y="-30" ry="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="50.625" text="2" rotation="0" y="-4"/>
|
||||
<circle diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="57.5" y="-2.5"/>
|
||||
<circle diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-62.5" y="-2.5"/>
|
||||
<line length1="1.5" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="0" x1="-60" y2="0" length2="1.5" end1="none" end2="none" x2="60"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-32" text="RJ45 - RJ45" rotation="0" y="26"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="-55" text="1" rotation="0" y="-4"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-45" text="WAGO 289-172" rotation="0" y="-17"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="16" frame="false" x="-4" rotation="0" text_from="ElementInfo" y="28" uuid="{32815a7b-7a5c-4c39-bbd5-70f7869c4d0b}" keep_visual_rotation="true">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal type="Generic" orientation="e" x="60" name="X1.2" y="0" uuid="{a94f37bd-28b9-4593-b1a3-f2aa90bc1002}"/>
|
||||
<terminal type="Generic" orientation="w" x="-60" name="X1.1" y="0" uuid="{9882d75f-797f-4ec2-87ec-8e5972c6a694}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,53 +1,58 @@
|
||||
<definition width="730" hotspot_x="364" height="100" hotspot_y="46" link_type="simple" type="element" version="0.51">
|
||||
<definition width="730" type="element" version="0.90" link_type="simple" height="100" hotspot_x="364" hotspot_y="46">
|
||||
<names>
|
||||
<name lang="en">289-174</name>
|
||||
<name lang="cs">289-174</name>
|
||||
<name lang="fr">289-174</name>
|
||||
<name lang="de">289-174</name>
|
||||
<name lang="cs">289-174</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">289-174</elementInformation>
|
||||
<elementInformation show="1" name="description">RJ-45 to CAGE-CLAMP</elementInformation>
|
||||
<elementInformation show="1" name="designation">289-174</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<circle antialias="true" diameter="5" y="-42.5" x="317.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text size="9" y="17" x="327" text="RJ-45"/>
|
||||
<circle antialias="true" diameter="5" y="-42.5" x="77.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" length2="1.5" y2="-40" x1="323" x2="360" end1="none" y1="-40" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text size="9" y="-24" x="321" text="S"/>
|
||||
<circle antialias="true" diameter="5" y="-42.5" x="-162.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" diameter="5" y="-42.5" x="-242.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" length2="1.5" y2="50" x1="-360" x2="-360" end1="none" y1="-40" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" diameter="5" y="-42.5" x="-322.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle antialias="true" diameter="5" y="-2.5" x="357.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<input size="9" tagg="label" y="41" x="220" rotate="true" text="X123"/>
|
||||
<line end2="none" antialias="false" length2="1.5" y2="50" x1="360" x2="360" end1="none" y1="2.5" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" length2="1.5" y2="-40" x1="-157" x2="77" end1="none" y1="-40" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" length2="1.5" y2="-40" x1="-237" x2="-163" end1="none" y1="-40" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" length2="1.5" y2="-40" x1="-317" x2="-243" end1="none" y1="-40" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" length2="1.5" y2="-40" x1="83" x2="317" end1="none" y1="-40" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" length2="1.5" y2="-40" x1="-360" x2="-323" end1="none" y1="-40" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" length2="1.5" y2="-2.5" x1="360" x2="360" end1="none" y1="-40" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line end2="none" antialias="false" length2="1.5" y2="50" x1="-360" x2="360" end1="none" y1="50" length1="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text size="9" y="-24" x="-159" text="3"/>
|
||||
<text size="9" y="-24" x="82" text="6"/>
|
||||
<text size="9" y="45" x="-130" text="RJ-45 to CAGE-CLAMP"/>
|
||||
<text size="9" y="-24" x="-239" text="2"/>
|
||||
<text size="9" y="-24" x="161" text="7"/>
|
||||
<text size="9" y="-24" x="-319" text="1"/>
|
||||
<text size="9" y="-24" x="241" text="8"/>
|
||||
<text size="9" y="45" x="-330" text="WAGO 289-174"/>
|
||||
<text size="9" y="-24" x="-79" text="4"/>
|
||||
<text size="9" y="-24" x="2" text="5"/>
|
||||
<terminal y="-40" x="-160" orientation="n"/>
|
||||
<terminal y="-40" x="-320" orientation="n"/>
|
||||
<terminal y="-40" x="80" orientation="n"/>
|
||||
<terminal y="0" x="360" orientation="e"/>
|
||||
<terminal y="-40" x="320" orientation="n"/>
|
||||
<terminal y="-40" x="-240" orientation="n"/>
|
||||
<polygon x1="80" antialias="false" closed="false" x2="80" y1="-40" y2="-10" x3="90" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x1="-240" antialias="false" closed="false" x2="-240" y1="-40" y2="-10" x3="-230" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Halignment="AlignLeft" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" y="29.5" uuid="{3eeef5f5-6173-4d40-82c8-57fc65b43c63}" text_width="-1" keep_visual_rotation="true" text_from="ElementInfo" x="220" z="5" rotation="0" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<polygon x1="-160" antialias="false" closed="false" x2="-160" y1="-40" y2="-10" x3="-150" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<rect width="720" antialias="false" rx="0" ry="0" y="-40" height="90" x="-360" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="17" text="RJ-45" x="327" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="S" x="321" rotation="0"/>
|
||||
<circle diameter="5" antialias="true" y="-2.5" x="357.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="3" x="-159" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="6" x="82" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" text="RJ-45 to CAGE-CLAMP" x="-130" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="2" x="-239" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="7" x="161" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="1" x="-319" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="8" x="241" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" text="WAGO 289-174" x="-330" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-26.4463" text="4" x="-79" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="5" x="1.10747" rotation="0"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="317.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="77.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-162.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="157.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-242.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="237.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-322.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-82.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<ellipse width="5" antialias="false" y="-6" height="12" x="317.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="320" length2="1.5" antialias="false" x2="320" length1="1.5" y1="-40" end1="none" y2="-4" style="line-style:normal;line-weight:normal;filling:black;color:black" end2="circle"/>
|
||||
<line x1="360" length2="1.5" antialias="false" x2="-320" length1="1.5" y1="0" end1="none" y2="0" style="line-style:normal;line-weight:hight;filling:none;color:black" end2="none"/>
|
||||
<polygon x1="-320" antialias="false" closed="false" x2="-320" y1="-40" y2="-10" x3="-310" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{c4bf6361-2f42-41eb-b195-b194fe11acbc}" name="" x="-240"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{4c24ddab-174a-472c-b37f-bb7caf214f63}" name="" x="-160"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{1c267f69-fd5e-4f90-80af-5f32a02072dc}" name="" x="-320"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{1b2350ad-aa4e-4736-a5e7-cce10e230b97}" name="" x="80"/>
|
||||
<terminal orientation="e" type="Generic" y="0" uuid="{c0b90809-9003-420b-a52e-d59f911374e5}" name="" x="360"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{31b23e55-8c17-4921-8b9d-1164a252dba5}" name="" x="320"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,55 +1,66 @@
|
||||
<definition version="0.80" link_type="simple" width="730" hotspot_y="46" type="element" hotspot_x="364" height="100">
|
||||
<definition version="0.90" width="730" height="100" link_type="simple" hotspot_x="364" hotspot_y="46" type="element">
|
||||
<names>
|
||||
<name lang="en">289-175</name>
|
||||
<name lang="fr">289-175</name>
|
||||
<name lang="de">289-175</name>
|
||||
<name lang="cs">289-175</name>
|
||||
<name lang="de">289-175</name>
|
||||
<name lang="en">289-175</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">289-175</elementInformation>
|
||||
<elementInformation show="1" name="description">RJ-45 to CAGE-CLAMP</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
<elementInformation name="designation" show="1">289-175</elementInformation>
|
||||
<elementInformation name="description" show="1">RJ-45 to CAGE-CLAMP</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect ry="0" x="-360" width="720" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-40" height="90" antialias="false"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="327" text="RJ-45" color="#000000" y="17" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="321" text="S" color="#000000" y="-24" rotation="0"/>
|
||||
<circle x="357.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-2.5" antialias="true"/>
|
||||
<dynamic_text frame="false" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" Halignment="AlignLeft" z="5" text_width="-1" x="220" y="29.5" rotation="0" text_from="ElementInfo">
|
||||
<polygon x3="10" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-40" y2="-10" x2="0" antialias="false" x1="0" closed="false"/>
|
||||
<polygon x3="250" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-40" y2="-10" x2="240" antialias="false" x1="240" closed="false"/>
|
||||
<polygon x3="90" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-40" y2="-10" x2="80" antialias="false" x1="80" closed="false"/>
|
||||
<polygon x3="-70" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-40" y2="-10" x2="-80" antialias="false" x1="-80" closed="false"/>
|
||||
<polygon x3="-230" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-40" y2="-10" x2="-240" antialias="false" x1="-240" closed="false"/>
|
||||
<polygon x3="170" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-40" y2="-10" x2="160" antialias="false" x1="160" closed="false"/>
|
||||
<polygon x3="-150" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-40" y2="-10" x2="-160" antialias="false" x1="-160" closed="false"/>
|
||||
<rect x="-360" y="-40" rx="0" ry="0" width="720" height="90" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<text x="327" y="17" text="RJ-45" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<text x="321" y="-24" text="S" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<circle x="357.5" y="-2.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<dynamic_text text_from="ElementInfo" x="220" y="29.5" keep_visual_rotation="true" uuid="{3eeef5f5-6173-4d40-82c8-57fc65b43c63}" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" frame="false" z="5" rotation="0" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-159" text="3" color="#000000" y="-24" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="82" text="6" color="#000000" y="-24" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-130" text="RJ-45 to CAGE-CLAMP" color="#000000" y="45" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-239" text="2" color="#000000" y="-24" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="161" text="7" color="#000000" y="-24" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-319" text="1" color="#000000" y="-24" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="241" text="8" color="#000000" y="-24" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-330" text="WAGO 289-175" color="#000000" y="45" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-79" text="4" color="#000000" y="-24" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="2" text="5" color="#000000" y="-24" rotation="0"/>
|
||||
<circle x="317.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle x="77.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle x="-162.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle x="157.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle x="-242.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle x="237.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle x="-322.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle x="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle x="-82.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" antialias="true"/>
|
||||
<terminal x="-240" name="" y="-40" orientation="n"/>
|
||||
<terminal x="-160" name="" y="-40" orientation="n"/>
|
||||
<terminal x="-320" name="" y="-40" orientation="n"/>
|
||||
<terminal x="160" name="" y="-40" orientation="n"/>
|
||||
<terminal x="80" name="" y="-40" orientation="n"/>
|
||||
<terminal x="240" name="" y="-40" orientation="n"/>
|
||||
<terminal x="360" name="" y="0" orientation="e"/>
|
||||
<terminal x="-80" name="" y="-40" orientation="n"/>
|
||||
<terminal x="0" name="" y="-40" orientation="n"/>
|
||||
<terminal x="320" name="" y="-40" orientation="n"/>
|
||||
<text x="-159" y="-24" text="3" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<text x="82" y="-24" text="6" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<text x="-130" y="45" text="RJ-45 to CAGE-CLAMP" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<text x="-239" y="-24" text="2" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<text x="161" y="-24" text="7" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<text x="-319" y="-24" text="1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<text x="241" y="-24" text="8" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<text x="-330" y="45" text="WAGO 289-175" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<text x="-79" y="-24" text="4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<text x="2" y="-24" text="5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
|
||||
<circle x="317.5" y="-42.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="77.5" y="-42.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="-162.5" y="-42.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="157.5" y="-42.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="-242.5" y="-42.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="237.5" y="-42.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="-322.5" y="-42.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="-2.5" y="-42.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="-82.5" y="-42.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<ellipse x="317.5" y="-6" width="5" height="12" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="-40" y2="-4" x2="320" end2="circle" antialias="false" x1="320" length2="1.5"/>
|
||||
<line end1="none" length1="1.5" style="line-style:normal;line-weight:hight;filling:none;color:black" y1="0" y2="0" x2="-320" end2="none" antialias="false" x1="360" length2="1.5"/>
|
||||
<polygon x3="-310" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-40" y2="-10" x2="-320" antialias="false" x1="-320" closed="false"/>
|
||||
<terminal x="160" y="-40" uuid="{b2a5bf12-263d-4a6c-af7b-74ce23ad5f77}" orientation="n" type="Generic" name=""/>
|
||||
<terminal x="80" y="-40" uuid="{1b2350ad-aa4e-4736-a5e7-cce10e230b97}" orientation="n" type="Generic" name=""/>
|
||||
<terminal x="-80" y="-40" uuid="{efd4be21-455b-47d8-bff0-6660def238da}" orientation="n" type="Generic" name=""/>
|
||||
<terminal x="360" y="0" uuid="{c0b90809-9003-420b-a52e-d59f911374e5}" orientation="e" type="Generic" name=""/>
|
||||
<terminal x="-320" y="-40" uuid="{1c267f69-fd5e-4f90-80af-5f32a02072dc}" orientation="n" type="Generic" name=""/>
|
||||
<terminal x="0" y="-40" uuid="{661fa241-2db3-4f9e-bb68-71d41539f809}" orientation="n" type="Generic" name=""/>
|
||||
<terminal x="320" y="-40" uuid="{31b23e55-8c17-4921-8b9d-1164a252dba5}" orientation="n" type="Generic" name=""/>
|
||||
<terminal x="240" y="-40" uuid="{1c9cd458-11e0-4521-b191-207b4cd0d119}" orientation="n" type="Generic" name=""/>
|
||||
<terminal x="-240" y="-40" uuid="{c4bf6361-2f42-41eb-b195-b194fe11acbc}" orientation="n" type="Generic" name=""/>
|
||||
<terminal x="-160" y="-40" uuid="{4c24ddab-174a-472c-b37f-bb7caf214f63}" orientation="n" type="Generic" name=""/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
<definition type="element" width="130" hotspot_y="35" link_type="simple" height="70" version="0.90" hotspot_x="64">
|
||||
<names>
|
||||
<name lang="fr">289-176</name>
|
||||
<name lang="de">289-176</name>
|
||||
<name lang="en">289-176</name>
|
||||
<name lang="cs">289-176</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">289-176</elementInformation>
|
||||
<elementInformation show="1" name="description">Übergabemodul RJ45 RJ-45 Power Leistungskontakte</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect width="120" antialias="false" rx="0" height="60" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" y="-30" ry="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="50.625" text="2" rotation="0" y="-4"/>
|
||||
<circle diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="57.5" y="-2.5"/>
|
||||
<circle diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-62.5" y="-2.5"/>
|
||||
<line length1="1.5" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="0" x1="-60" y2="0" length2="1.5" end1="none" end2="none" x2="60"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-32" text="RJ45 - RJ45" rotation="0" y="26"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="-55" text="1" rotation="0" y="-4"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-45" text="WAGO 289-176" rotation="0" y="-17"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="16" frame="false" x="-4" rotation="0" text_from="ElementInfo" y="28" uuid="{32815a7b-7a5c-4c39-bbd5-70f7869c4d0b}" keep_visual_rotation="true">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal type="Generic" orientation="e" x="60" name="X1.2" y="0" uuid="{a94f37bd-28b9-4593-b1a3-f2aa90bc1002}"/>
|
||||
<terminal type="Generic" orientation="w" x="-60" name="X1.1" y="0" uuid="{9882d75f-797f-4ec2-87ec-8e5972c6a694}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,33 @@
|
||||
<definition type="element" width="130" hotspot_y="35" link_type="simple" height="70" version="0.90" hotspot_x="64">
|
||||
<names>
|
||||
<name lang="fr">289-177</name>
|
||||
<name lang="de">289-177</name>
|
||||
<name lang="en">289-177</name>
|
||||
<name lang="cs">289-177</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">289-177</elementInformation>
|
||||
<elementInformation show="1" name="description">Übergabemodul RJ45 RJ-45 crossover</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect width="120" antialias="false" rx="0" height="60" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-60" y="-30" ry="0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="52.625" text="2" rotation="0" y="-2"/>
|
||||
<circle diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="57.5" y="-2.5"/>
|
||||
<circle diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-62.5" y="-2.5"/>
|
||||
<line length1="1.5" antialias="false" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="0" x1="-60" y2="0" length2="1.5" end1="none" end2="none" x2="60"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-32" text="RJ45 - RJ45" rotation="0" y="19"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="-57" text="1" rotation="0" y="-2"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-45" text="WAGO 289-177" rotation="0" y="-17"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="-19" text="(crossover)" rotation="0" y="28"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft" z="16" frame="false" x="-4" rotation="0" text_from="ElementInfo" y="28" uuid="{32815a7b-7a5c-4c39-bbd5-70f7869c4d0b}" keep_visual_rotation="true">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<terminal type="Generic" orientation="e" x="60" name="X1.2" y="0" uuid="{a94f37bd-28b9-4593-b1a3-f2aa90bc1002}"/>
|
||||
<terminal type="Generic" orientation="w" x="-60" name="X1.1" y="0" uuid="{9882d75f-797f-4ec2-87ec-8e5972c6a694}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,66 @@
|
||||
<definition width="730" type="element" version="0.90" link_type="simple" height="100" hotspot_x="364" hotspot_y="46">
|
||||
<names>
|
||||
<name lang="en">289-178</name>
|
||||
<name lang="cs">289-178</name>
|
||||
<name lang="fr">289-178</name>
|
||||
<name lang="de">289-178</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">289-178</elementInformation>
|
||||
<elementInformation show="1" name="description">RJ-45 to CAGE-CLAMP</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect width="720" antialias="false" rx="0" ry="0" y="-40" height="90" x="-360" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="237.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="B" x="243" rotation="0"/>
|
||||
<text font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="A" x="183" rotation="0"/>
|
||||
<polygon x1="180" antialias="false" closed="false" x2="180" y1="-40" y2="-10" x3="190" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x1="240" antialias="false" closed="false" x2="240" y1="-40" y2="-10" x3="250" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="177.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<polygon x1="0" antialias="false" closed="false" x2="0" y1="-40" y2="-10" x3="10" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Halignment="AlignLeft" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" y="29.5" uuid="{3eeef5f5-6173-4d40-82c8-57fc65b43c63}" text_width="-1" keep_visual_rotation="true" text_from="ElementInfo" x="220" z="12" rotation="0" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<polygon x1="-240" antialias="false" closed="false" x2="-240" y1="-40" y2="-10" x3="-230" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x1="-180" antialias="false" closed="false" x2="-180" y1="-40" y2="-10" x3="-170" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="17" text="RJ-45" x="327" rotation="0"/>
|
||||
<text font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="S" x="322" rotation="0"/>
|
||||
<circle diameter="5" antialias="true" y="-2.5" x="357.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="3" x="-178" rotation="0"/>
|
||||
<text font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="6" x="3" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" text="RJ-45 to CAGE-CLAMP / Power-Contacts" x="-130" rotation="0"/>
|
||||
<text font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="2" x="-238" rotation="0"/>
|
||||
<text font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="7" x="62" rotation="0"/>
|
||||
<text font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="1" x="-298" rotation="0"/>
|
||||
<text font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="8" x="122" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" text="WAGO 289-178" x="-330" rotation="0"/>
|
||||
<text font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="4" x="-118" rotation="0"/>
|
||||
<text font="Sans Serif,6,-1,5,50,0,0,0,0,0" color="#000000" y="-26" text="5" x="-57" rotation="0"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="317.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-182.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="57.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-242.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-302.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-62.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<ellipse width="5" antialias="false" y="-6" height="12" x="317.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="320" length2="1.5" antialias="false" x2="320" length1="1.5" y1="-40" end1="none" y2="-4" style="line-style:normal;line-weight:normal;filling:black;color:black" end2="circle"/>
|
||||
<line x1="360" length2="1.5" antialias="false" x2="-300" length1="1.5" y1="0" end1="none" y2="0" style="line-style:normal;line-weight:hight;filling:none;color:black" end2="none"/>
|
||||
<polygon x1="-300" antialias="false" closed="false" x2="-300" y1="-40" y2="-10" x3="-290" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{31b23e55-8c17-4921-8b9d-1164a252dba5}" name="" x="320"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{1b2350ad-aa4e-4736-a5e7-cce10e230b97}" name="" x="0"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{c4bf6361-2f42-41eb-b195-b194fe11acbc}" name="" x="-240"/>
|
||||
<terminal orientation="e" type="Generic" y="0" uuid="{c0b90809-9003-420b-a52e-d59f911374e5}" name="" x="360"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{4c24ddab-174a-472c-b37f-bb7caf214f63}" name="" x="-180"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{e8fe0fa5-d913-4b93-bbd4-c66c19d40368}" name="" x="240"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{1c267f69-fd5e-4f90-80af-5f32a02072dc}" name="" x="-300"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{54167ac3-b11c-40f6-83ad-527c3a9533c2}" name="" x="180"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,74 @@
|
||||
<definition width="730" type="element" version="0.90" link_type="simple" height="100" hotspot_x="364" hotspot_y="46">
|
||||
<names>
|
||||
<name lang="en">289-179</name>
|
||||
<name lang="cs">289-179</name>
|
||||
<name lang="fr">289-179</name>
|
||||
<name lang="de">289-179</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">289-179</elementInformation>
|
||||
<elementInformation show="1" name="description">RJ-45 to CAGE-CLAMP</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect width="720" antialias="false" rx="0" ry="0" y="-40" height="90" x="-360" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="237.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-25" text="B" x="243" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-25" text="A" x="183" rotation="0"/>
|
||||
<polygon x1="180" antialias="false" closed="false" x2="180" y1="-40" y2="-10" x3="190" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x1="-60" antialias="false" closed="false" x2="-60" y1="-40" y2="-10" x3="-50" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x1="240" antialias="false" closed="false" x2="240" y1="-40" y2="-10" x3="250" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="177.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<polygon x1="120" antialias="false" closed="false" x2="120" y1="-40" y2="-10" x3="130" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x1="0" antialias="false" closed="false" x2="0" y1="-40" y2="-10" x3="10" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x1="-120" antialias="false" closed="false" x2="-120" y1="-40" y2="-10" x3="-110" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<dynamic_text Halignment="AlignLeft" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" y="29.5" uuid="{3eeef5f5-6173-4d40-82c8-57fc65b43c63}" text_width="-1" keep_visual_rotation="true" text_from="ElementInfo" x="220" z="12" rotation="0" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<polygon x1="-240" antialias="false" closed="false" x2="-240" y1="-40" y2="-10" x3="-230" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x1="60" antialias="false" closed="false" x2="60" y1="-40" y2="-10" x3="70" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<polygon x1="-180" antialias="false" closed="false" x2="-180" y1="-40" y2="-10" x3="-170" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="17" text="RJ-45" x="327" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-25" text="S" x="322" rotation="0"/>
|
||||
<circle diameter="5" antialias="true" y="-2.5" x="357.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-25" text="3" x="-178" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-25" text="6" x="3" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" text="RJ-45 to CAGE-CLAMP / Power-Contacts" x="-130" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-25" text="2" x="-238" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-25" text="7" x="62" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-25" text="1" x="-298" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-25" text="8" x="122" rotation="0"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" text="WAGO 289-179" x="-330" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-25" text="4" x="-118" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-25" text="5" x="-57" rotation="0"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="317.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-182.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="57.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-242.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-302.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-62.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<ellipse width="5" antialias="false" y="-6" height="12" x="317.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<line x1="320" length2="1.5" antialias="false" x2="320" length1="1.5" y1="-40" end1="none" y2="-4" style="line-style:normal;line-weight:normal;filling:black;color:black" end2="circle"/>
|
||||
<line x1="360" length2="1.5" antialias="false" x2="-300" length1="1.5" y1="0" end1="none" y2="0" style="line-style:normal;line-weight:hight;filling:none;color:black" end2="none"/>
|
||||
<polygon x1="-300" antialias="false" closed="false" x2="-300" y1="-40" y2="-10" x3="-290" y3="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{1c267f69-fd5e-4f90-80af-5f32a02072dc}" name="" x="-300"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{31b23e55-8c17-4921-8b9d-1164a252dba5}" name="" x="320"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{e8fe0fa5-d913-4b93-bbd4-c66c19d40368}" name="" x="240"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{b2a5bf12-263d-4a6c-af7b-74ce23ad5f77}" name="" x="60"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{1c9cd458-11e0-4521-b191-207b4cd0d119}" name="" x="120"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{c4bf6361-2f42-41eb-b195-b194fe11acbc}" name="" x="-240"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{1b2350ad-aa4e-4736-a5e7-cce10e230b97}" name="" x="0"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{efd4be21-455b-47d8-bff0-6660def238da}" name="" x="-120"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{4c24ddab-174a-472c-b37f-bb7caf214f63}" name="" x="-180"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{54167ac3-b11c-40f6-83ad-527c3a9533c2}" name="" x="180"/>
|
||||
<terminal orientation="e" type="Generic" y="0" uuid="{c0b90809-9003-420b-a52e-d59f911374e5}" name="" x="360"/>
|
||||
<terminal orientation="n" type="Generic" y="-40" uuid="{661fa241-2db3-4f9e-bb68-71d41539f809}" name="" x="-60"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_y="46" link_type="simple" type="element" hotspot_x="404" width="810" height="100" version="0.80">
|
||||
<definition hotspot_y="46" link_type="simple" type="element" hotspot_x="404" width="810" height="100" version="0.90">
|
||||
<names>
|
||||
<name lang="de">289-575</name>
|
||||
<name lang="en">289-575</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_y="46" link_type="simple" type="element" hotspot_x="404" width="810" height="100" version="0.80">
|
||||
<definition hotspot_y="46" link_type="simple" type="element" hotspot_x="404" width="810" height="100" version="0.90">
|
||||
<names>
|
||||
<name lang="de">289-585</name>
|
||||
<name lang="en">289-585</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_y="46" type="element" width="730" height="100" version="0.80" link_type="simple" hotspot_x="366">
|
||||
<definition hotspot_y="46" type="element" width="740" height="100" version="0.80" link_type="simple" hotspot_x="366">
|
||||
<names>
|
||||
<name lang="de">750-8100</name>
|
||||
<name lang="el">750-8100</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition link_type="simple" hotspot_x="364" hotspot_y="55" type="element" version="0.80" width="730" height="110">
|
||||
<definition link_type="simple" hotspot_x="375" hotspot_y="55" type="element" version="0.80" width="740" height="110">
|
||||
<names>
|
||||
<name lang="it">750-8101</name>
|
||||
<name lang="el">750-8101</name>
|
||||
@@ -45,8 +45,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text x="201" y="-22" rotation="0" text="PE" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-199" y="-22" rotation="0" text="0V" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-279" y="-22" rotation="0" text="24V" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="123" y="-31" rotation="0" text="_" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="43" y="-31" rotation="0" text="_" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="123" y="-22" rotation="0" text="−" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="43" y="-22" rotation="0" text="−" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-39" y="-22" rotation="0" text="+" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-119" y="-22" rotation="0" text="+" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-355" y="4" rotation="0" text="Eth1" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_y="55" width="730" link_type="simple" version="0.80" type="element" height="170" hotspot_x="364">
|
||||
<definition hotspot_y="55" width="740" link_type="simple" version="0.80" type="element" height="170" hotspot_x="375">
|
||||
<names>
|
||||
<name lang="ar">750-8102</name>
|
||||
<name lang="cs">750-8102</name>
|
||||
@@ -61,8 +61,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text y="-22" rotation="0" x="201" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PE"/>
|
||||
<text y="-22" rotation="0" x="-199" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V"/>
|
||||
<text y="-22" rotation="0" x="-279" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V"/>
|
||||
<text y="-31" rotation="0" x="123" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_"/>
|
||||
<text y="-31" rotation="0" x="43" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_"/>
|
||||
<text y="-22" rotation="0" x="123" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−"/>
|
||||
<text y="-22" rotation="0" x="43" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−"/>
|
||||
<text y="-22" rotation="0" x="-39" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+"/>
|
||||
<text y="-22" rotation="0" x="-119" color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+"/>
|
||||
<text y="4" rotation="0" x="-355" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Eth1"/>
|
||||
|
||||
@@ -1,94 +1,103 @@
|
||||
<definition hotspot_y="55" link_type="simple" version="0.60" type="element" width="730" hotspot_x="364" height="170">
|
||||
<definition link_type="simple" width="740" hotspot_y="55" hotspot_x="375" height="170" version="0.80" type="element">
|
||||
<names>
|
||||
<name lang="nl">750-8202</name>
|
||||
<name lang="es">750-8202</name>
|
||||
<name lang="ar">750-8202</name>
|
||||
<name lang="en">750-8202</name>
|
||||
<name lang="cs">750-8202</name>
|
||||
<name lang="de">750-8202</name>
|
||||
<name lang="pt">750-8202</name>
|
||||
<name lang="it">750-8202</name>
|
||||
<name lang="fr">750-8202</name>
|
||||
<name lang="cs">750-8202</name>
|
||||
<name lang="pt">750-8202</name>
|
||||
<name lang="pl">750-8202</name>
|
||||
<name lang="de">750-8202</name>
|
||||
<name lang="el">750-8202</name>
|
||||
<name lang="en">750-8202</name>
|
||||
<name lang="ar">750-8202</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8202</elementInformation>
|
||||
<elementInformation show="1" name="description">PFC200 CS 2ETH RS</elementInformation>
|
||||
<elementInformation name="description" show="1">PFC200 CS 2ETH RS</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-8202</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="150" width="720" ry="0"/>
|
||||
<circle x="-362.5" diameter="5" y="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="IP Adr. 2:" size="9" x="-303" y="25"/>
|
||||
<text text="IP Adr. 1:" size="9" x="-303" y="4"/>
|
||||
<circle x="-362.5" diameter="5" y="17.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Mode:" size="9" x="-303" y="44"/>
|
||||
<input text="RS232 19.200 8N1" tagg="none" size="9" rotate="true" x="-247" y="40"/>
|
||||
<input text="192.168.0.1" tagg="none" size="9" rotate="true" x="-247" y="0"/>
|
||||
<input text="192.168.1.1" tagg="none" size="9" rotate="true" x="-247" y="21"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" length2="1.5" x1="40" length1="1.5" y2="-38"/>
|
||||
<text text="Serial" size="9" x="-355" y="44"/>
|
||||
<text text="Eth2" size="9" x="-355" y="24"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" length2="1.5" x1="-40" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="200" length1="1.5" y2="30"/>
|
||||
<circle x="-362.5" diameter="5" y="-2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" length2="1.5" x1="120" length1="1.5" y2="-37"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="31.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" length2="1.5" x1="280" length1="1.5" y2="-37"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" length2="1.5" x1="-120" length1="1.5" y2="-38"/>
|
||||
<circle x="-42.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-122.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-202.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-282.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="277.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="197.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="117.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="37.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="40" length1="1.5" y2="10"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" length2="1.5" x1="200" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="-120" length1="1.5" y2="-10"/>
|
||||
<text text="WAGO 750-8202" size="9" x="-329" y="105"/>
|
||||
<text text="PE" size="9" x="281" y="-22"/>
|
||||
<text text="PE" size="9" x="201" y="-22"/>
|
||||
<text text="0V" size="9" x="-199" y="-22"/>
|
||||
<text text="24V" size="9" x="-279" y="-22"/>
|
||||
<text text="_" size="12" x="123" y="-31"/>
|
||||
<text text="_" size="12" x="43" y="-31"/>
|
||||
<text text="+" size="12" x="-39" y="-22"/>
|
||||
<text text="+" size="12" x="-119" y="-22"/>
|
||||
<text text="Eth1" size="9" x="-355" y="4"/>
|
||||
<input text="X123" tagg="label" size="9" rotate="true" x="221" y="101"/>
|
||||
<text text="1" size="5" x="-276" y="-42"/>
|
||||
<text text="5" size="5" x="-195" y="-42"/>
|
||||
<text text="2" size="5" x="-115" y="-42"/>
|
||||
<text text="6" size="5" x="-35" y="-42"/>
|
||||
<text text="3" size="5" x="45" y="-42"/>
|
||||
<text text="7" size="5" x="125" y="-42"/>
|
||||
<text text="4" size="5" x="205" y="-42"/>
|
||||
<text text="8" size="5" x="285" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH RS" size="9" x="-137" y="105"/>
|
||||
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="49" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X3" x="-371" rotation="0" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal x="40" y="-40" orientation="n"/>
|
||||
<terminal x="280" y="-40" orientation="n"/>
|
||||
<terminal x="200" y="-40" orientation="n"/>
|
||||
<terminal x="-200" y="-40" orientation="n"/>
|
||||
<terminal x="-120" y="-40" orientation="n"/>
|
||||
<terminal x="120" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="10" orientation="e"/>
|
||||
<terminal x="-360" y="0" orientation="w"/>
|
||||
<terminal x="-280" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="-10" orientation="e"/>
|
||||
<terminal x="-360" y="40" orientation="w"/>
|
||||
<terminal x="360" y="30" orientation="e"/>
|
||||
<terminal x="-360" y="20" orientation="w"/>
|
||||
<terminal x="-40" y="-40" orientation="n"/>
|
||||
<rect width="720" style="line-style:normal;line-weight:normal;filling:white;color:black" ry="0" height="150" y="-40" rx="0" x="-360" antialias="false"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="37.5" x="-362.5" antialias="true"/>
|
||||
<text text="IP Adr. 2:" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="25" color="#000000" x="-303"/>
|
||||
<text text="IP Adr. 1:" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="4" color="#000000" x="-303"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="17.5" x="-362.5" antialias="true"/>
|
||||
<text text="Mode:" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="44" color="#000000" x="-303"/>
|
||||
<dynamic_text uuid="{7161dc01-d114-4fba-8d11-bed90b1565ed}" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" y="28.5" x="-247" Halignment="AlignLeft" z="7" text_width="-1" Valignment="AlignTop" text_from="UserText">
|
||||
<text>RS232 19.200 8N1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{e57bfe3a-dc05-4878-ba75-2d29957224cc}" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" y="-11.5" x="-247" Halignment="AlignLeft" z="8" text_width="-1" Valignment="AlignTop" text_from="UserText">
|
||||
<text>192.168.0.1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{a11c6451-dae1-4e4d-ac81-7f9cd1971441}" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" y="9.5" x="-247" Halignment="AlignLeft" z="9" text_width="-1" Valignment="AlignTop" text_from="UserText">
|
||||
<text>192.168.1.1</text>
|
||||
</dynamic_text>
|
||||
<line x2="40" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" y1="10" end2="none" end1="none" y2="-38" x1="40" antialias="false"/>
|
||||
<text text="Serial" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="44" color="#000000" x="-355"/>
|
||||
<text text="Eth2" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="24" color="#000000" x="-355"/>
|
||||
<line x2="-40" length2="1.5" style="line-style:normal;line-weight:thin;filling:black;color:black" length1="1.5" y1="-8.5" end2="none" end1="circle" y2="-38" x1="-40" antialias="false"/>
|
||||
<line x2="358" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" y1="30" end2="none" end1="none" y2="30" x1="200" antialias="false"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-2.5" x="-362.5" antialias="true"/>
|
||||
<line x2="120" length2="1.5" style="line-style:normal;line-weight:thin;filling:black;color:black" length1="1.5" y1="11" end2="none" end1="circle" y2="-37" x1="120" antialias="false"/>
|
||||
<line x2="280" length2="1.5" style="line-style:normal;line-weight:thin;filling:black;color:black" length1="1.5" y1="31.5" end2="none" end1="circle" y2="-37" x1="280" antialias="false"/>
|
||||
<line x2="-120" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" y1="-10" end2="none" end1="none" y2="-38" x1="-120" antialias="false"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-122.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-202.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-282.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="277.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="197.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="117.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="37.5" antialias="true"/>
|
||||
<line x2="358" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" y1="10" end2="none" end1="none" y2="10" x1="40" antialias="false"/>
|
||||
<line x2="200" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" y1="30" end2="none" end1="none" y2="-38" x1="200" antialias="false"/>
|
||||
<line x2="358" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" y1="-10" end2="none" end1="none" y2="-10" x1="-120" antialias="false"/>
|
||||
<text text="WAGO 750-8202" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="105" color="#000000" x="-329"/>
|
||||
<text text="PE" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000" x="281"/>
|
||||
<text text="PE" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000" x="201"/>
|
||||
<text text="0V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000" x="-199"/>
|
||||
<text text="24V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000" x="-279"/>
|
||||
<text text="−" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000" x="123"/>
|
||||
<text text="−" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000" x="43"/>
|
||||
<text text="+" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000" x="-39"/>
|
||||
<text text="+" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000" x="-119"/>
|
||||
<text text="Eth1" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="4" color="#000000" x="-355"/>
|
||||
<dynamic_text uuid="{5ecacb21-16b2-4b68-ac0e-091bb14cf1b4}" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" y="89.5" x="221" Halignment="AlignLeft" z="40" text_width="-1" Valignment="AlignTop" text_from="ElementInfo">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text text="1" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" x="-276"/>
|
||||
<text text="5" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" x="-195"/>
|
||||
<text text="2" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" x="-115"/>
|
||||
<text text="6" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" x="-35"/>
|
||||
<text text="3" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" x="45"/>
|
||||
<text text="7" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" x="125"/>
|
||||
<text text="4" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" x="205"/>
|
||||
<text text="8" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" x="285"/>
|
||||
<text text="PFC200 CS 2ETH RS" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="105" color="#000000" x="-137"/>
|
||||
<text text="X1" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="9" color="#000000" x="-371"/>
|
||||
<text text="X2" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="29" color="#000000" x="-371"/>
|
||||
<text text="X3" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="49" color="#000000" x="-371"/>
|
||||
<arc width="5" style="line-style:normal;line-weight:normal;filling:white;color:black" height="5" start="90" y="-12.5" x="360" angle="180" antialias="true"/>
|
||||
<arc width="5" style="line-style:normal;line-weight:normal;filling:white;color:black" height="5" start="90" y="7.5" x="360" angle="180" antialias="true"/>
|
||||
<arc width="5" style="line-style:normal;line-weight:normal;filling:white;color:black" height="5" start="90" y="27.5" x="360" angle="180" antialias="true"/>
|
||||
<terminal uuid="{97f46b07-e817-4235-acf5-b5038ea13927}" orientation="n" y="-40" name="" x="40"/>
|
||||
<terminal uuid="{9a262578-f914-4bbb-b14c-97b8d079c34d}" orientation="n" y="-40" name="" x="280"/>
|
||||
<terminal uuid="{3a0a6fe7-c8ff-477d-84d2-2741f3ab78c0}" orientation="n" y="-40" name="" x="200"/>
|
||||
<terminal uuid="{2e3898f2-e756-4073-9680-d523aade4509}" orientation="n" y="-40" name="" x="-200"/>
|
||||
<terminal uuid="{8137c52c-0f66-40d2-8da3-5fa4c510a079}" orientation="n" y="-40" name="" x="-120"/>
|
||||
<terminal uuid="{7f2e5f96-02e4-4105-b5b7-20bf990d952b}" orientation="n" y="-40" name="" x="120"/>
|
||||
<terminal uuid="{bd18f410-b571-4a65-a6ce-e97eac62669e}" orientation="e" y="10" name="" x="360"/>
|
||||
<terminal uuid="{a596053d-529d-44d1-ab44-60d0e8ef3649}" orientation="w" y="0" name="" x="-360"/>
|
||||
<terminal uuid="{76e20b53-fe9f-4a74-9728-430f09e2adc9}" orientation="n" y="-40" name="" x="-280"/>
|
||||
<terminal uuid="{7f54f64c-621a-4923-b770-d0d214ad21cc}" orientation="e" y="-10" name="" x="360"/>
|
||||
<terminal uuid="{8a909580-aeed-4742-aee5-70965bb0bdcc}" orientation="w" y="40" name="" x="-360"/>
|
||||
<terminal uuid="{2fffd65f-e997-45c4-ac32-3dcaf7063d22}" orientation="e" y="30" name="" x="360"/>
|
||||
<terminal uuid="{5de489da-5a0c-4341-bd52-4325a76c84a0}" orientation="w" y="20" name="" x="-360"/>
|
||||
<terminal uuid="{6fee849c-fd6d-4fb9-9f5a-da9bfb952027}" orientation="n" y="-40" name="" x="-40"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,96 +1,107 @@
|
||||
<definition height="170" hotspot_x="364" hotspot_y="55" type="element" width="730" version="0.5" link_type="simple">
|
||||
<definition width="740" version="0.80" link_type="simple" hotspot_y="55" height="170" type="element" hotspot_x="375">
|
||||
<names>
|
||||
<name lang="nl">750-8203</name>
|
||||
<name lang="de">750-8203</name>
|
||||
<name lang="pt">750-8203</name>
|
||||
<name lang="pl">750-8203</name>
|
||||
<name lang="fr">750-8203</name>
|
||||
<name lang="es">750-8203</name>
|
||||
<name lang="it">750-8203</name>
|
||||
<name lang="ar">750-8203</name>
|
||||
<name lang="cs">750-8203</name>
|
||||
<name lang="el">750-8203</name>
|
||||
<name lang="en">750-8203</name>
|
||||
<name lang="fr">750-8203</name>
|
||||
<name lang="de">750-8203</name>
|
||||
<name lang="pl">750-8203</name>
|
||||
<name lang="ar">750-8203</name>
|
||||
<name lang="it">750-8203</name>
|
||||
<name lang="cs">750-8203</name>
|
||||
<name lang="pt">750-8203</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8203</elementInformation>
|
||||
<elementInformation show="1" name="description">PFC200 CS 2ETH CAN</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
<elementInformation name="description" show="1">PFC200 CS 2ETH CAN</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-8203</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="150" width="720" ry="0"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-362.5" diameter="5" y="57.5"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="64"/>
|
||||
<input text="1000" tagg="none" size="9" rotate="true" x="-146" y="60"/>
|
||||
<text text="IP Adr. 2:" x="-303" size="9" y="25"/>
|
||||
<text text="IP Adr. 1:" x="-303" size="9" y="4"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-362.5" diameter="5" y="17.5"/>
|
||||
<text text="Node ID:" x="-303" size="9" y="64"/>
|
||||
<input text="1" rotate="true" x="-247" tagg="none" size="9" y="60"/>
|
||||
<input text="192.168.0.1" rotate="true" x="-247" tagg="none" size="9" y="0"/>
|
||||
<input text="192.168.1.1" rotate="true" x="-247" tagg="none" size="9" y="21"/>
|
||||
<line x1="40" y1="10" length2="1.5" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<text text="CAN" x="-355" size="9" y="64"/>
|
||||
<text text="Eth2" x="-355" size="9" y="24"/>
|
||||
<line x1="-40" y1="-8.5" length2="1.5" y2="-38" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" antialias="false" end1="circle" length1="1.5" end2="none"/>
|
||||
<line x1="200" y1="30" length2="1.5" y2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-362.5" diameter="5" y="-2.5"/>
|
||||
<line x1="120" y1="11" length2="1.5" y2="-37" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" antialias="false" end1="circle" length1="1.5" end2="none"/>
|
||||
<line x1="280" y1="31.5" length2="1.5" y2="-37" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" antialias="false" end1="circle" length1="1.5" end2="none"/>
|
||||
<line x1="-120" y1="-10" length2="1.5" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-42.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-122.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-202.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-282.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="277.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="197.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="117.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="37.5" diameter="5" y="-42.5"/>
|
||||
<line x1="40" y1="10" length2="1.5" y2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<line x1="200" y1="30" length2="1.5" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<line x1="-120" y1="-10" length2="1.5" y2="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<text text="WAGO 750-8203" x="-329" size="9" y="105"/>
|
||||
<text text="PE" x="281" size="9" y="-22"/>
|
||||
<text text="PE" x="201" size="9" y="-22"/>
|
||||
<text text="0V" x="-199" size="9" y="-22"/>
|
||||
<text text="24V" x="-279" size="9" y="-22"/>
|
||||
<text text="_" x="123" size="12" y="-31"/>
|
||||
<text text="_" x="43" size="12" y="-31"/>
|
||||
<text text="+" x="-39" size="12" y="-22"/>
|
||||
<text text="+" x="-119" size="12" y="-22"/>
|
||||
<text text="Eth1" x="-355" size="9" y="4"/>
|
||||
<input text="X123" rotate="true" x="221" tagg="label" size="9" y="101"/>
|
||||
<text text="1" x="-276" size="5" y="-42"/>
|
||||
<text text="5" x="-195" size="5" y="-42"/>
|
||||
<text text="2" x="-115" size="5" y="-42"/>
|
||||
<text text="6" x="-35" size="5" y="-42"/>
|
||||
<text text="3" x="45" size="5" y="-42"/>
|
||||
<text text="7" x="125" size="5" y="-42"/>
|
||||
<text text="4" x="205" size="5" y="-42"/>
|
||||
<text text="8" x="285" size="5" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH CAN" x="-137" size="9" y="105"/>
|
||||
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="69" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X4" x="-371" rotation="0" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal orientation="n" x="-280" y="-40"/>
|
||||
<terminal orientation="e" x="360" y="-10"/>
|
||||
<terminal orientation="n" x="-40" y="-40"/>
|
||||
<terminal orientation="e" x="360" y="30"/>
|
||||
<terminal orientation="w" x="-360" y="20"/>
|
||||
<terminal orientation="n" x="280" y="-40"/>
|
||||
<terminal orientation="n" x="200" y="-40"/>
|
||||
<terminal orientation="n" x="40" y="-40"/>
|
||||
<terminal orientation="n" x="-200" y="-40"/>
|
||||
<terminal orientation="n" x="-120" y="-40"/>
|
||||
<terminal orientation="n" x="120" y="-40"/>
|
||||
<terminal orientation="e" x="360" y="10"/>
|
||||
<terminal orientation="w" x="-360" y="0"/>
|
||||
<terminal orientation="w" x="-360" y="60"/>
|
||||
<rect width="720" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-40" rx="0" height="150" x="-360" ry="0" antialias="false"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" y="57.5" diameter="5" x="-362.5" antialias="true"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="Baudrate:" y="64" x="-212"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{3ec5ba6a-3008-40a5-97d9-f77588c46cb6}" Halignment="AlignLeft" Valignment="AlignTop" y="48.5" text_width="-1" x="-146" z="4" frame="false" text_from="UserText">
|
||||
<text>1000</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="IP Adr. 2:" y="25" x="-303"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="IP Adr. 1:" y="4" x="-303"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" y="17.5" diameter="5" x="-362.5" antialias="true"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="Node ID:" y="64" x="-303"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{6456d0f0-c819-4653-9610-601fa2423462}" Halignment="AlignLeft" Valignment="AlignTop" y="48.5" text_width="-1" x="-247" z="9" frame="false" text_from="UserText">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{91c55b88-1688-4a6e-b705-93190b0cd574}" Halignment="AlignLeft" Valignment="AlignTop" y="-11.5" text_width="-1" x="-247" z="10" frame="false" text_from="UserText">
|
||||
<text>192.168.0.1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{7ef7083a-5ace-4dd4-b591-6c9f19bcfd92}" Halignment="AlignLeft" Valignment="AlignTop" y="9.5" text_width="-1" x="-247" z="11" frame="false" text_from="UserText">
|
||||
<text>192.168.1.1</text>
|
||||
</dynamic_text>
|
||||
<line y1="10" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="40" length2="1.5" end2="none" x2="40" y2="-38" length1="1.5" antialias="false"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="CAN" y="64" x="-355"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="Eth2" y="24" x="-355"/>
|
||||
<line y1="-8.5" end1="circle" style="line-style:normal;line-weight:thin;filling:black;color:black" x1="-40" length2="1.5" end2="none" x2="-40" y2="-38" length1="1.5" antialias="false"/>
|
||||
<line y1="30" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="200" length2="1.5" end2="none" x2="358" y2="30" length1="1.5" antialias="false"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" y="-2.5" diameter="5" x="-362.5" antialias="true"/>
|
||||
<line y1="11" end1="circle" style="line-style:normal;line-weight:thin;filling:black;color:black" x1="120" length2="1.5" end2="none" x2="120" y2="-37" length1="1.5" antialias="false"/>
|
||||
<line y1="31.5" end1="circle" style="line-style:normal;line-weight:thin;filling:black;color:black" x1="280" length2="1.5" end2="none" x2="280" y2="-37" length1="1.5" antialias="false"/>
|
||||
<line y1="-10" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-120" length2="1.5" end2="none" x2="-120" y2="-38" length1="1.5" antialias="false"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5" x="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5" x="-122.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5" x="-202.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5" x="-282.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5" x="277.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5" x="197.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5" x="117.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5" x="37.5" antialias="true"/>
|
||||
<line y1="10" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="40" length2="1.5" end2="none" x2="358" y2="10" length1="1.5" antialias="false"/>
|
||||
<line y1="30" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="200" length2="1.5" end2="none" x2="200" y2="-38" length1="1.5" antialias="false"/>
|
||||
<line y1="-10" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-120" length2="1.5" end2="none" x2="358" y2="-10" length1="1.5" antialias="false"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="WAGO 750-8203" y="105" x="-329"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="PE" y="-22" x="281"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="PE" y="-22" x="201"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="0V" y="-22" x="-199"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="24V" y="-22" x="-279"/>
|
||||
<text color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="−" y="-22" x="123"/>
|
||||
<text color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="−" y="-22" x="43"/>
|
||||
<text color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="+" y="-22" x="-39"/>
|
||||
<text color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="+" y="-22" x="-119"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="Eth1" y="4" x="-355"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" uuid="{806d9afc-6e86-44ce-ad52-453fcc393f7a}" Halignment="AlignLeft" Valignment="AlignTop" y="89.5" text_width="-1" x="221" z="42" frame="false" text_from="ElementInfo">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="1" y="-42" x="-276"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="5" y="-42" x="-195"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="2" y="-42" x="-115"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="6" y="-42" x="-35"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="3" y="-42" x="45"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="7" y="-42" x="125"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="4" y="-42" x="205"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="8" y="-42" x="285"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="PFC200 CS 2ETH CAN" y="105" x="-137"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="X1" y="9" x="-371"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="X2" y="29" x="-371"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="X4" y="69" x="-371"/>
|
||||
<arc width="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-12.5" height="5" start="90" x="360" angle="180" antialias="true"/>
|
||||
<arc width="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="7.5" height="5" start="90" x="360" angle="180" antialias="true"/>
|
||||
<arc width="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="27.5" height="5" start="90" x="360" angle="180" antialias="true"/>
|
||||
<terminal uuid="{3c35c2e4-9f8c-4caa-a69f-0f41705e0587}" name="" y="-40" x="-280" orientation="n"/>
|
||||
<terminal uuid="{0ea21828-da34-4b95-99b8-72504b480a59}" name="" y="-10" x="360" orientation="e"/>
|
||||
<terminal uuid="{a179a83e-0f93-45e8-8fb2-b3af4ba993ab}" name="" y="-40" x="-40" orientation="n"/>
|
||||
<terminal uuid="{dbc7d9aa-7e93-4748-85e4-9035990d4bc1}" name="" y="30" x="360" orientation="e"/>
|
||||
<terminal uuid="{14c36c63-8847-4072-ad7b-4399f5266293}" name="" y="20" x="-360" orientation="w"/>
|
||||
<terminal uuid="{b4df14ae-f662-4690-bd1a-ff48be8e21e1}" name="" y="-40" x="280" orientation="n"/>
|
||||
<terminal uuid="{c2d85519-7210-43f2-bf0e-521d282c82f5}" name="" y="-40" x="200" orientation="n"/>
|
||||
<terminal uuid="{0c5236b4-d15d-4f23-86cd-d94c42ea379c}" name="" y="-40" x="40" orientation="n"/>
|
||||
<terminal uuid="{c50f9fa1-51fd-46e9-a637-fff49171610a}" name="" y="-40" x="-200" orientation="n"/>
|
||||
<terminal uuid="{44f8cca7-cde5-4755-97c3-72304433340a}" name="" y="-40" x="-120" orientation="n"/>
|
||||
<terminal uuid="{9be0705f-6d66-4e9f-8c19-7f647031704b}" name="" y="-40" x="120" orientation="n"/>
|
||||
<terminal uuid="{359784e8-8d95-4863-9ee4-5a64bb6db367}" name="" y="10" x="360" orientation="e"/>
|
||||
<terminal uuid="{7ce01fd8-f3f6-43b8-afe6-f36a324b381b}" name="" y="0" x="-360" orientation="w"/>
|
||||
<terminal uuid="{b5fe3b7a-7491-47c5-b592-bda1c243e82d}" name="" y="60" x="-360" orientation="w"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
<definition hotspot_y="55" link_type="simple" version="0.60" type="element" width="730" hotspot_x="364" height="170">
|
||||
<definition height="170" width="740" link_type="simple" type="element" hotspot_x="375" hotspot_y="55" version="0.80">
|
||||
<names>
|
||||
<name lang="cs">750-8204</name>
|
||||
<name lang="it">750-8204</name>
|
||||
<name lang="pt">750-8204</name>
|
||||
<name lang="de">750-8204</name>
|
||||
<name lang="en">750-8204</name>
|
||||
<name lang="fr">750-8204</name>
|
||||
<name lang="nl">750-8204</name>
|
||||
<name lang="es">750-8204</name>
|
||||
<name lang="it">750-8204</name>
|
||||
<name lang="fr">750-8204</name>
|
||||
<name lang="cs">750-8204</name>
|
||||
<name lang="pt">750-8204</name>
|
||||
<name lang="pl">750-8204</name>
|
||||
<name lang="de">750-8204</name>
|
||||
<name lang="el">750-8204</name>
|
||||
<name lang="en">750-8204</name>
|
||||
<name lang="pl">750-8204</name>
|
||||
<name lang="ar">750-8204</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
@@ -21,82 +21,95 @@
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="150" width="720" ry="0"/>
|
||||
<circle x="-362.5" diameter="5" y="57.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="64"/>
|
||||
<input text="1000" tagg="none" size="9" rotate="true" x="-146" y="60"/>
|
||||
<circle x="-362.5" diameter="5" y="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="IP Adr. 2:" size="9" x="-303" y="25"/>
|
||||
<text text="IP Adr. 1:" size="9" x="-303" y="4"/>
|
||||
<circle x="-362.5" diameter="5" y="17.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Node ID:" size="9" x="-303" y="64"/>
|
||||
<text text="Mode:" size="9" x="-303" y="44"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="60"/>
|
||||
<input text="RS232 19.200 8N1" tagg="none" size="9" rotate="true" x="-247" y="40"/>
|
||||
<input text="192.168.0.1" tagg="none" size="9" rotate="true" x="-247" y="0"/>
|
||||
<input text="192.168.1.1" tagg="none" size="9" rotate="true" x="-247" y="21"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" length2="1.5" x1="40" length1="1.5" y2="-38"/>
|
||||
<text text="Serial" size="9" x="-355" y="44"/>
|
||||
<text text="CAN" size="9" x="-355" y="64"/>
|
||||
<text text="Eth2" size="9" x="-355" y="24"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" length2="1.5" x1="-40" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="200" length1="1.5" y2="30"/>
|
||||
<circle x="-362.5" diameter="5" y="-2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" length2="1.5" x1="120" length1="1.5" y2="-37"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="31.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" length2="1.5" x1="280" length1="1.5" y2="-37"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" length2="1.5" x1="-120" length1="1.5" y2="-38"/>
|
||||
<circle x="-42.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-122.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-202.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-282.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="277.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="197.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="117.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="37.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="40" length1="1.5" y2="10"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" length2="1.5" x1="200" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="-120" length1="1.5" y2="-10"/>
|
||||
<text text="WAGO 750-8204" size="9" x="-329" y="105"/>
|
||||
<text text="PE" size="9" x="281" y="-22"/>
|
||||
<text text="PE" size="9" x="201" y="-22"/>
|
||||
<text text="0V" size="9" x="-199" y="-22"/>
|
||||
<text text="24V" size="9" x="-279" y="-22"/>
|
||||
<text text="_" size="12" x="123" y="-31"/>
|
||||
<text text="_" size="12" x="43" y="-31"/>
|
||||
<text text="+" size="12" x="-39" y="-22"/>
|
||||
<text text="+" size="12" x="-119" y="-22"/>
|
||||
<text text="Eth1" size="9" x="-355" y="4"/>
|
||||
<input text="X123" tagg="label" size="9" rotate="true" x="221" y="101"/>
|
||||
<text text="1" size="5" x="-276" y="-42"/>
|
||||
<text text="5" size="5" x="-195" y="-42"/>
|
||||
<text text="2" size="5" x="-115" y="-42"/>
|
||||
<text text="6" size="5" x="-35" y="-42"/>
|
||||
<text text="3" size="5" x="45" y="-42"/>
|
||||
<text text="7" size="5" x="125" y="-42"/>
|
||||
<text text="4" size="5" x="205" y="-42"/>
|
||||
<text text="8" size="5" x="285" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH RS CAN" size="9" x="-137" y="105"/>
|
||||
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="49" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X3" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="69" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X4" x="-371" rotation="0" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal x="280" y="-40" orientation="n"/>
|
||||
<terminal x="200" y="-40" orientation="n"/>
|
||||
<terminal x="40" y="-40" orientation="n"/>
|
||||
<terminal x="-200" y="-40" orientation="n"/>
|
||||
<terminal x="-120" y="-40" orientation="n"/>
|
||||
<terminal x="120" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="10" orientation="e"/>
|
||||
<terminal x="-360" y="0" orientation="w"/>
|
||||
<terminal x="-280" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="-10" orientation="e"/>
|
||||
<terminal x="-360" y="40" orientation="w"/>
|
||||
<terminal x="-360" y="60" orientation="w"/>
|
||||
<terminal x="360" y="30" orientation="e"/>
|
||||
<terminal x="-360" y="20" orientation="w"/>
|
||||
<terminal x="-40" y="-40" orientation="n"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" x="-360" ry="0" height="150" rx="0" antialias="false" width="720" y="-40"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true" y="57.5"/>
|
||||
<text x="-212" rotation="0" text="Baudrate:" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="64"/>
|
||||
<dynamic_text frame="false" x="-146" rotation="0" Halignment="AlignLeft" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{2caa04fb-b961-4645-9b38-1c992904b123}" z="4" text_width="-1" text_from="UserText" y="48.5">
|
||||
<text>1000</text>
|
||||
</dynamic_text>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true" y="37.5"/>
|
||||
<text x="-303" rotation="0" text="IP Adr. 2:" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="25"/>
|
||||
<text x="-303" rotation="0" text="IP Adr. 1:" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="4"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true" y="17.5"/>
|
||||
<text x="-303" rotation="0" text="Node ID:" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="64"/>
|
||||
<text x="-303" rotation="0" text="Mode:" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="44"/>
|
||||
<dynamic_text frame="false" x="-247" rotation="0" Halignment="AlignLeft" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{58635eda-ce56-4fe6-9828-a0958c479d05}" z="11" text_width="-1" text_from="UserText" y="48.5">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text frame="false" x="-247" rotation="0" Halignment="AlignLeft" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{61d1e08d-d511-498a-a331-4366aea23c91}" z="12" text_width="-1" text_from="UserText" y="28.5">
|
||||
<text>RS232 19.200 8N1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text frame="false" x="-247" rotation="0" Halignment="AlignLeft" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{167edca5-cfd7-4163-8438-0c24b7008499}" z="13" text_width="-1" text_from="UserText" y="-11.5">
|
||||
<text>192.168.0.1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text frame="false" x="-247" rotation="0" Halignment="AlignLeft" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{b63324d3-c16e-459c-a49d-8b4751f4b6fb}" z="14" text_width="-1" text_from="UserText" y="9.5">
|
||||
<text>192.168.1.1</text>
|
||||
</dynamic_text>
|
||||
<line length2="1.5" x1="40" y1="10" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="40" end2="none"/>
|
||||
<text x="-355" rotation="0" text="Serial" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="44"/>
|
||||
<text x="-355" rotation="0" text="CAN" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="64"/>
|
||||
<text x="-355" rotation="0" text="Eth2" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="24"/>
|
||||
<line length2="1.5" x1="-40" y1="-8.5" y2="-38" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false" end1="circle" length1="1.5" x2="-40" end2="none"/>
|
||||
<line length2="1.5" x1="200" y1="30" y2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="358" end2="none"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true" y="-2.5"/>
|
||||
<line length2="1.5" x1="120" y1="11" y2="-37" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false" end1="circle" length1="1.5" x2="120" end2="none"/>
|
||||
<line length2="1.5" x1="280" y1="31.5" y2="-37" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false" end1="circle" length1="1.5" x2="280" end2="none"/>
|
||||
<line length2="1.5" x1="-120" y1="-10" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="-120" end2="none"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-42.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-122.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-202.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-282.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="277.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="197.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="117.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="37.5" antialias="true" y="-42.5"/>
|
||||
<line length2="1.5" x1="40" y1="10" y2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="358" end2="none"/>
|
||||
<line length2="1.5" x1="200" y1="30" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="200" end2="none"/>
|
||||
<line length2="1.5" x1="-120" y1="-10" y2="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end1="none" length1="1.5" x2="358" end2="none"/>
|
||||
<text x="-329" rotation="0" text="WAGO 750-8204" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="105"/>
|
||||
<text x="281" rotation="0" text="PE" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-22"/>
|
||||
<text x="201" rotation="0" text="PE" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-22"/>
|
||||
<text x="-199" rotation="0" text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-22"/>
|
||||
<text x="-279" rotation="0" text="24V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-22"/>
|
||||
<text x="123" rotation="0" text="−" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" y="-22"/>
|
||||
<text x="43" rotation="0" text="−" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" y="-22"/>
|
||||
<text x="-39" rotation="0" text="+" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" y="-22"/>
|
||||
<text x="-119" rotation="0" text="+" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" y="-22"/>
|
||||
<text x="-355" rotation="0" text="Eth1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="4"/>
|
||||
<dynamic_text frame="false" x="221" rotation="0" Halignment="AlignLeft" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{8244b521-cb9c-4b13-863f-44ecb8ab82b1}" z="46" text_width="-1" text_from="ElementInfo" y="89.5">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="-276" rotation="0" text="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42"/>
|
||||
<text x="-195" rotation="0" text="5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42"/>
|
||||
<text x="-115" rotation="0" text="2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42"/>
|
||||
<text x="-35" rotation="0" text="6" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42"/>
|
||||
<text x="45" rotation="0" text="3" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42"/>
|
||||
<text x="125" rotation="0" text="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42"/>
|
||||
<text x="205" rotation="0" text="4" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42"/>
|
||||
<text x="285" rotation="0" text="8" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42"/>
|
||||
<text x="-137" rotation="0" text="PFC200 CS 2ETH RS CAN" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="105"/>
|
||||
<text x="-371" rotation="0" text="X1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="9"/>
|
||||
<text x="-371" rotation="0" text="X2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="29"/>
|
||||
<text x="-371" rotation="0" text="X3" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="49"/>
|
||||
<text x="-371" rotation="0" text="X4" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="69"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" x="360" height="5" angle="180" antialias="true" width="5" start="90" y="-12.5"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" x="360" height="5" angle="180" antialias="true" width="5" start="90" y="7.5"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" x="360" height="5" angle="180" antialias="true" width="5" start="90" y="27.5"/>
|
||||
<terminal x="280" uuid="{45d7c069-515b-4295-9831-4276e4a04d60}" name="" orientation="n" y="-40"/>
|
||||
<terminal x="200" uuid="{57c86428-fb3e-45bb-9604-a0f1c33bfd21}" name="" orientation="n" y="-40"/>
|
||||
<terminal x="40" uuid="{2d01ea4d-20cd-4c9e-b1a2-de7eba02ea41}" name="" orientation="n" y="-40"/>
|
||||
<terminal x="-200" uuid="{853348f2-98c4-48b3-9aab-6e80b9eefd96}" name="" orientation="n" y="-40"/>
|
||||
<terminal x="-120" uuid="{4bd411ca-3997-4aed-bda0-9f14f7bb72bb}" name="" orientation="n" y="-40"/>
|
||||
<terminal x="120" uuid="{624c8d0a-e29c-4fce-9eb6-49ab39ea73f1}" name="" orientation="n" y="-40"/>
|
||||
<terminal x="360" uuid="{5012e911-57f1-4f74-a693-6fc99618dc53}" name="" orientation="e" y="10"/>
|
||||
<terminal x="-360" uuid="{f1d32fec-ec90-4e5b-a138-2b7b9809e466}" name="" orientation="w" y="0"/>
|
||||
<terminal x="-280" uuid="{f06121e1-6425-4911-a1a7-f3e98b69948d}" name="" orientation="n" y="-40"/>
|
||||
<terminal x="360" uuid="{8bbac4bb-7fbb-48ea-8458-e000947871d8}" name="" orientation="e" y="-10"/>
|
||||
<terminal x="-360" uuid="{2f54555d-15a5-4c95-a26e-2fb5c58ed30a}" name="" orientation="w" y="40"/>
|
||||
<terminal x="-360" uuid="{3cd272e4-3ad5-4a7b-82f8-7f5a03d913c0}" name="" orientation="w" y="60"/>
|
||||
<terminal x="360" uuid="{055e59ba-d25d-4127-bf0f-887101b9383f}" name="" orientation="e" y="30"/>
|
||||
<terminal x="-360" uuid="{567ce6c9-013d-440f-9776-46566309aba0}" name="" orientation="w" y="20"/>
|
||||
<terminal x="-40" uuid="{50f877da-869b-4823-95f8-270b464dd7da}" name="" orientation="n" y="-40"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,110 +1,127 @@
|
||||
<definition hotspot_y="55" link_type="simple" version="0.60" type="element" width="730" hotspot_x="364" height="170">
|
||||
<definition hotspot_y="55" width="740" type="element" hotspot_x="375" version="0.80" link_type="simple" height="170">
|
||||
<names>
|
||||
<name lang="nl">750-8206</name>
|
||||
<name lang="es">750-8206</name>
|
||||
<name lang="it">750-8206</name>
|
||||
<name lang="fr">750-8206</name>
|
||||
<name lang="cs">750-8206</name>
|
||||
<name lang="pt">750-8206</name>
|
||||
<name lang="pl">750-8206</name>
|
||||
<name lang="de">750-8206</name>
|
||||
<name lang="nl">750-8206</name>
|
||||
<name lang="el">750-8206</name>
|
||||
<name lang="de">750-8206</name>
|
||||
<name lang="en">750-8206</name>
|
||||
<name lang="es">750-8206</name>
|
||||
<name lang="cs">750-8206</name>
|
||||
<name lang="pl">750-8206</name>
|
||||
<name lang="ar">750-8206</name>
|
||||
<name lang="it">750-8206</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8206</elementInformation>
|
||||
<elementInformation show="1" name="description">PFC200 CS 2ETH RS CAN DPS</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8206</elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="150" width="720" ry="0"/>
|
||||
<circle x="-362.5" diameter="5" y="77.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-362.5" diameter="5" y="57.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="84"/>
|
||||
<input text="1000" tagg="none" size="9" rotate="true" x="-146" y="60"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="64"/>
|
||||
<input text="12.000" tagg="none" size="9" rotate="true" x="-146" y="80"/>
|
||||
<circle x="-362.5" diameter="5" y="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="IP Adr. 2:" size="9" x="-303" y="25"/>
|
||||
<text text="IP Adr. 1:" size="9" x="-303" y="4"/>
|
||||
<circle x="-362.5" diameter="5" y="17.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Node ID:" size="9" x="-303" y="64"/>
|
||||
<text text="Mode:" size="9" x="-303" y="44"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="60"/>
|
||||
<input text="RS232 19.200 8N1" tagg="none" size="9" rotate="true" x="-247" y="40"/>
|
||||
<input text="192.168.0.1" tagg="none" size="9" rotate="true" x="-247" y="0"/>
|
||||
<input text="192.168.1.1" tagg="none" size="9" rotate="true" x="-247" y="21"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" length2="1.5" x1="40" length1="1.5" y2="-38"/>
|
||||
<text text="DP" size="9" x="-355" y="84"/>
|
||||
<text text="Serial" size="9" x="-355" y="44"/>
|
||||
<text text="CAN" size="9" x="-355" y="64"/>
|
||||
<text text="Eth2" size="9" x="-355" y="24"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" length2="1.5" x1="-40" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="200" length1="1.5" y2="30"/>
|
||||
<circle x="-362.5" diameter="5" y="-2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" length2="1.5" x1="120" length1="1.5" y2="-37"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="31.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" length2="1.5" x1="280" length1="1.5" y2="-37"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" length2="1.5" x1="-120" length1="1.5" y2="-38"/>
|
||||
<circle x="-42.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-122.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-202.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-282.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="277.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="197.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="117.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="37.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="40" length1="1.5" y2="10"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" length2="1.5" x1="200" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="-120" length1="1.5" y2="-10"/>
|
||||
<text text="WAGO 750-8206" size="9" x="-329" y="105"/>
|
||||
<text text="DP Adr.:" size="9" x="-303" y="84"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="80"/>
|
||||
<text text="PE" size="9" x="281" y="-22"/>
|
||||
<text text="PE" size="9" x="201" y="-22"/>
|
||||
<text text="0V" size="9" x="-199" y="-22"/>
|
||||
<text text="24V" size="9" x="-279" y="-22"/>
|
||||
<text text="_" size="12" x="123" y="-31"/>
|
||||
<text text="_" size="12" x="43" y="-31"/>
|
||||
<text text="+" size="12" x="-39" y="-22"/>
|
||||
<text text="+" size="12" x="-119" y="-22"/>
|
||||
<text text="Eth1" size="9" x="-355" y="4"/>
|
||||
<input text="X123" tagg="label" size="9" rotate="true" x="221" y="101"/>
|
||||
<text text="1" size="5" x="-276" y="-42"/>
|
||||
<text text="5" size="5" x="-195" y="-42"/>
|
||||
<text text="2" size="5" x="-115" y="-42"/>
|
||||
<text text="6" size="5" x="-35" y="-42"/>
|
||||
<text text="3" size="5" x="45" y="-42"/>
|
||||
<text text="7" size="5" x="125" y="-42"/>
|
||||
<text text="4" size="5" x="205" y="-42"/>
|
||||
<text text="8" size="5" x="285" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH RS CAN DPS" size="9" x="-137" y="105"/>
|
||||
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="49" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X3" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="69" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X4" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="89" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X5" x="-371" rotation="0" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal x="-40" y="-40" orientation="n"/>
|
||||
<terminal x="-360" y="0" orientation="w"/>
|
||||
<terminal x="280" y="-40" orientation="n"/>
|
||||
<terminal x="200" y="-40" orientation="n"/>
|
||||
<terminal x="40" y="-40" orientation="n"/>
|
||||
<terminal x="-200" y="-40" orientation="n"/>
|
||||
<terminal x="-120" y="-40" orientation="n"/>
|
||||
<terminal x="120" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="10" orientation="e"/>
|
||||
<terminal x="-280" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="-10" orientation="e"/>
|
||||
<terminal x="360" y="30" orientation="e"/>
|
||||
<terminal x="-360" y="20" orientation="w"/>
|
||||
<terminal x="-360" y="40" orientation="w"/>
|
||||
<terminal x="-360" y="60" orientation="w"/>
|
||||
<terminal x="-360" y="80" orientation="w"/>
|
||||
<rect y="-40" width="720" rx="0" x="-360" style="line-style:normal;line-weight:normal;filling:white;color:black" ry="0" antialias="false" height="150"/>
|
||||
<circle y="77.5" x="-362.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle y="57.5" x="-362.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="84" x="-212" rotation="0" text="Baudrate:"/>
|
||||
<dynamic_text Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="48.5" text_width="-1" text_from="UserText" x="-146" rotation="0" uuid="{a8bf6051-9baf-4528-9728-5d4e70877bd6}" frame="false" z="5">
|
||||
<text>1000</text>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="64" x="-212" rotation="0" text="Baudrate:"/>
|
||||
<dynamic_text Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="68.5" text_width="-1" text_from="UserText" x="-146" rotation="0" uuid="{7117745b-17e0-4515-a107-bf0c0a365574}" frame="false" z="7">
|
||||
<text>12.000</text>
|
||||
</dynamic_text>
|
||||
<circle y="37.5" x="-362.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="25" x="-303" rotation="0" text="IP Adr. 2:"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="4" x="-303" rotation="0" text="IP Adr. 1:"/>
|
||||
<circle y="17.5" x="-362.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="64" x="-303" rotation="0" text="Node ID:"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="44" x="-303" rotation="0" text="Mode:"/>
|
||||
<dynamic_text Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="48.5" text_width="-1" text_from="UserText" x="-247" rotation="0" uuid="{d838b2da-a78d-4125-9d0a-9cb54741472e}" frame="false" z="14">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="28.5" text_width="-1" text_from="UserText" x="-247" rotation="0" uuid="{200f4c75-50bb-4caf-9e2b-64fe09df3eeb}" frame="false" z="15">
|
||||
<text>RS232 19.200 8N1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="-11.5" text_width="-1" text_from="UserText" x="-247" rotation="0" uuid="{5b0c8eee-010b-490c-8b46-aed997b96bb1}" frame="false" z="16">
|
||||
<text>192.168.0.1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="9.5" text_width="-1" text_from="UserText" x="-247" rotation="0" uuid="{9ff9bb2a-cfeb-4970-b2cd-d27a88465eb2}" frame="false" z="17">
|
||||
<text>192.168.1.1</text>
|
||||
</dynamic_text>
|
||||
<line y2="-38" length1="1.5" x1="40" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" antialias="false" length2="1.5" y1="10" x2="40"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="84" x="-355" rotation="0" text="DP"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="44" x="-355" rotation="0" text="Serial"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="64" x="-355" rotation="0" text="CAN"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="24" x="-355" rotation="0" text="Eth2"/>
|
||||
<line y2="-38" length1="1.5" x1="-40" end2="none" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="circle" antialias="false" length2="1.5" y1="-8.5" x2="-40"/>
|
||||
<line y2="30" length1="1.5" x1="200" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" antialias="false" length2="1.5" y1="30" x2="358"/>
|
||||
<circle y="-2.5" x="-362.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<line y2="-37" length1="1.5" x1="120" end2="none" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="circle" antialias="false" length2="1.5" y1="11" x2="120"/>
|
||||
<line y2="-37" length1="1.5" x1="280" end2="none" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="circle" antialias="false" length2="1.5" y1="31.5" x2="280"/>
|
||||
<line y2="-38" length1="1.5" x1="-120" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" antialias="false" length2="1.5" y1="-10" x2="-120"/>
|
||||
<circle y="-42.5" x="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle y="-42.5" x="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle y="-42.5" x="-202.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle y="-42.5" x="-282.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle y="-42.5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle y="-42.5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle y="-42.5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle y="-42.5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<line y2="10" length1="1.5" x1="40" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" antialias="false" length2="1.5" y1="10" x2="358"/>
|
||||
<line y2="-38" length1="1.5" x1="200" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" antialias="false" length2="1.5" y1="30" x2="200"/>
|
||||
<line y2="-10" length1="1.5" x1="-120" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" antialias="false" length2="1.5" y1="-10" x2="358"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="105" x="-329" rotation="0" text="WAGO 750-8206"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="84" x="-303" rotation="0" text="DP Adr.:"/>
|
||||
<dynamic_text Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="68.5" text_width="-1" text_from="UserText" x="-247" rotation="0" uuid="{eaaa7e6e-eb42-41a9-917a-fc0add78230b}" frame="false" z="42">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-22" x="281" rotation="0" text="PE"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-22" x="201" rotation="0" text="PE"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-22" x="-199" rotation="0" text="0V"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-22" x="-279" rotation="0" text="24V"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" y="-22" x="123" rotation="0" text="−"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" y="-22" x="43" rotation="0" text="−"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" y="-22" x="-39" rotation="0" text="+"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" y="-22" x="-119" rotation="0" text="+"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="4" x="-355" rotation="0" text="Eth1"/>
|
||||
<dynamic_text Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="89.5" text_width="-1" text_from="ElementInfo" x="221" rotation="0" uuid="{7f9dd748-b7a6-4e5f-9ce6-6c6a1a80ac95}" frame="false" z="52">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="-276" rotation="0" text="1"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="-195" rotation="0" text="5"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="-115" rotation="0" text="2"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="-35" rotation="0" text="6"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="45" rotation="0" text="3"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="125" rotation="0" text="7"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="205" rotation="0" text="4"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="285" rotation="0" text="8"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="105" x="-137" rotation="0" text="PFC200 CS 2ETH RS CAN DPS"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="9" x="-371" rotation="0" text="X1"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="29" x="-371" rotation="0" text="X2"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="49" x="-371" rotation="0" text="X3"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="69" x="-371" rotation="0" text="X4"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="89" x="-371" rotation="0" text="X5"/>
|
||||
<arc y="-12.5" angle="180" width="5" x="360" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" start="90" height="5"/>
|
||||
<arc y="7.5" angle="180" width="5" x="360" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" start="90" height="5"/>
|
||||
<arc y="27.5" angle="180" width="5" x="360" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" start="90" height="5"/>
|
||||
<terminal y="-40" name="" x="-40" uuid="{04097115-8c1e-4500-a585-2db34ef39232}" orientation="n"/>
|
||||
<terminal y="0" name="" x="-360" uuid="{4e5ce9b1-e49f-4c23-8498-ac8a11de40aa}" orientation="w"/>
|
||||
<terminal y="-40" name="" x="280" uuid="{3804f80d-fdde-42ce-84e1-7c970cc63c2d}" orientation="n"/>
|
||||
<terminal y="-40" name="" x="200" uuid="{30331918-08a1-4863-879a-1e0fd4e7be29}" orientation="n"/>
|
||||
<terminal y="-40" name="" x="40" uuid="{166db91c-2094-4d17-9eb7-bc44ba3a4ff1}" orientation="n"/>
|
||||
<terminal y="-40" name="" x="-200" uuid="{a09cb539-23a3-4b59-9bcb-d998c8aaab91}" orientation="n"/>
|
||||
<terminal y="-40" name="" x="-120" uuid="{e6ebc644-da49-476b-b6a0-63198c7d36a5}" orientation="n"/>
|
||||
<terminal y="-40" name="" x="120" uuid="{14407ed6-3137-42e9-9763-aff2c932b29c}" orientation="n"/>
|
||||
<terminal y="10" name="" x="360" uuid="{8d2356e0-5ea1-4695-9f44-3e4298ba2723}" orientation="e"/>
|
||||
<terminal y="-40" name="" x="-280" uuid="{1b71bd2d-59a8-4c72-885a-1c31e109422d}" orientation="n"/>
|
||||
<terminal y="-10" name="" x="360" uuid="{7f222f3b-c72c-4f65-b9cd-5e811c2e231f}" orientation="e"/>
|
||||
<terminal y="30" name="" x="360" uuid="{a592f0fd-91c1-4623-96c3-0e69dce51c4d}" orientation="e"/>
|
||||
<terminal y="20" name="" x="-360" uuid="{75299ea3-9881-4483-8ecf-57e9815a6878}" orientation="w"/>
|
||||
<terminal y="40" name="" x="-360" uuid="{2328e77e-6d27-4a3e-ab4a-a72be2ba38a1}" orientation="w"/>
|
||||
<terminal y="60" name="" x="-360" uuid="{011a5e35-7e99-4575-9615-d6c82f49c3e9}" orientation="w"/>
|
||||
<terminal y="80" name="" x="-360" uuid="{08f54536-7195-4de7-99ed-adeb4fe9d35a}" orientation="w"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition type="element" hotspot_y="55" height="170" hotspot_x="364" width="730" link_type="simple" version="0.80">
|
||||
<definition type="element" hotspot_y="55" height="170" hotspot_x="375" width="740" link_type="simple" version="0.80">
|
||||
<names>
|
||||
<name lang="it">750-8207</name>
|
||||
<name lang="cs">750-8207</name>
|
||||
@@ -63,8 +63,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text x="201" text="PE" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-199" text="0V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-279" text="24V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="123" text="_" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-31" color="#000000"/>
|
||||
<text x="43" text="_" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-31" color="#000000"/>
|
||||
<text x="123" text="−" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="43" text="−" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-39" text="+" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-119" text="+" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-355" text="Eth1" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="4" color="#000000"/>
|
||||
|
||||
@@ -1,110 +1,127 @@
|
||||
<definition hotspot_y="55" link_type="simple" version="0.60" type="element" width="730" hotspot_x="364" height="170">
|
||||
<definition height="170" width="740" hotspot_x="375" type="element" hotspot_y="55" version="0.80" link_type="simple">
|
||||
<names>
|
||||
<name lang="ar">750-8208</name>
|
||||
<name lang="pl">750-8208</name>
|
||||
<name lang="nl">750-8208</name>
|
||||
<name lang="cs">750-8208</name>
|
||||
<name lang="el">750-8208</name>
|
||||
<name lang="fr">750-8208</name>
|
||||
<name lang="pt">750-8208</name>
|
||||
<name lang="es">750-8208</name>
|
||||
<name lang="it">750-8208</name>
|
||||
<name lang="fr">750-8208</name>
|
||||
<name lang="cs">750-8208</name>
|
||||
<name lang="pt">750-8208</name>
|
||||
<name lang="pl">750-8208</name>
|
||||
<name lang="de">750-8208</name>
|
||||
<name lang="el">750-8208</name>
|
||||
<name lang="en">750-8208</name>
|
||||
<name lang="ar">750-8208</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8208</elementInformation>
|
||||
<elementInformation show="1" name="description">PFC200 CS 2ETH RS CAN DPM</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-8208</elementInformation>
|
||||
<elementInformation name="description" show="1">PFC200 CS 2ETH RS CAN DPM</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="150" width="720" ry="0"/>
|
||||
<circle x="-362.5" diameter="5" y="77.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-362.5" diameter="5" y="57.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-362.5" diameter="5" y="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="IP Adr. 2:" size="9" x="-303" y="25"/>
|
||||
<text text="IP Adr. 1:" size="9" x="-303" y="4"/>
|
||||
<circle x="-362.5" diameter="5" y="17.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Node ID:" size="9" x="-303" y="64"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="64"/>
|
||||
<input text="1000" tagg="none" size="9" rotate="true" x="-146" y="60"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="84"/>
|
||||
<input text="12.000" tagg="none" size="9" rotate="true" x="-146" y="80"/>
|
||||
<text text="Mode:" size="9" x="-303" y="44"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="60"/>
|
||||
<input text="RS232 19.200 8N1" tagg="none" size="9" rotate="true" x="-247" y="40"/>
|
||||
<input text="192.168.0.1" tagg="none" size="9" rotate="true" x="-247" y="0"/>
|
||||
<input text="192.168.1.1" tagg="none" size="9" rotate="true" x="-247" y="21"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" length2="1.5" x1="40" length1="1.5" y2="-38"/>
|
||||
<text text="DP" size="9" x="-355" y="84"/>
|
||||
<text text="Serial" size="9" x="-355" y="44"/>
|
||||
<text text="CAN" size="9" x="-355" y="64"/>
|
||||
<text text="Eth2" size="9" x="-355" y="24"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" length2="1.5" x1="-40" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="200" length1="1.5" y2="30"/>
|
||||
<circle x="-362.5" diameter="5" y="-2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" length2="1.5" x1="120" length1="1.5" y2="-37"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="31.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" length2="1.5" x1="280" length1="1.5" y2="-37"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" length2="1.5" x1="-120" length1="1.5" y2="-38"/>
|
||||
<circle x="-42.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-122.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-202.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-282.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="277.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="197.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="117.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="37.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="40" length1="1.5" y2="10"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" length2="1.5" x1="200" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="-120" length1="1.5" y2="-10"/>
|
||||
<text text="WAGO 750-8208" size="9" x="-329" y="105"/>
|
||||
<text text="DP Adr.:" size="9" x="-303" y="84"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="80"/>
|
||||
<text text="PE" size="9" x="281" y="-22"/>
|
||||
<text text="PE" size="9" x="201" y="-22"/>
|
||||
<text text="0V" size="9" x="-199" y="-22"/>
|
||||
<text text="24V" size="9" x="-279" y="-22"/>
|
||||
<text text="_" size="12" x="123" y="-31"/>
|
||||
<text text="_" size="12" x="43" y="-31"/>
|
||||
<text text="+" size="12" x="-39" y="-22"/>
|
||||
<text text="+" size="12" x="-119" y="-22"/>
|
||||
<text text="Eth1" size="9" x="-355" y="4"/>
|
||||
<input text="X123" tagg="label" size="9" rotate="true" x="221" y="101"/>
|
||||
<text text="1" size="5" x="-276" y="-42"/>
|
||||
<text text="5" size="5" x="-195" y="-42"/>
|
||||
<text text="2" size="5" x="-115" y="-42"/>
|
||||
<text text="6" size="5" x="-35" y="-42"/>
|
||||
<text text="3" size="5" x="45" y="-42"/>
|
||||
<text text="7" size="5" x="125" y="-42"/>
|
||||
<text text="4" size="5" x="205" y="-42"/>
|
||||
<text text="8" size="5" x="285" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH RS CAN DPM" size="9" x="-137" y="105"/>
|
||||
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="49" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X3" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="69" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X4" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="89" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X5" x="-371" rotation="0" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal x="-40" y="-40" orientation="n"/>
|
||||
<terminal x="-360" y="0" orientation="w"/>
|
||||
<terminal x="280" y="-40" orientation="n"/>
|
||||
<terminal x="200" y="-40" orientation="n"/>
|
||||
<terminal x="40" y="-40" orientation="n"/>
|
||||
<terminal x="-200" y="-40" orientation="n"/>
|
||||
<terminal x="-120" y="-40" orientation="n"/>
|
||||
<terminal x="120" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="10" orientation="e"/>
|
||||
<terminal x="-280" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="-10" orientation="e"/>
|
||||
<terminal x="360" y="30" orientation="e"/>
|
||||
<terminal x="-360" y="20" orientation="w"/>
|
||||
<terminal x="-360" y="40" orientation="w"/>
|
||||
<terminal x="-360" y="60" orientation="w"/>
|
||||
<terminal x="-360" y="80" orientation="w"/>
|
||||
<rect height="150" x="-360" width="720" y="-40" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" ry="0" rx="0"/>
|
||||
<circle x="-362.5" diameter="5" y="77.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="-362.5" diameter="5" y="57.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="-362.5" diameter="5" y="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<text x="-303" text="IP Adr. 2:" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="25" color="#000000"/>
|
||||
<text x="-303" text="IP Adr. 1:" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="4" color="#000000"/>
|
||||
<circle x="-362.5" diameter="5" y="17.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<text x="-303" text="Node ID:" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="64" color="#000000"/>
|
||||
<text x="-212" text="Baudrate:" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="64" color="#000000"/>
|
||||
<dynamic_text x="-146" uuid="{69be3ed1-6c34-4649-bc4e-9e327ce737cd}" frame="false" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="48.5" Valignment="AlignTop" z="10" text_from="UserText">
|
||||
<text>1000</text>
|
||||
</dynamic_text>
|
||||
<text x="-212" text="Baudrate:" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="84" color="#000000"/>
|
||||
<dynamic_text x="-146" uuid="{53aaf446-fc31-459c-9ac7-caa25935c4bd}" frame="false" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="68.5" Valignment="AlignTop" z="12" text_from="UserText">
|
||||
<text>12.000</text>
|
||||
</dynamic_text>
|
||||
<text x="-303" text="Mode:" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="44" color="#000000"/>
|
||||
<dynamic_text x="-247" uuid="{2f28665a-bd32-430c-9fb4-8bdb44b7fb8a}" frame="false" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="48.5" Valignment="AlignTop" z="14" text_from="UserText">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-247" uuid="{87f651ac-e65c-4ec5-a027-9b5432a44865}" frame="false" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="28.5" Valignment="AlignTop" z="15" text_from="UserText">
|
||||
<text>RS232 19.200 8N1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-247" uuid="{0ec1c158-cb7a-4b59-a30f-cda483d2c340}" frame="false" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="-11.5" Valignment="AlignTop" z="16" text_from="UserText">
|
||||
<text>192.168.0.1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-247" uuid="{250404cf-8f6f-443e-b354-8e216182696e}" frame="false" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="9.5" Valignment="AlignTop" z="17" text_from="UserText">
|
||||
<text>192.168.1.1</text>
|
||||
</dynamic_text>
|
||||
<line length1="1.5" end1="none" x2="40" y2="-38" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end2="none" x1="40" length2="1.5"/>
|
||||
<text x="-355" text="DP" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="84" color="#000000"/>
|
||||
<text x="-355" text="Serial" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="44" color="#000000"/>
|
||||
<text x="-355" text="CAN" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="64" color="#000000"/>
|
||||
<text x="-355" text="Eth2" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="24" color="#000000"/>
|
||||
<line length1="1.5" end1="circle" x2="-40" y2="-38" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false" end2="none" x1="-40" length2="1.5"/>
|
||||
<line length1="1.5" end1="none" x2="358" y2="30" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end2="none" x1="200" length2="1.5"/>
|
||||
<circle x="-362.5" diameter="5" y="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<line length1="1.5" end1="circle" x2="120" y2="-37" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false" end2="none" x1="120" length2="1.5"/>
|
||||
<line length1="1.5" end1="circle" x2="280" y2="-37" y1="31.5" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false" end2="none" x1="280" length2="1.5"/>
|
||||
<line length1="1.5" end1="none" x2="-120" y2="-38" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end2="none" x1="-120" length2="1.5"/>
|
||||
<circle x="-42.5" diameter="5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="-122.5" diameter="5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="-202.5" diameter="5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="-282.5" diameter="5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="277.5" diameter="5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="197.5" diameter="5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="117.5" diameter="5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="37.5" diameter="5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<line length1="1.5" end1="none" x2="358" y2="10" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end2="none" x1="40" length2="1.5"/>
|
||||
<line length1="1.5" end1="none" x2="200" y2="-38" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end2="none" x1="200" length2="1.5"/>
|
||||
<line length1="1.5" end1="none" x2="358" y2="-10" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" end2="none" x1="-120" length2="1.5"/>
|
||||
<text x="-329" text="WAGO 750-8208" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="105" color="#000000"/>
|
||||
<text x="-303" text="DP Adr.:" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="84" color="#000000"/>
|
||||
<dynamic_text x="-247" uuid="{3cb22c9c-ff3a-4208-a383-9b0f0b140b5d}" frame="false" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="68.5" Valignment="AlignTop" z="42" text_from="UserText">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<text x="281" text="PE" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="201" text="PE" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-199" text="0V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-279" text="24V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="123" text="−" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="43" text="−" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-39" text="+" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-119" text="+" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-355" text="Eth1" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="4" color="#000000"/>
|
||||
<dynamic_text x="221" uuid="{b8f59a38-2c49-4312-ba2e-d73dc5b78774}" frame="false" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" y="89.5" Valignment="AlignTop" z="52" text_from="ElementInfo">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="-276" text="1" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000"/>
|
||||
<text x="-195" text="5" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000"/>
|
||||
<text x="-115" text="2" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000"/>
|
||||
<text x="-35" text="6" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000"/>
|
||||
<text x="45" text="3" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000"/>
|
||||
<text x="125" text="7" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000"/>
|
||||
<text x="205" text="4" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000"/>
|
||||
<text x="285" text="8" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000"/>
|
||||
<text x="-137" text="PFC200 CS 2ETH RS CAN DPM" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="105" color="#000000"/>
|
||||
<text x="-371" text="X1" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="9" color="#000000"/>
|
||||
<text x="-371" text="X2" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="29" color="#000000"/>
|
||||
<text x="-371" text="X3" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="49" color="#000000"/>
|
||||
<text x="-371" text="X4" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="69" color="#000000"/>
|
||||
<text x="-371" text="X5" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="89" color="#000000"/>
|
||||
<arc height="5" x="360" width="5" start="90" angle="180" y="-12.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<arc height="5" x="360" width="5" start="90" angle="180" y="7.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<arc height="5" x="360" width="5" start="90" angle="180" y="27.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<terminal name="" x="-40" uuid="{79247115-b813-4880-b9f2-3253e817a6cb}" orientation="n" y="-40"/>
|
||||
<terminal name="" x="-360" uuid="{a7c46c43-1d10-4479-880f-f20a08509e1e}" orientation="w" y="0"/>
|
||||
<terminal name="" x="280" uuid="{0893861a-5f34-4938-97a5-a696eb00f545}" orientation="n" y="-40"/>
|
||||
<terminal name="" x="200" uuid="{ee2b0df2-9348-4f22-a189-dabc2b85b70b}" orientation="n" y="-40"/>
|
||||
<terminal name="" x="40" uuid="{c26ae580-0788-4f9f-b799-52cf2b201342}" orientation="n" y="-40"/>
|
||||
<terminal name="" x="-200" uuid="{da109963-35a0-49b0-9f85-c330563f6747}" orientation="n" y="-40"/>
|
||||
<terminal name="" x="-120" uuid="{b61068c9-58cc-4305-b5d5-578534b6b7d4}" orientation="n" y="-40"/>
|
||||
<terminal name="" x="120" uuid="{9f01b82d-0f32-4b19-b90e-957d2673fc1f}" orientation="n" y="-40"/>
|
||||
<terminal name="" x="360" uuid="{5acd50d2-16ce-4161-9c75-a868e81134a0}" orientation="e" y="10"/>
|
||||
<terminal name="" x="-280" uuid="{d48c9e24-b343-4bea-a17b-f4b36483a9bd}" orientation="n" y="-40"/>
|
||||
<terminal name="" x="360" uuid="{cfac4056-5465-4d51-bdc0-c023e6624fb4}" orientation="e" y="-10"/>
|
||||
<terminal name="" x="360" uuid="{3b465b9b-ba40-4914-9e40-0eaf49913b5b}" orientation="e" y="30"/>
|
||||
<terminal name="" x="-360" uuid="{c0e2f93a-f038-4a46-8f33-8b37186c77a5}" orientation="w" y="20"/>
|
||||
<terminal name="" x="-360" uuid="{e2848727-7318-412f-9995-8673e470ece8}" orientation="w" y="40"/>
|
||||
<terminal name="" x="-360" uuid="{ce682cae-a795-427a-9e31-f33e3998aa5d}" orientation="w" y="60"/>
|
||||
<terminal name="" x="-360" uuid="{711405aa-7354-4989-b7bf-64261c121f63}" orientation="w" y="80"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition type="element" hotspot_y="55" height="170" width="730" version="0.80" link_type="simple" hotspot_x="364">
|
||||
<definition type="element" hotspot_y="55" height="170" width="740" version="0.80" link_type="simple" hotspot_x="375">
|
||||
<names>
|
||||
<name lang="cs">750-8210</name>
|
||||
<name lang="de">750-8210</name>
|
||||
@@ -67,8 +67,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text x="201" text="PE" rotation="0" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-199" text="0V" rotation="0" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="-279" text="24V" rotation="0" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="123" text="_" rotation="0" y="-31" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="43" text="_" rotation="0" y="-31" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="123" text="−" rotation="0" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<text x="43" text="−" rotation="0" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000"/>
|
||||
<dynamic_text text_from="ElementInfo" frame="false" text_width="-1" x="221" z="60" rotation="0" y="89.5" uuid="{70d0a65b-d385-4a32-864c-89d9d47f6fcb}" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition type="element" height="170" link_type="simple" version="0.80" width="730" hotspot_x="364" hotspot_y="55">
|
||||
<definition type="element" height="170" link_type="simple" version="0.80" width="740" hotspot_x="375" hotspot_y="55">
|
||||
<names>
|
||||
<name lang="es">750-8211</name>
|
||||
<name lang="ar">750-8211</name>
|
||||
@@ -68,8 +68,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text color="#000000" x="-329" rotation="0" y="105" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="WAGO 750-8211"/>
|
||||
<text color="#000000" x="-199" rotation="0" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V"/>
|
||||
<text color="#000000" x="-279" rotation="0" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V"/>
|
||||
<text color="#000000" x="123" rotation="0" y="-31" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_"/>
|
||||
<text color="#000000" x="43" rotation="0" y="-31" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_"/>
|
||||
<text color="#000000" x="123" rotation="0" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−"/>
|
||||
<text color="#000000" x="43" rotation="0" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−"/>
|
||||
<text color="#000000" x="-39" rotation="0" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+"/>
|
||||
<text color="#000000" x="-119" rotation="0" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+"/>
|
||||
<text color="#000000" x="-355" rotation="0" y="4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Eth1 (SFP)"/>
|
||||
|
||||
@@ -1,94 +1,103 @@
|
||||
<definition hotspot_y="55" link_type="simple" version="0.60" type="element" width="730" hotspot_x="364" height="170">
|
||||
<definition type="element" width="740" hotspot_x="375" hotspot_y="55" link_type="simple" height="170" version="0.80">
|
||||
<names>
|
||||
<name lang="nl">750-8212</name>
|
||||
<name lang="es">750-8212</name>
|
||||
<name lang="it">750-8212</name>
|
||||
<name lang="fr">750-8212</name>
|
||||
<name lang="cs">750-8212</name>
|
||||
<name lang="pt">750-8212</name>
|
||||
<name lang="pl">750-8212</name>
|
||||
<name lang="de">750-8212</name>
|
||||
<name lang="el">750-8212</name>
|
||||
<name lang="en">750-8212</name>
|
||||
<name lang="pt">750-8212</name>
|
||||
<name lang="it">750-8212</name>
|
||||
<name lang="pl">750-8212</name>
|
||||
<name lang="cs">750-8212</name>
|
||||
<name lang="ar">750-8212</name>
|
||||
<name lang="es">750-8212</name>
|
||||
<name lang="de">750-8212</name>
|
||||
<name lang="nl">750-8212</name>
|
||||
<name lang="en">750-8212</name>
|
||||
<name lang="fr">750-8212</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8212</elementInformation>
|
||||
<elementInformation show="1" name="description">PFC200 CS 2ETH RS</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-8212</elementInformation>
|
||||
<elementInformation name="description" show="1">PFC200 CS 2ETH RS</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="150" width="720" ry="0"/>
|
||||
<circle x="-362.5" diameter="5" y="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="IP Adr. 2:" size="9" x="-303" y="25"/>
|
||||
<text text="IP Adr. 1:" size="9" x="-303" y="4"/>
|
||||
<circle x="-362.5" diameter="5" y="17.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Mode:" size="9" x="-303" y="44"/>
|
||||
<input text="RS232 19.200 8N1" tagg="none" size="9" rotate="true" x="-247" y="40"/>
|
||||
<input text="192.168.0.1" tagg="none" size="9" rotate="true" x="-247" y="0"/>
|
||||
<input text="192.168.1.1" tagg="none" size="9" rotate="true" x="-247" y="21"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" length2="1.5" x1="40" length1="1.5" y2="-38"/>
|
||||
<text text="Serial" size="9" x="-355" y="44"/>
|
||||
<text text="Eth2" size="9" x="-355" y="24"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" length2="1.5" x1="-40" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="200" length1="1.5" y2="30"/>
|
||||
<circle x="-362.5" diameter="5" y="-2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" length2="1.5" x1="120" length1="1.5" y2="-37"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="31.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" length2="1.5" x1="280" length1="1.5" y2="-37"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" length2="1.5" x1="-120" length1="1.5" y2="-38"/>
|
||||
<circle x="-42.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-122.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-202.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-282.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="277.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="197.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="117.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="37.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="40" length1="1.5" y2="10"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" length2="1.5" x1="200" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="-120" length1="1.5" y2="-10"/>
|
||||
<text text="WAGO 750-8212" size="9" x="-329" y="105"/>
|
||||
<text text="PE" size="9" x="281" y="-22"/>
|
||||
<text text="PE" size="9" x="201" y="-22"/>
|
||||
<text text="0V" size="9" x="-199" y="-22"/>
|
||||
<text text="24V" size="9" x="-279" y="-22"/>
|
||||
<text text="_" size="12" x="123" y="-31"/>
|
||||
<text text="_" size="12" x="43" y="-31"/>
|
||||
<text text="+" size="12" x="-39" y="-22"/>
|
||||
<text text="+" size="12" x="-119" y="-22"/>
|
||||
<text text="Eth1" size="9" x="-355" y="4"/>
|
||||
<input text="X123" tagg="label" size="9" rotate="true" x="221" y="101"/>
|
||||
<text text="1" size="5" x="-276" y="-42"/>
|
||||
<text text="5" size="5" x="-195" y="-42"/>
|
||||
<text text="2" size="5" x="-115" y="-42"/>
|
||||
<text text="6" size="5" x="-35" y="-42"/>
|
||||
<text text="3" size="5" x="45" y="-42"/>
|
||||
<text text="7" size="5" x="125" y="-42"/>
|
||||
<text text="4" size="5" x="205" y="-42"/>
|
||||
<text text="8" size="5" x="285" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH RS" size="9" x="-137" y="105"/>
|
||||
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="49" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X3" x="-371" rotation="0" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal x="40" y="-40" orientation="n"/>
|
||||
<terminal x="280" y="-40" orientation="n"/>
|
||||
<terminal x="200" y="-40" orientation="n"/>
|
||||
<terminal x="-200" y="-40" orientation="n"/>
|
||||
<terminal x="-120" y="-40" orientation="n"/>
|
||||
<terminal x="120" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="10" orientation="e"/>
|
||||
<terminal x="-360" y="0" orientation="w"/>
|
||||
<terminal x="-280" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="-10" orientation="e"/>
|
||||
<terminal x="-360" y="40" orientation="w"/>
|
||||
<terminal x="360" y="30" orientation="e"/>
|
||||
<terminal x="-360" y="20" orientation="w"/>
|
||||
<terminal x="-40" y="-40" orientation="n"/>
|
||||
<rect y="-40" style="line-style:normal;line-weight:normal;filling:white;color:black" ry="0" x="-360" width="720" antialias="false" height="150" rx="0"/>
|
||||
<circle y="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true"/>
|
||||
<text color="#000000" y="25" text="IP Adr. 2:" x="-303" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="4" text="IP Adr. 1:" x="-303" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<circle y="17.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true"/>
|
||||
<text color="#000000" y="44" text="Mode:" x="-303" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<dynamic_text y="28.5" frame="false" uuid="{12e77cd5-065f-47c8-b740-3726497231af}" z="7" x="-247" Halignment="AlignLeft" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="UserText" Valignment="AlignTop">
|
||||
<text>RS232 19.200 8N1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="-11.5" frame="false" uuid="{16132010-333b-4981-a17a-5e229c4ef0b9}" z="8" x="-247" Halignment="AlignLeft" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="UserText" Valignment="AlignTop">
|
||||
<text>192.168.0.1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text y="9.5" frame="false" uuid="{5f9f7f01-3e97-4924-af99-81ad7a4decb0}" z="9" x="-247" Halignment="AlignLeft" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="UserText" Valignment="AlignTop">
|
||||
<text>192.168.1.1</text>
|
||||
</dynamic_text>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5" x1="40" antialias="false" x2="40" y1="10" y2="-38"/>
|
||||
<text color="#000000" y="44" text="Serial" x="-355" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="24" text="Eth2" x="-355" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="circle" end2="none" length1="1.5" x1="-40" antialias="false" x2="-40" y1="-8.5" y2="-38"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5" x1="200" antialias="false" x2="358" y1="30" y2="30"/>
|
||||
<circle y="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="circle" end2="none" length1="1.5" x1="120" antialias="false" x2="120" y1="11" y2="-37"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="circle" end2="none" length1="1.5" x1="280" antialias="false" x2="280" y1="31.5" y2="-37"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5" x1="-120" antialias="false" x2="-120" y1="-10" y2="-38"/>
|
||||
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-42.5" antialias="true"/>
|
||||
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-122.5" antialias="true"/>
|
||||
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-202.5" antialias="true"/>
|
||||
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-282.5" antialias="true"/>
|
||||
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="277.5" antialias="true"/>
|
||||
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="197.5" antialias="true"/>
|
||||
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="117.5" antialias="true"/>
|
||||
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="37.5" antialias="true"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5" x1="40" antialias="false" x2="358" y1="10" y2="10"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5" x1="200" antialias="false" x2="200" y1="30" y2="-38"/>
|
||||
<line length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5" x1="-120" antialias="false" x2="358" y1="-10" y2="-10"/>
|
||||
<text color="#000000" y="105" text="WAGO 750-8212" x="-329" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-22" text="PE" x="281" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-22" text="PE" x="201" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-22" text="0V" x="-199" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-22" text="24V" x="-279" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-22" text="−" x="123" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-22" text="−" x="43" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-22" text="+" x="-39" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-22" text="+" x="-119" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="4" text="Eth1" x="-355" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<dynamic_text y="89.5" frame="false" uuid="{9e507e05-b113-4721-bbe3-a34da957a8ea}" z="40" x="221" Halignment="AlignLeft" rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" Valignment="AlignTop">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text color="#000000" y="-42" text="1" x="-276" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-42" text="5" x="-195" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-42" text="2" x="-115" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-42" text="6" x="-35" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-42" text="3" x="45" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-42" text="7" x="125" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-42" text="4" x="205" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="-42" text="8" x="285" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="105" text="PFC200 CS 2ETH RS" x="-137" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="9" text="X1" x="-371" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="29" text="X2" x="-371" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text color="#000000" y="49" text="X3" x="-371" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<arc y="-12.5" angle="180" style="line-style:normal;line-weight:normal;filling:white;color:black" start="90" x="360" width="5" antialias="true" height="5"/>
|
||||
<arc y="7.5" angle="180" style="line-style:normal;line-weight:normal;filling:white;color:black" start="90" x="360" width="5" antialias="true" height="5"/>
|
||||
<arc y="27.5" angle="180" style="line-style:normal;line-weight:normal;filling:white;color:black" start="90" x="360" width="5" antialias="true" height="5"/>
|
||||
<terminal y="-40" orientation="n" uuid="{1de8cd49-8196-467a-b7b1-e8078e744f6c}" name="" x="40"/>
|
||||
<terminal y="-40" orientation="n" uuid="{f292eda0-d43f-40ea-91b4-1146e0b55641}" name="" x="280"/>
|
||||
<terminal y="-40" orientation="n" uuid="{fae4a7fd-6eb5-4918-87ca-e220a28363dd}" name="" x="200"/>
|
||||
<terminal y="-40" orientation="n" uuid="{f448d2f8-3156-4d39-9930-da08e93f6d19}" name="" x="-200"/>
|
||||
<terminal y="-40" orientation="n" uuid="{b360f9f9-43b3-4fe8-8117-bf05412bf299}" name="" x="-120"/>
|
||||
<terminal y="-40" orientation="n" uuid="{ef1452e6-9b04-4583-9633-3dbc8eff8de5}" name="" x="120"/>
|
||||
<terminal y="10" orientation="e" uuid="{256537aa-297d-4e46-9df4-5c2f849f2dff}" name="" x="360"/>
|
||||
<terminal y="0" orientation="w" uuid="{f53bdb43-26a4-4e2c-828e-1e981809241c}" name="" x="-360"/>
|
||||
<terminal y="-40" orientation="n" uuid="{032a02e9-2a6d-49f1-91ee-c1853eeb211c}" name="" x="-280"/>
|
||||
<terminal y="-10" orientation="e" uuid="{0f957ec7-ef88-4990-8e67-d61f01b7e178}" name="" x="360"/>
|
||||
<terminal y="40" orientation="w" uuid="{62566ac9-2e63-454e-878d-8094ea363743}" name="" x="-360"/>
|
||||
<terminal y="30" orientation="e" uuid="{e357290f-db45-44cd-b95d-7662006d0a5e}" name="" x="360"/>
|
||||
<terminal y="20" orientation="w" uuid="{0b9ac458-f7e8-496c-b13e-c417bf394872}" name="" x="-360"/>
|
||||
<terminal y="-40" orientation="n" uuid="{288088f2-15b3-4941-8c27-3eab77b1f11a}" name="" x="-40"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,96 +1,107 @@
|
||||
<definition height="170" hotspot_x="364" hotspot_y="55" type="element" width="730" version="0.5" link_type="simple">
|
||||
<definition hotspot_y="55" link_type="simple" version="0.80" width="740" hotspot_x="375" height="170" type="element">
|
||||
<names>
|
||||
<name lang="nl">750-8213</name>
|
||||
<name lang="de">750-8213</name>
|
||||
<name lang="pt">750-8213</name>
|
||||
<name lang="pl">750-8213</name>
|
||||
<name lang="es">750-8213</name>
|
||||
<name lang="it">750-8213</name>
|
||||
<name lang="nl">750-8213</name>
|
||||
<name lang="el">750-8213</name>
|
||||
<name lang="de">750-8213</name>
|
||||
<name lang="fr">750-8213</name>
|
||||
<name lang="ar">750-8213</name>
|
||||
<name lang="cs">750-8213</name>
|
||||
<name lang="el">750-8213</name>
|
||||
<name lang="en">750-8213</name>
|
||||
<name lang="fr">750-8213</name>
|
||||
<name lang="it">750-8213</name>
|
||||
<name lang="pl">750-8213</name>
|
||||
<name lang="pt">750-8213</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8213</elementInformation>
|
||||
<elementInformation show="1" name="description">PFC200 CS 2ETH CAN</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8213</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="150" width="720" ry="0"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-362.5" diameter="5" y="57.5"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="64"/>
|
||||
<input text="1000" tagg="none" size="9" rotate="true" x="-146" y="60"/>
|
||||
<text text="IP Adr. 2:" x="-303" size="9" y="25"/>
|
||||
<text text="IP Adr. 1:" x="-303" size="9" y="4"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-362.5" diameter="5" y="17.5"/>
|
||||
<text text="Node ID:" x="-303" size="9" y="64"/>
|
||||
<input text="1" rotate="true" x="-247" tagg="none" size="9" y="60"/>
|
||||
<input text="192.168.0.1" rotate="true" x="-247" tagg="none" size="9" y="0"/>
|
||||
<input text="192.168.1.1" rotate="true" x="-247" tagg="none" size="9" y="21"/>
|
||||
<line x1="40" y1="10" length2="1.5" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<text text="CAN" x="-355" size="9" y="64"/>
|
||||
<text text="Eth2" x="-355" size="9" y="24"/>
|
||||
<line x1="-40" y1="-8.5" length2="1.5" y2="-38" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" antialias="false" end1="circle" length1="1.5" end2="none"/>
|
||||
<line x1="200" y1="30" length2="1.5" y2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-362.5" diameter="5" y="-2.5"/>
|
||||
<line x1="120" y1="11" length2="1.5" y2="-37" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" antialias="false" end1="circle" length1="1.5" end2="none"/>
|
||||
<line x1="280" y1="31.5" length2="1.5" y2="-37" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" antialias="false" end1="circle" length1="1.5" end2="none"/>
|
||||
<line x1="-120" y1="-10" length2="1.5" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-42.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-122.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-202.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="-282.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="277.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="197.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="117.5" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" x="37.5" diameter="5" y="-42.5"/>
|
||||
<line x1="40" y1="10" length2="1.5" y2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<line x1="200" y1="30" length2="1.5" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<line x1="-120" y1="-10" length2="1.5" y2="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" antialias="false" end1="none" length1="1.5" end2="none"/>
|
||||
<text text="WAGO 750-8213" x="-329" size="9" y="105"/>
|
||||
<text text="PE" x="281" size="9" y="-22"/>
|
||||
<text text="PE" x="201" size="9" y="-22"/>
|
||||
<text text="0V" x="-199" size="9" y="-22"/>
|
||||
<text text="24V" x="-279" size="9" y="-22"/>
|
||||
<text text="_" x="123" size="12" y="-31"/>
|
||||
<text text="_" x="43" size="12" y="-31"/>
|
||||
<text text="+" x="-39" size="12" y="-22"/>
|
||||
<text text="+" x="-119" size="12" y="-22"/>
|
||||
<text text="Eth1" x="-355" size="9" y="4"/>
|
||||
<input text="X123" rotate="true" x="221" tagg="label" size="9" y="101"/>
|
||||
<text text="1" x="-276" size="5" y="-42"/>
|
||||
<text text="5" x="-195" size="5" y="-42"/>
|
||||
<text text="2" x="-115" size="5" y="-42"/>
|
||||
<text text="6" x="-35" size="5" y="-42"/>
|
||||
<text text="3" x="45" size="5" y="-42"/>
|
||||
<text text="7" x="125" size="5" y="-42"/>
|
||||
<text text="4" x="205" size="5" y="-42"/>
|
||||
<text text="8" x="285" size="5" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH CAN" x="-137" size="9" y="105"/>
|
||||
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="69" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X4" x="-371" rotation="0" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal orientation="n" x="-280" y="-40"/>
|
||||
<terminal orientation="e" x="360" y="-10"/>
|
||||
<terminal orientation="n" x="-40" y="-40"/>
|
||||
<terminal orientation="e" x="360" y="30"/>
|
||||
<terminal orientation="w" x="-360" y="20"/>
|
||||
<terminal orientation="n" x="280" y="-40"/>
|
||||
<terminal orientation="n" x="200" y="-40"/>
|
||||
<terminal orientation="n" x="40" y="-40"/>
|
||||
<terminal orientation="n" x="-200" y="-40"/>
|
||||
<terminal orientation="n" x="-120" y="-40"/>
|
||||
<terminal orientation="n" x="120" y="-40"/>
|
||||
<terminal orientation="e" x="360" y="10"/>
|
||||
<terminal orientation="w" x="-360" y="0"/>
|
||||
<terminal orientation="w" x="-360" y="60"/>
|
||||
<rect x="-360" antialias="false" rx="0" style="line-style:normal;line-weight:normal;filling:white;color:black" width="720" height="150" ry="0" y="-40"/>
|
||||
<circle x="-362.5" diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="57.5"/>
|
||||
<text text="Baudrate:" color="#000000" x="-212" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="64"/>
|
||||
<dynamic_text uuid="{376a782d-a04b-4e4d-b268-2bf2e997bb2f}" x="-146" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" z="4" rotation="0" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="48.5">
|
||||
<text>1000</text>
|
||||
</dynamic_text>
|
||||
<text text="IP Adr. 2:" color="#000000" x="-303" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="25"/>
|
||||
<text text="IP Adr. 1:" color="#000000" x="-303" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="4"/>
|
||||
<circle x="-362.5" diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="17.5"/>
|
||||
<text text="Node ID:" color="#000000" x="-303" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="64"/>
|
||||
<dynamic_text uuid="{93a9a001-c51a-4c59-a8d5-bd621a7eeacc}" x="-247" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" z="9" rotation="0" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="48.5">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{dcab26bf-6576-4b9e-9b4e-fbe5da356f1f}" x="-247" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" z="10" rotation="0" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="-11.5">
|
||||
<text>192.168.0.1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text uuid="{1e87a3f9-bc75-4cde-97f3-21eaaf58f444}" x="-247" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" z="11" rotation="0" text_from="UserText" Halignment="AlignLeft" text_width="-1" y="9.5">
|
||||
<text>192.168.1.1</text>
|
||||
</dynamic_text>
|
||||
<line length2="1.5" y1="10" x2="40" y2="-38" antialias="false" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5"/>
|
||||
<text text="CAN" color="#000000" x="-355" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="64"/>
|
||||
<text text="Eth2" color="#000000" x="-355" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="24"/>
|
||||
<line length2="1.5" y1="-8.5" x2="-40" y2="-38" antialias="false" x1="-40" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="circle" end2="none" length1="1.5"/>
|
||||
<line length2="1.5" y1="30" x2="358" y2="30" antialias="false" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5"/>
|
||||
<circle x="-362.5" diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-2.5"/>
|
||||
<line length2="1.5" y1="11" x2="120" y2="-37" antialias="false" x1="120" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="circle" end2="none" length1="1.5"/>
|
||||
<line length2="1.5" y1="31.5" x2="280" y2="-37" antialias="false" x1="280" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="circle" end2="none" length1="1.5"/>
|
||||
<line length2="1.5" y1="-10" x2="-120" y2="-38" antialias="false" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5"/>
|
||||
<circle x="-42.5" diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle x="-122.5" diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle x="-202.5" diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle x="-282.5" diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle x="277.5" diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle x="197.5" diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle x="117.5" diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle x="37.5" diameter="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<line length2="1.5" y1="10" x2="358" y2="10" antialias="false" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5"/>
|
||||
<line length2="1.5" y1="30" x2="200" y2="-38" antialias="false" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5"/>
|
||||
<line length2="1.5" y1="-10" x2="358" y2="-10" antialias="false" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" length1="1.5"/>
|
||||
<text text="WAGO 750-8213" color="#000000" x="-329" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="105"/>
|
||||
<text text="PE" color="#000000" x="281" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-22"/>
|
||||
<text text="PE" color="#000000" x="201" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-22"/>
|
||||
<text text="0V" color="#000000" x="-199" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-22"/>
|
||||
<text text="24V" color="#000000" x="-279" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-22"/>
|
||||
<text text="−" color="#000000" x="123" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" y="-22"/>
|
||||
<text text="−" color="#000000" x="43" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" y="-22"/>
|
||||
<text text="+" color="#000000" x="-39" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" y="-22"/>
|
||||
<text text="+" color="#000000" x="-119" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" y="-22"/>
|
||||
<text text="Eth1" color="#000000" x="-355" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="4"/>
|
||||
<dynamic_text uuid="{f9c410dc-59fe-458c-80bb-e4fea95d1ec6}" x="221" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" z="42" rotation="0" text_from="ElementInfo" Halignment="AlignLeft" text_width="-1" y="89.5">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text text="1" color="#000000" x="-276" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42"/>
|
||||
<text text="5" color="#000000" x="-195" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42"/>
|
||||
<text text="2" color="#000000" x="-115" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42"/>
|
||||
<text text="6" color="#000000" x="-35" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42"/>
|
||||
<text text="3" color="#000000" x="45" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42"/>
|
||||
<text text="7" color="#000000" x="125" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42"/>
|
||||
<text text="4" color="#000000" x="205" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42"/>
|
||||
<text text="8" color="#000000" x="285" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH CAN" color="#000000" x="-137" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="105"/>
|
||||
<text text="X1" color="#000000" x="-371" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="9"/>
|
||||
<text text="X2" color="#000000" x="-371" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="29"/>
|
||||
<text text="X4" color="#000000" x="-371" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="69"/>
|
||||
<arc x="360" angle="180" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" height="5" start="90" y="-12.5"/>
|
||||
<arc x="360" angle="180" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" height="5" start="90" y="7.5"/>
|
||||
<arc x="360" angle="180" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" height="5" start="90" y="27.5"/>
|
||||
<terminal uuid="{8c0da4de-d600-4fc2-9980-cd226a987670}" x="-280" orientation="n" name="" y="-40"/>
|
||||
<terminal uuid="{6c82450b-10ea-47cc-8d1b-b7934112e0a3}" x="360" orientation="e" name="" y="-10"/>
|
||||
<terminal uuid="{167a233d-ed9f-4125-8d7b-c63dd442c1c3}" x="-40" orientation="n" name="" y="-40"/>
|
||||
<terminal uuid="{e0d75c33-c385-4306-a6e8-bc0659e425dc}" x="360" orientation="e" name="" y="30"/>
|
||||
<terminal uuid="{47f0141b-b5f8-42bb-8484-87f87d895f9f}" x="-360" orientation="w" name="" y="20"/>
|
||||
<terminal uuid="{d11be8e8-b1b6-424d-a17e-c799416723a4}" x="280" orientation="n" name="" y="-40"/>
|
||||
<terminal uuid="{26f978a4-c79b-47e7-9d90-d37c8a6fb087}" x="200" orientation="n" name="" y="-40"/>
|
||||
<terminal uuid="{31130d4c-39f0-4176-9c57-99057be5c9cc}" x="40" orientation="n" name="" y="-40"/>
|
||||
<terminal uuid="{e79f59a1-bc2e-46e2-be3d-49c7b2655aa6}" x="-200" orientation="n" name="" y="-40"/>
|
||||
<terminal uuid="{9016e411-66b5-4f2f-8dfd-39694df50e0a}" x="-120" orientation="n" name="" y="-40"/>
|
||||
<terminal uuid="{2caac301-16be-478d-9c6c-b48bfe853248}" x="120" orientation="n" name="" y="-40"/>
|
||||
<terminal uuid="{c19901ed-a5e7-4889-ae79-9c6071f15f6b}" x="360" orientation="e" name="" y="10"/>
|
||||
<terminal uuid="{d3262b57-26f1-4f75-96a4-a6e089e7ee17}" x="-360" orientation="w" name="" y="0"/>
|
||||
<terminal uuid="{90d225a3-1468-43a8-b3ab-61a0a6d3f073}" x="-360" orientation="w" name="" y="60"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,102 +1,115 @@
|
||||
<definition hotspot_y="55" link_type="simple" version="0.60" type="element" width="730" hotspot_x="364" height="170">
|
||||
<definition version="0.80" hotspot_x="375" hotspot_y="55" width="740" type="element" link_type="simple" height="170">
|
||||
<names>
|
||||
<name lang="nl">750-8214</name>
|
||||
<name lang="de">750-8214</name>
|
||||
<name lang="ar">750-8214</name>
|
||||
<name lang="es">750-8214</name>
|
||||
<name lang="nl">750-8214</name>
|
||||
<name lang="it">750-8214</name>
|
||||
<name lang="fr">750-8214</name>
|
||||
<name lang="cs">750-8214</name>
|
||||
<name lang="pt">750-8214</name>
|
||||
<name lang="pl">750-8214</name>
|
||||
<name lang="de">750-8214</name>
|
||||
<name lang="el">750-8214</name>
|
||||
<name lang="en">750-8214</name>
|
||||
<name lang="ar">750-8214</name>
|
||||
<name lang="pl">750-8214</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8214</elementInformation>
|
||||
<elementInformation show="1" name="description">PFC200 CS 2ETH RS CAN</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-8214</elementInformation>
|
||||
<elementInformation name="description" show="1">PFC200 CS 2ETH RS CAN</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="150" width="720" ry="0"/>
|
||||
<circle x="-362.5" diameter="5" y="57.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="64"/>
|
||||
<input text="1000" tagg="none" size="9" rotate="true" x="-146" y="60"/>
|
||||
<circle x="-362.5" diameter="5" y="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="IP Adr. 2:" size="9" x="-303" y="25"/>
|
||||
<text text="IP Adr. 1:" size="9" x="-303" y="4"/>
|
||||
<circle x="-362.5" diameter="5" y="17.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Node ID:" size="9" x="-303" y="64"/>
|
||||
<text text="Mode:" size="9" x="-303" y="44"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="60"/>
|
||||
<input text="RS232 19.200 8N1" tagg="none" size="9" rotate="true" x="-247" y="40"/>
|
||||
<input text="192.168.0.1" tagg="none" size="9" rotate="true" x="-247" y="0"/>
|
||||
<input text="192.168.1.1" tagg="none" size="9" rotate="true" x="-247" y="21"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" length2="1.5" x1="40" length1="1.5" y2="-38"/>
|
||||
<text text="Serial" size="9" x="-355" y="44"/>
|
||||
<text text="CAN" size="9" x="-355" y="64"/>
|
||||
<text text="Eth2" size="9" x="-355" y="24"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" length2="1.5" x1="-40" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="200" length1="1.5" y2="30"/>
|
||||
<circle x="-362.5" diameter="5" y="-2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" length2="1.5" x1="120" length1="1.5" y2="-37"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="31.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" length2="1.5" x1="280" length1="1.5" y2="-37"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" length2="1.5" x1="-120" length1="1.5" y2="-38"/>
|
||||
<circle x="-42.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-122.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-202.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-282.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="277.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="197.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="117.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="37.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="40" length1="1.5" y2="10"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" length2="1.5" x1="200" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="-120" length1="1.5" y2="-10"/>
|
||||
<text text="WAGO 750-8214" size="9" x="-329" y="105"/>
|
||||
<text text="PE" size="9" x="281" y="-22"/>
|
||||
<text text="PE" size="9" x="201" y="-22"/>
|
||||
<text text="0V" size="9" x="-199" y="-22"/>
|
||||
<text text="24V" size="9" x="-279" y="-22"/>
|
||||
<text text="_" size="12" x="123" y="-31"/>
|
||||
<text text="_" size="12" x="43" y="-31"/>
|
||||
<text text="+" size="12" x="-39" y="-22"/>
|
||||
<text text="+" size="12" x="-119" y="-22"/>
|
||||
<text text="Eth1" size="9" x="-355" y="4"/>
|
||||
<input text="X123" tagg="label" size="9" rotate="true" x="221" y="101"/>
|
||||
<text text="1" size="5" x="-276" y="-42"/>
|
||||
<text text="5" size="5" x="-195" y="-42"/>
|
||||
<text text="2" size="5" x="-115" y="-42"/>
|
||||
<text text="6" size="5" x="-35" y="-42"/>
|
||||
<text text="3" size="5" x="45" y="-42"/>
|
||||
<text text="7" size="5" x="125" y="-42"/>
|
||||
<text text="4" size="5" x="205" y="-42"/>
|
||||
<text text="8" size="5" x="285" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH RS CAN" size="9" x="-137" y="105"/>
|
||||
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="49" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X3" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="69" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X4" x="-371" rotation="0" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal x="280" y="-40" orientation="n"/>
|
||||
<terminal x="200" y="-40" orientation="n"/>
|
||||
<terminal x="40" y="-40" orientation="n"/>
|
||||
<terminal x="-200" y="-40" orientation="n"/>
|
||||
<terminal x="-120" y="-40" orientation="n"/>
|
||||
<terminal x="120" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="10" orientation="e"/>
|
||||
<terminal x="-360" y="0" orientation="w"/>
|
||||
<terminal x="-280" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="-10" orientation="e"/>
|
||||
<terminal x="-360" y="40" orientation="w"/>
|
||||
<terminal x="-360" y="60" orientation="w"/>
|
||||
<terminal x="360" y="30" orientation="e"/>
|
||||
<terminal x="-360" y="20" orientation="w"/>
|
||||
<terminal x="-40" y="-40" orientation="n"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" x="-360" y="-40" antialias="false" width="720" ry="0" rx="0" height="150"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-362.5" y="57.5" antialias="true" diameter="5"/>
|
||||
<text color="#000000" x="-212" y="64" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="Baudrate:"/>
|
||||
<dynamic_text text_from="UserText" x="-146" Halignment="AlignLeft" z="4" y="48.5" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{4aabd91e-c52e-4ef1-b984-9b47ec2039d5}" frame="false" Valignment="AlignTop" rotation="0">
|
||||
<text>1000</text>
|
||||
</dynamic_text>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-362.5" y="37.5" antialias="true" diameter="5"/>
|
||||
<text color="#000000" x="-303" y="25" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="IP Adr. 2:"/>
|
||||
<text color="#000000" x="-303" y="4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="IP Adr. 1:"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-362.5" y="17.5" antialias="true" diameter="5"/>
|
||||
<text color="#000000" x="-303" y="64" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="Node ID:"/>
|
||||
<text color="#000000" x="-303" y="44" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="Mode:"/>
|
||||
<dynamic_text text_from="UserText" x="-247" Halignment="AlignLeft" z="11" y="48.5" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{85a45030-5412-4162-9feb-0421f99781ea}" frame="false" Valignment="AlignTop" rotation="0">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_from="UserText" x="-247" Halignment="AlignLeft" z="12" y="28.5" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{74f99e85-81b2-43a6-a7ce-585661a7e2ca}" frame="false" Valignment="AlignTop" rotation="0">
|
||||
<text>RS232 19.200 8N1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_from="UserText" x="-247" Halignment="AlignLeft" z="13" y="-11.5" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{a48eb793-23cb-4f95-b9a8-1a89c34d9da4}" frame="false" Valignment="AlignTop" rotation="0">
|
||||
<text>192.168.0.1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_from="UserText" x="-247" Halignment="AlignLeft" z="14" y="9.5" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{d5ec50a4-ea76-47f8-babf-1ab944def248}" frame="false" Valignment="AlignTop" rotation="0">
|
||||
<text>192.168.1.1</text>
|
||||
</dynamic_text>
|
||||
<line style="line-style:normal;line-weight:thin;filling:none;color:black" x1="40" length1="1.5" length2="1.5" antialias="false" x2="40" y2="-38" end2="none" y1="10" end1="none"/>
|
||||
<text color="#000000" x="-355" y="44" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="Serial"/>
|
||||
<text color="#000000" x="-355" y="64" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="CAN"/>
|
||||
<text color="#000000" x="-355" y="24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="Eth2"/>
|
||||
<line style="line-style:normal;line-weight:thin;filling:black;color:black" x1="-40" length1="1.5" length2="1.5" antialias="false" x2="-40" y2="-38" end2="none" y1="-8.5" end1="circle"/>
|
||||
<line style="line-style:normal;line-weight:thin;filling:none;color:black" x1="200" length1="1.5" length2="1.5" antialias="false" x2="358" y2="30" end2="none" y1="30" end1="none"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-362.5" y="-2.5" antialias="true" diameter="5"/>
|
||||
<line style="line-style:normal;line-weight:thin;filling:black;color:black" x1="120" length1="1.5" length2="1.5" antialias="false" x2="120" y2="-37" end2="none" y1="11" end1="circle"/>
|
||||
<line style="line-style:normal;line-weight:thin;filling:black;color:black" x1="280" length1="1.5" length2="1.5" antialias="false" x2="280" y2="-37" end2="none" y1="31.5" end1="circle"/>
|
||||
<line style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-120" length1="1.5" length2="1.5" antialias="false" x2="-120" y2="-38" end2="none" y1="-10" end1="none"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-42.5" y="-42.5" antialias="true" diameter="5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-122.5" y="-42.5" antialias="true" diameter="5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-202.5" y="-42.5" antialias="true" diameter="5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-282.5" y="-42.5" antialias="true" diameter="5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="277.5" y="-42.5" antialias="true" diameter="5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="197.5" y="-42.5" antialias="true" diameter="5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="117.5" y="-42.5" antialias="true" diameter="5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="37.5" y="-42.5" antialias="true" diameter="5"/>
|
||||
<line style="line-style:normal;line-weight:thin;filling:none;color:black" x1="40" length1="1.5" length2="1.5" antialias="false" x2="358" y2="10" end2="none" y1="10" end1="none"/>
|
||||
<line style="line-style:normal;line-weight:thin;filling:none;color:black" x1="200" length1="1.5" length2="1.5" antialias="false" x2="200" y2="-38" end2="none" y1="30" end1="none"/>
|
||||
<line style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-120" length1="1.5" length2="1.5" antialias="false" x2="358" y2="-10" end2="none" y1="-10" end1="none"/>
|
||||
<text color="#000000" x="-329" y="105" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="WAGO 750-8214"/>
|
||||
<text color="#000000" x="281" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="PE"/>
|
||||
<text color="#000000" x="201" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="PE"/>
|
||||
<text color="#000000" x="-199" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="0V"/>
|
||||
<text color="#000000" x="-279" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="24V"/>
|
||||
<text color="#000000" x="123" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="−"/>
|
||||
<text color="#000000" x="43" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="−"/>
|
||||
<text color="#000000" x="-39" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="+"/>
|
||||
<text color="#000000" x="-119" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" text="+"/>
|
||||
<text color="#000000" x="-355" y="4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="Eth1"/>
|
||||
<dynamic_text text_from="ElementInfo" x="221" Halignment="AlignLeft" z="46" y="89.5" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{e926cb27-d2b2-49b4-ba0e-21ab816dd31f}" frame="false" Valignment="AlignTop" rotation="0">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text color="#000000" x="-276" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="1"/>
|
||||
<text color="#000000" x="-195" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="5"/>
|
||||
<text color="#000000" x="-115" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="2"/>
|
||||
<text color="#000000" x="-35" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="6"/>
|
||||
<text color="#000000" x="45" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="3"/>
|
||||
<text color="#000000" x="125" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="7"/>
|
||||
<text color="#000000" x="205" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="4"/>
|
||||
<text color="#000000" x="285" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="8"/>
|
||||
<text color="#000000" x="-137" y="105" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text="PFC200 CS 2ETH RS CAN"/>
|
||||
<text color="#000000" x="-371" y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="X1"/>
|
||||
<text color="#000000" x="-371" y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="X2"/>
|
||||
<text color="#000000" x="-371" y="49" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="X3"/>
|
||||
<text color="#000000" x="-371" y="69" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" text="X4"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" x="360" y="-12.5" angle="180" antialias="true" width="5" start="90" height="5"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" x="360" y="7.5" angle="180" antialias="true" width="5" start="90" height="5"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" x="360" y="27.5" angle="180" antialias="true" width="5" start="90" height="5"/>
|
||||
<terminal x="280" name="" y="-40" orientation="n" uuid="{87c7e759-b050-48a8-852a-00a6890f863e}"/>
|
||||
<terminal x="200" name="" y="-40" orientation="n" uuid="{ebad3870-a13e-413e-bc5e-ff65963ede82}"/>
|
||||
<terminal x="40" name="" y="-40" orientation="n" uuid="{6409e8bc-20ba-4503-8375-b3569759dba9}"/>
|
||||
<terminal x="-200" name="" y="-40" orientation="n" uuid="{405ab3ef-2484-46df-914d-f57c5a017eb0}"/>
|
||||
<terminal x="-120" name="" y="-40" orientation="n" uuid="{3ee295ff-3692-4cab-959c-bb708ba74cb5}"/>
|
||||
<terminal x="120" name="" y="-40" orientation="n" uuid="{c2243197-198b-4b06-9e6b-567e1f8b541c}"/>
|
||||
<terminal x="360" name="" y="10" orientation="e" uuid="{7647656d-cbd9-47b2-afcb-92d3ec0760eb}"/>
|
||||
<terminal x="-360" name="" y="0" orientation="w" uuid="{29393fd5-1597-45d0-9224-48fb804f9870}"/>
|
||||
<terminal x="-280" name="" y="-40" orientation="n" uuid="{94fd6c24-6409-46be-9c7e-1d145eb231e2}"/>
|
||||
<terminal x="360" name="" y="-10" orientation="e" uuid="{d0d9c07b-8534-4d1b-a48e-60368183d912}"/>
|
||||
<terminal x="-360" name="" y="40" orientation="w" uuid="{0f7e408c-d8a6-4332-80cb-b42830d824d4}"/>
|
||||
<terminal x="-360" name="" y="60" orientation="w" uuid="{286503ea-a536-4089-a8b9-9624aae87a92}"/>
|
||||
<terminal x="360" name="" y="30" orientation="e" uuid="{3e799010-1de2-4b4a-8ebf-798d01f6c257}"/>
|
||||
<terminal x="-360" name="" y="20" orientation="w" uuid="{aca20b7e-5b71-44e0-9605-b00a1aa63283}"/>
|
||||
<terminal x="-40" name="" y="-40" orientation="n" uuid="{6aeb3210-b80c-47cd-9d3e-59d57181aa30}"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition height="190" version="0.80" width="730" hotspot_x="364" link_type="simple" type="element" hotspot_y="55">
|
||||
<definition height="190" version="0.80" width="740" hotspot_x="375" link_type="simple" type="element" hotspot_y="55">
|
||||
<names>
|
||||
<name lang="it">750-8215</name>
|
||||
<name lang="en">750-8215</name>
|
||||
@@ -79,8 +79,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text rotation="0" x="201" text="PE" color="#000000" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" x="-199" text="0V" color="#000000" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" x="-279" text="24V" color="#000000" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" x="123" text="_" color="#000000" y="-31" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" x="43" text="_" color="#000000" y="-31" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" x="123" text="−" color="#000000" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" x="43" text="−" color="#000000" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" x="-39" text="+" color="#000000" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" x="-119" text="+" color="#000000" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0"/>
|
||||
<text rotation="0" x="-355" text="Eth1" color="#000000" y="4" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
|
||||
@@ -1,110 +1,127 @@
|
||||
<definition hotspot_y="55" link_type="simple" version="0.60" type="element" width="730" hotspot_x="364" height="170">
|
||||
<definition link_type="simple" height="170" hotspot_x="375" hotspot_y="55" version="0.80" type="element" width="740">
|
||||
<names>
|
||||
<name lang="nl">750-8216</name>
|
||||
<name lang="es">750-8216</name>
|
||||
<name lang="de">750-8216</name>
|
||||
<name lang="it">750-8216</name>
|
||||
<name lang="fr">750-8216</name>
|
||||
<name lang="cs">750-8216</name>
|
||||
<name lang="pt">750-8216</name>
|
||||
<name lang="pl">750-8216</name>
|
||||
<name lang="de">750-8216</name>
|
||||
<name lang="el">750-8216</name>
|
||||
<name lang="nl">750-8216</name>
|
||||
<name lang="en">750-8216</name>
|
||||
<name lang="pt">750-8216</name>
|
||||
<name lang="es">750-8216</name>
|
||||
<name lang="cs">750-8216</name>
|
||||
<name lang="ar">750-8216</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8216</elementInformation>
|
||||
<elementInformation show="1" name="description">PFC200 CS 2ETH RS CAN DPS</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-8216</elementInformation>
|
||||
<elementInformation name="description" show="1">PFC200 CS 2ETH RS CAN DPS</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="150" width="720" ry="0"/>
|
||||
<circle x="-362.5" diameter="5" y="77.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-362.5" diameter="5" y="57.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="84"/>
|
||||
<input text="1000" tagg="none" size="9" rotate="true" x="-146" y="60"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="64"/>
|
||||
<input text="12.000" tagg="none" size="9" rotate="true" x="-146" y="80"/>
|
||||
<circle x="-362.5" diameter="5" y="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="IP Adr. 2:" size="9" x="-303" y="25"/>
|
||||
<text text="IP Adr. 1:" size="9" x="-303" y="4"/>
|
||||
<circle x="-362.5" diameter="5" y="17.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Node ID:" size="9" x="-303" y="64"/>
|
||||
<text text="Mode:" size="9" x="-303" y="44"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="60"/>
|
||||
<input text="RS232 19.200 8N1" tagg="none" size="9" rotate="true" x="-247" y="40"/>
|
||||
<input text="192.168.0.1" tagg="none" size="9" rotate="true" x="-247" y="0"/>
|
||||
<input text="192.168.1.1" tagg="none" size="9" rotate="true" x="-247" y="21"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" length2="1.5" x1="40" length1="1.5" y2="-38"/>
|
||||
<text text="DP" size="9" x="-355" y="84"/>
|
||||
<text text="Serial" size="9" x="-355" y="44"/>
|
||||
<text text="CAN" size="9" x="-355" y="64"/>
|
||||
<text text="Eth2" size="9" x="-355" y="24"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" length2="1.5" x1="-40" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="200" length1="1.5" y2="30"/>
|
||||
<circle x="-362.5" diameter="5" y="-2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" length2="1.5" x1="120" length1="1.5" y2="-37"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="31.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" length2="1.5" x1="280" length1="1.5" y2="-37"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" length2="1.5" x1="-120" length1="1.5" y2="-38"/>
|
||||
<circle x="-42.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-122.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-202.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-282.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="277.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="197.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="117.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="37.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="40" length1="1.5" y2="10"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" length2="1.5" x1="200" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="-120" length1="1.5" y2="-10"/>
|
||||
<text text="WAGO 750-8216" size="9" x="-329" y="105"/>
|
||||
<text text="DP Adr.:" size="9" x="-303" y="84"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="80"/>
|
||||
<text text="PE" size="9" x="281" y="-22"/>
|
||||
<text text="PE" size="9" x="201" y="-22"/>
|
||||
<text text="0V" size="9" x="-199" y="-22"/>
|
||||
<text text="24V" size="9" x="-279" y="-22"/>
|
||||
<text text="_" size="12" x="123" y="-31"/>
|
||||
<text text="_" size="12" x="43" y="-31"/>
|
||||
<text text="+" size="12" x="-39" y="-22"/>
|
||||
<text text="+" size="12" x="-119" y="-22"/>
|
||||
<text text="Eth1" size="9" x="-355" y="4"/>
|
||||
<input text="X123" tagg="label" size="9" rotate="true" x="221" y="101"/>
|
||||
<text text="1" size="5" x="-276" y="-42"/>
|
||||
<text text="5" size="5" x="-195" y="-42"/>
|
||||
<text text="2" size="5" x="-115" y="-42"/>
|
||||
<text text="6" size="5" x="-35" y="-42"/>
|
||||
<text text="3" size="5" x="45" y="-42"/>
|
||||
<text text="7" size="5" x="125" y="-42"/>
|
||||
<text text="4" size="5" x="205" y="-42"/>
|
||||
<text text="8" size="5" x="285" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH RS CAN DPS" size="9" x="-137" y="105"/>
|
||||
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="49" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X3" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="69" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X4" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="89" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X5" x="-371" rotation="0" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal x="-40" y="-40" orientation="n"/>
|
||||
<terminal x="-360" y="0" orientation="w"/>
|
||||
<terminal x="280" y="-40" orientation="n"/>
|
||||
<terminal x="200" y="-40" orientation="n"/>
|
||||
<terminal x="40" y="-40" orientation="n"/>
|
||||
<terminal x="-200" y="-40" orientation="n"/>
|
||||
<terminal x="-120" y="-40" orientation="n"/>
|
||||
<terminal x="120" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="10" orientation="e"/>
|
||||
<terminal x="-280" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="-10" orientation="e"/>
|
||||
<terminal x="360" y="30" orientation="e"/>
|
||||
<terminal x="-360" y="20" orientation="w"/>
|
||||
<terminal x="-360" y="40" orientation="w"/>
|
||||
<terminal x="-360" y="60" orientation="w"/>
|
||||
<terminal x="-360" y="80" orientation="w"/>
|
||||
<rect height="150" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-360" antialias="false" width="720" rx="0" ry="0" y="-40"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true" y="77.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true" y="57.5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Baudrate:" x="-212" rotation="0" color="#000000" y="84"/>
|
||||
<dynamic_text z="5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-146" text_from="UserText" rotation="0" frame="false" Halignment="AlignLeft" uuid="{3204a912-a7ab-4920-8ede-ea3cf6be180c}" y="48.5" Valignment="AlignTop" text_width="-1">
|
||||
<text>1000</text>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Baudrate:" x="-212" rotation="0" color="#000000" y="64"/>
|
||||
<dynamic_text z="7" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-146" text_from="UserText" rotation="0" frame="false" Halignment="AlignLeft" uuid="{fe0fd98f-fa83-497a-b9a7-8601aa93e3b0}" y="68.5" Valignment="AlignTop" text_width="-1">
|
||||
<text>12.000</text>
|
||||
</dynamic_text>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true" y="37.5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="IP Adr. 2:" x="-303" rotation="0" color="#000000" y="25"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="IP Adr. 1:" x="-303" rotation="0" color="#000000" y="4"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true" y="17.5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Node ID:" x="-303" rotation="0" color="#000000" y="64"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Mode:" x="-303" rotation="0" color="#000000" y="44"/>
|
||||
<dynamic_text z="14" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-247" text_from="UserText" rotation="0" frame="false" Halignment="AlignLeft" uuid="{13578b95-421e-4b75-b500-28c5d7aa9b92}" y="48.5" Valignment="AlignTop" text_width="-1">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text z="15" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-247" text_from="UserText" rotation="0" frame="false" Halignment="AlignLeft" uuid="{d7961a69-0af9-4fe5-8bcd-ce23a365323c}" y="28.5" Valignment="AlignTop" text_width="-1">
|
||||
<text>RS232 19.200 8N1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text z="16" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-247" text_from="UserText" rotation="0" frame="false" Halignment="AlignLeft" uuid="{ed8c363e-a080-4146-889b-e94780ea780d}" y="-11.5" Valignment="AlignTop" text_width="-1">
|
||||
<text>192.168.0.1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text z="17" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-247" text_from="UserText" rotation="0" frame="false" Halignment="AlignLeft" uuid="{77b834e1-32bd-4ef7-a35f-0414d1c0424f}" y="9.5" Valignment="AlignTop" text_width="-1">
|
||||
<text>192.168.1.1</text>
|
||||
</dynamic_text>
|
||||
<line end2="none" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-38" end1="none" antialias="false" y1="10" x2="40" length1="1.5" length2="1.5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DP" x="-355" rotation="0" color="#000000" y="84"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Serial" x="-355" rotation="0" color="#000000" y="44"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="CAN" x="-355" rotation="0" color="#000000" y="64"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Eth2" x="-355" rotation="0" color="#000000" y="24"/>
|
||||
<line end2="none" x1="-40" style="line-style:normal;line-weight:thin;filling:black;color:black" y2="-38" end1="circle" antialias="false" y1="-8.5" x2="-40" length1="1.5" length2="1.5"/>
|
||||
<line end2="none" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="30" end1="none" antialias="false" y1="30" x2="358" length1="1.5" length2="1.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true" y="-2.5"/>
|
||||
<line end2="none" x1="120" style="line-style:normal;line-weight:thin;filling:black;color:black" y2="-37" end1="circle" antialias="false" y1="11" x2="120" length1="1.5" length2="1.5"/>
|
||||
<line end2="none" x1="280" style="line-style:normal;line-weight:thin;filling:black;color:black" y2="-37" end1="circle" antialias="false" y1="31.5" x2="280" length1="1.5" length2="1.5"/>
|
||||
<line end2="none" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-38" end1="none" antialias="false" y1="-10" x2="-120" length1="1.5" length2="1.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-42.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-122.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-202.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-282.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="277.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="197.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="117.5" antialias="true" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="37.5" antialias="true" y="-42.5"/>
|
||||
<line end2="none" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="10" end1="none" antialias="false" y1="10" x2="358" length1="1.5" length2="1.5"/>
|
||||
<line end2="none" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-38" end1="none" antialias="false" y1="30" x2="200" length1="1.5" length2="1.5"/>
|
||||
<line end2="none" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-10" end1="none" antialias="false" y1="-10" x2="358" length1="1.5" length2="1.5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="WAGO 750-8216" x="-329" rotation="0" color="#000000" y="105"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DP Adr.:" x="-303" rotation="0" color="#000000" y="84"/>
|
||||
<dynamic_text z="42" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-247" text_from="UserText" rotation="0" frame="false" Halignment="AlignLeft" uuid="{7f2e4e2a-7761-49dd-86b2-4b1810310528}" y="68.5" Valignment="AlignTop" text_width="-1">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PE" x="281" rotation="0" color="#000000" y="-22"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PE" x="201" rotation="0" color="#000000" y="-22"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" x="-199" rotation="0" color="#000000" y="-22"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" x="-279" rotation="0" color="#000000" y="-22"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" x="123" rotation="0" color="#000000" y="-22"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" x="43" rotation="0" color="#000000" y="-22"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" x="-39" rotation="0" color="#000000" y="-22"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" x="-119" rotation="0" color="#000000" y="-22"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Eth1" x="-355" rotation="0" color="#000000" y="4"/>
|
||||
<dynamic_text z="52" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="221" text_from="ElementInfo" rotation="0" frame="false" Halignment="AlignLeft" uuid="{3c26ee33-7182-40c1-afca-72c9fff9ee73}" y="89.5" Valignment="AlignTop" text_width="-1">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="1" x="-276" rotation="0" color="#000000" y="-42"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="5" x="-195" rotation="0" color="#000000" y="-42"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="2" x="-115" rotation="0" color="#000000" y="-42"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="6" x="-35" rotation="0" color="#000000" y="-42"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="3" x="45" rotation="0" color="#000000" y="-42"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="7" x="125" rotation="0" color="#000000" y="-42"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="4" x="205" rotation="0" color="#000000" y="-42"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="8" x="285" rotation="0" color="#000000" y="-42"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PFC200 CS 2ETH RS CAN DPS" x="-137" rotation="0" color="#000000" y="105"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000" y="9"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000" y="29"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X3" x="-371" rotation="0" color="#000000" y="49"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X4" x="-371" rotation="0" color="#000000" y="69"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X5" x="-371" rotation="0" color="#000000" y="89"/>
|
||||
<arc height="5" style="line-style:normal;line-weight:normal;filling:white;color:black" start="90" x="360" antialias="true" width="5" angle="180" y="-12.5"/>
|
||||
<arc height="5" style="line-style:normal;line-weight:normal;filling:white;color:black" start="90" x="360" antialias="true" width="5" angle="180" y="7.5"/>
|
||||
<arc height="5" style="line-style:normal;line-weight:normal;filling:white;color:black" start="90" x="360" antialias="true" width="5" angle="180" y="27.5"/>
|
||||
<terminal name="" x="-40" orientation="n" uuid="{8271e2b4-f9bb-4a43-aac2-1a00f4508123}" y="-40"/>
|
||||
<terminal name="" x="-360" orientation="w" uuid="{1f2c3847-2e50-4f7c-9d94-839686046198}" y="0"/>
|
||||
<terminal name="" x="280" orientation="n" uuid="{e26417b7-d89f-4de6-881c-10fedfc1edfe}" y="-40"/>
|
||||
<terminal name="" x="200" orientation="n" uuid="{a51790c4-aaad-4a4f-bbb7-1408b6fd6eb7}" y="-40"/>
|
||||
<terminal name="" x="40" orientation="n" uuid="{918b5f70-0314-4ca9-9e1e-2e6214a2ce48}" y="-40"/>
|
||||
<terminal name="" x="-200" orientation="n" uuid="{53556610-8188-48e6-a7b0-c62f008a2098}" y="-40"/>
|
||||
<terminal name="" x="-120" orientation="n" uuid="{3d390f18-b931-42bf-aa10-5720faf6ba2e}" y="-40"/>
|
||||
<terminal name="" x="120" orientation="n" uuid="{9aae34ee-6b43-4bc4-8c46-68b47aa7c748}" y="-40"/>
|
||||
<terminal name="" x="360" orientation="e" uuid="{2ae8f2fe-1756-4c69-8562-1507fb980c1a}" y="10"/>
|
||||
<terminal name="" x="-280" orientation="n" uuid="{fd22f0bc-39ad-475f-bf8c-a69484a4c642}" y="-40"/>
|
||||
<terminal name="" x="360" orientation="e" uuid="{b5700495-3845-4dcf-87ec-047a15d01a42}" y="-10"/>
|
||||
<terminal name="" x="360" orientation="e" uuid="{fc3fe71b-bafa-4fd9-aa65-bd01c4115ebb}" y="30"/>
|
||||
<terminal name="" x="-360" orientation="w" uuid="{4117f91b-7ee9-4594-bb6e-9f2850e80f7a}" y="20"/>
|
||||
<terminal name="" x="-360" orientation="w" uuid="{599da275-4481-48df-acad-1d37c012dafb}" y="40"/>
|
||||
<terminal name="" x="-360" orientation="w" uuid="{761958f0-9120-4ef0-b65c-066f5c868a23}" y="60"/>
|
||||
<terminal name="" x="-360" orientation="w" uuid="{c950cb53-54e0-430c-9767-58e469d8ac85}" y="80"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,110 +1,127 @@
|
||||
<definition hotspot_y="55" link_type="simple" version="0.60" type="element" width="730" hotspot_x="364" height="170">
|
||||
<definition type="element" height="170" width="740" hotspot_y="55" link_type="simple" hotspot_x="375" version="0.80">
|
||||
<names>
|
||||
<name lang="nl">750-8216/025-000</name>
|
||||
<name lang="pl">750-8216/025-000</name>
|
||||
<name lang="pt">750-8216/025-000</name>
|
||||
<name lang="de">750-8216/025-000</name>
|
||||
<name lang="es">750-8216/025-000</name>
|
||||
<name lang="it">750-8216/025-000</name>
|
||||
<name lang="ar">750-8216/025-000</name>
|
||||
<name lang="nl">750-8216/025-000</name>
|
||||
<name lang="fr">750-8216/025-000</name>
|
||||
<name lang="cs">750-8216/025-000</name>
|
||||
<name lang="pt">750-8216/025-000</name>
|
||||
<name lang="pl">750-8216/025-000</name>
|
||||
<name lang="de">750-8216/025-000</name>
|
||||
<name lang="el">750-8216/025-000</name>
|
||||
<name lang="en">750-8216/025-000</name>
|
||||
<name lang="ar">750-8216/025-000</name>
|
||||
<name lang="it">750-8216/025-000</name>
|
||||
<name lang="el">750-8216/025-000</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8216/025-000</elementInformation>
|
||||
<elementInformation show="1" name="description">PFC200 CS 2ETH RS CAN DPS T</elementInformation>
|
||||
<elementInformation name="description" show="1">PFC200 CS 2ETH RS CAN DPS T</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-8216/025-000</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="150" width="720" ry="0"/>
|
||||
<circle x="-362.5" diameter="5" y="77.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-362.5" diameter="5" y="57.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="84"/>
|
||||
<input text="1000" tagg="none" size="9" rotate="true" x="-146" y="60"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="64"/>
|
||||
<input text="12.000" tagg="none" size="9" rotate="true" x="-146" y="80"/>
|
||||
<circle x="-362.5" diameter="5" y="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="IP Adr. 2:" size="9" x="-303" y="25"/>
|
||||
<text text="IP Adr. 1:" size="9" x="-303" y="4"/>
|
||||
<circle x="-362.5" diameter="5" y="17.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Node ID:" size="9" x="-303" y="64"/>
|
||||
<text text="Mode:" size="9" x="-303" y="44"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="60"/>
|
||||
<input text="RS232 19.200 8N1" tagg="none" size="9" rotate="true" x="-247" y="40"/>
|
||||
<input text="192.168.0.1" tagg="none" size="9" rotate="true" x="-247" y="0"/>
|
||||
<input text="192.168.1.1" tagg="none" size="9" rotate="true" x="-247" y="21"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" length2="1.5" x1="40" length1="1.5" y2="-38"/>
|
||||
<text text="DP" size="9" x="-355" y="84"/>
|
||||
<text text="Serial" size="9" x="-355" y="44"/>
|
||||
<text text="CAN" size="9" x="-355" y="64"/>
|
||||
<text text="Eth2" size="9" x="-355" y="24"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" length2="1.5" x1="-40" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="200" length1="1.5" y2="30"/>
|
||||
<circle x="-362.5" diameter="5" y="-2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" length2="1.5" x1="120" length1="1.5" y2="-37"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="31.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" length2="1.5" x1="280" length1="1.5" y2="-37"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" length2="1.5" x1="-120" length1="1.5" y2="-38"/>
|
||||
<circle x="-42.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-122.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-202.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-282.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="277.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="197.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="117.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="37.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="40" length1="1.5" y2="10"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" length2="1.5" x1="200" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="-120" length1="1.5" y2="-10"/>
|
||||
<text text="WAGO 750-8216/025-000" size="9" x="-329" y="105"/>
|
||||
<text text="DP Adr.:" size="9" x="-303" y="84"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="80"/>
|
||||
<text text="PE" size="9" x="281" y="-22"/>
|
||||
<text text="PE" size="9" x="201" y="-22"/>
|
||||
<text text="0V" size="9" x="-199" y="-22"/>
|
||||
<text text="24V" size="9" x="-279" y="-22"/>
|
||||
<text text="_" size="12" x="123" y="-31"/>
|
||||
<text text="_" size="12" x="43" y="-31"/>
|
||||
<text text="+" size="12" x="-39" y="-22"/>
|
||||
<text text="+" size="12" x="-119" y="-22"/>
|
||||
<text text="Eth1" size="9" x="-355" y="4"/>
|
||||
<input text="X123" tagg="label" size="9" rotate="true" x="221" y="101"/>
|
||||
<text text="1" size="5" x="-276" y="-42"/>
|
||||
<text text="5" size="5" x="-195" y="-42"/>
|
||||
<text text="2" size="5" x="-115" y="-42"/>
|
||||
<text text="6" size="5" x="-35" y="-42"/>
|
||||
<text text="3" size="5" x="45" y="-42"/>
|
||||
<text text="7" size="5" x="125" y="-42"/>
|
||||
<text text="4" size="5" x="205" y="-42"/>
|
||||
<text text="8" size="5" x="285" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH RS CAN DPS T" size="9" x="-137" y="105"/>
|
||||
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="49" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X3" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="69" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X4" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="89" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X5" x="-371" rotation="0" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal x="-40" y="-40" orientation="n"/>
|
||||
<terminal x="-360" y="0" orientation="w"/>
|
||||
<terminal x="280" y="-40" orientation="n"/>
|
||||
<terminal x="200" y="-40" orientation="n"/>
|
||||
<terminal x="40" y="-40" orientation="n"/>
|
||||
<terminal x="-200" y="-40" orientation="n"/>
|
||||
<terminal x="-120" y="-40" orientation="n"/>
|
||||
<terminal x="120" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="10" orientation="e"/>
|
||||
<terminal x="-280" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="-10" orientation="e"/>
|
||||
<terminal x="360" y="30" orientation="e"/>
|
||||
<terminal x="-360" y="20" orientation="w"/>
|
||||
<terminal x="-360" y="40" orientation="w"/>
|
||||
<terminal x="-360" y="60" orientation="w"/>
|
||||
<terminal x="-360" y="80" orientation="w"/>
|
||||
<rect x="-360" y="-40" ry="0" style="line-style:normal;line-weight:normal;filling:white;color:black" height="150" width="720" antialias="false" rx="0"/>
|
||||
<circle x="-362.5" y="77.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="-362.5" y="57.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<text x="-212" y="84" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="Baudrate:" rotation="0"/>
|
||||
<dynamic_text text_width="-1" Halignment="AlignLeft" Valignment="AlignTop" z="5" x="-146" y="48.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="UserText" rotation="0" frame="false" uuid="{1eaffeae-3011-4560-a3be-f16a7e6817c7}">
|
||||
<text>1000</text>
|
||||
</dynamic_text>
|
||||
<text x="-212" y="64" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="Baudrate:" rotation="0"/>
|
||||
<dynamic_text text_width="-1" Halignment="AlignLeft" Valignment="AlignTop" z="7" x="-146" y="68.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="UserText" rotation="0" frame="false" uuid="{765c6d12-6b18-4b6a-b37b-3ea38982d586}">
|
||||
<text>12.000</text>
|
||||
</dynamic_text>
|
||||
<circle x="-362.5" y="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<text x="-303" y="25" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="IP Adr. 2:" rotation="0"/>
|
||||
<text x="-303" y="4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="IP Adr. 1:" rotation="0"/>
|
||||
<circle x="-362.5" y="17.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<text x="-303" y="64" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="Node ID:" rotation="0"/>
|
||||
<text x="-303" y="44" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="Mode:" rotation="0"/>
|
||||
<dynamic_text text_width="-1" Halignment="AlignLeft" Valignment="AlignTop" z="14" x="-247" y="48.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="UserText" rotation="0" frame="false" uuid="{6c3df84a-cd5a-4111-9bb9-d7e0665fd878}">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" Halignment="AlignLeft" Valignment="AlignTop" z="15" x="-247" y="28.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="UserText" rotation="0" frame="false" uuid="{b6393c53-6f6c-43fa-9b4b-ba5995af6487}">
|
||||
<text>RS232 19.200 8N1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" Halignment="AlignLeft" Valignment="AlignTop" z="16" x="-247" y="-11.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="UserText" rotation="0" frame="false" uuid="{d36447b4-16ca-42e4-a166-458426bfa0ff}">
|
||||
<text>192.168.0.1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text text_width="-1" Halignment="AlignLeft" Valignment="AlignTop" z="17" x="-247" y="9.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="UserText" rotation="0" frame="false" uuid="{8801f2d6-767d-4812-91c1-bc00cd6834d2}">
|
||||
<text>192.168.1.1</text>
|
||||
</dynamic_text>
|
||||
<line y2="-38" x1="40" y1="10" end1="none" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" length1="1.5" antialias="false" length2="1.5"/>
|
||||
<text x="-355" y="84" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="DP" rotation="0"/>
|
||||
<text x="-355" y="44" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="Serial" rotation="0"/>
|
||||
<text x="-355" y="64" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="CAN" rotation="0"/>
|
||||
<text x="-355" y="24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="Eth2" rotation="0"/>
|
||||
<line y2="-38" x1="-40" y1="-8.5" end1="circle" end2="none" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" length1="1.5" antialias="false" length2="1.5"/>
|
||||
<line y2="30" x1="200" y1="30" end1="none" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length1="1.5" antialias="false" length2="1.5"/>
|
||||
<circle x="-362.5" y="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<line y2="-37" x1="120" y1="11" end1="circle" end2="none" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" length1="1.5" antialias="false" length2="1.5"/>
|
||||
<line y2="-37" x1="280" y1="31.5" end1="circle" end2="none" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" length1="1.5" antialias="false" length2="1.5"/>
|
||||
<line y2="-38" x1="-120" y1="-10" end1="none" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" length1="1.5" antialias="false" length2="1.5"/>
|
||||
<circle x="-42.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="-122.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="-202.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="-282.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="277.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="197.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="117.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="37.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
|
||||
<line y2="10" x1="40" y1="10" end1="none" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length1="1.5" antialias="false" length2="1.5"/>
|
||||
<line y2="-38" x1="200" y1="30" end1="none" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" length1="1.5" antialias="false" length2="1.5"/>
|
||||
<line y2="-10" x1="-120" y1="-10" end1="none" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length1="1.5" antialias="false" length2="1.5"/>
|
||||
<text x="-329" y="105" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="WAGO 750-8216/025-000" rotation="0"/>
|
||||
<text x="-303" y="84" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="DP Adr.:" rotation="0"/>
|
||||
<dynamic_text text_width="-1" Halignment="AlignLeft" Valignment="AlignTop" z="42" x="-247" y="68.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="UserText" rotation="0" frame="false" uuid="{fea77828-ec06-4341-94e7-5ee1e5a8cdba}">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<text x="281" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="PE" rotation="0"/>
|
||||
<text x="201" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="PE" rotation="0"/>
|
||||
<text x="-199" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="0V" rotation="0"/>
|
||||
<text x="-279" y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="24V" rotation="0"/>
|
||||
<text x="123" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" text="−" rotation="0"/>
|
||||
<text x="43" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" text="−" rotation="0"/>
|
||||
<text x="-39" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" text="+" rotation="0"/>
|
||||
<text x="-119" y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" text="+" rotation="0"/>
|
||||
<text x="-355" y="4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="Eth1" rotation="0"/>
|
||||
<dynamic_text text_width="-1" Halignment="AlignLeft" Valignment="AlignTop" z="52" x="221" y="89.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" rotation="0" frame="false" uuid="{33b404eb-f370-405b-8eb8-211aad5bd8d9}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="-276" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="1" rotation="0"/>
|
||||
<text x="-195" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="5" rotation="0"/>
|
||||
<text x="-115" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="2" rotation="0"/>
|
||||
<text x="-35" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="6" rotation="0"/>
|
||||
<text x="45" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="3" rotation="0"/>
|
||||
<text x="125" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="7" rotation="0"/>
|
||||
<text x="205" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="4" rotation="0"/>
|
||||
<text x="285" y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="8" rotation="0"/>
|
||||
<text x="-137" y="105" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" text="PFC200 CS 2ETH RS CAN DPS T" rotation="0"/>
|
||||
<text x="-371" y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="X1" rotation="0"/>
|
||||
<text x="-371" y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="X2" rotation="0"/>
|
||||
<text x="-371" y="49" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="X3" rotation="0"/>
|
||||
<text x="-371" y="69" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="X4" rotation="0"/>
|
||||
<text x="-371" y="89" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" text="X5" rotation="0"/>
|
||||
<arc x="360" y="-12.5" angle="180" style="line-style:normal;line-weight:normal;filling:white;color:black" height="5" width="5" antialias="true" start="90"/>
|
||||
<arc x="360" y="7.5" angle="180" style="line-style:normal;line-weight:normal;filling:white;color:black" height="5" width="5" antialias="true" start="90"/>
|
||||
<arc x="360" y="27.5" angle="180" style="line-style:normal;line-weight:normal;filling:white;color:black" height="5" width="5" antialias="true" start="90"/>
|
||||
<terminal orientation="n" name="" x="-40" y="-40" uuid="{fa788931-1d60-4b52-a5e8-1d6ef714ccaa}"/>
|
||||
<terminal orientation="w" name="" x="-360" y="0" uuid="{c548c1d1-9df4-4f0b-8c20-6b3bba33ac16}"/>
|
||||
<terminal orientation="n" name="" x="280" y="-40" uuid="{1016a5ba-3c48-4555-85e3-5f23f8b2f5c6}"/>
|
||||
<terminal orientation="n" name="" x="200" y="-40" uuid="{b3999c54-35a2-4202-9a69-b161ffb8f4a3}"/>
|
||||
<terminal orientation="n" name="" x="40" y="-40" uuid="{63f45eeb-fc38-4dc1-9fa7-59e6b3666d30}"/>
|
||||
<terminal orientation="n" name="" x="-200" y="-40" uuid="{1366736a-4aa2-4764-893e-070c15b6f005}"/>
|
||||
<terminal orientation="n" name="" x="-120" y="-40" uuid="{b779af8f-a47a-42d8-8fc5-c1dd87520dab}"/>
|
||||
<terminal orientation="n" name="" x="120" y="-40" uuid="{57e616eb-c112-453d-9193-b713fa34f9db}"/>
|
||||
<terminal orientation="e" name="" x="360" y="10" uuid="{4c97098e-3299-4780-b785-b589d5e0f944}"/>
|
||||
<terminal orientation="n" name="" x="-280" y="-40" uuid="{92033cb0-5dc5-4adf-a0bf-04359eb95a4e}"/>
|
||||
<terminal orientation="e" name="" x="360" y="-10" uuid="{67880372-5536-4fe9-957a-7ad889f88cef}"/>
|
||||
<terminal orientation="e" name="" x="360" y="30" uuid="{57633414-cd96-4922-9834-a875f87eff0f}"/>
|
||||
<terminal orientation="w" name="" x="-360" y="20" uuid="{33c6c095-99a4-4bfa-8ec0-4c641002fa4d}"/>
|
||||
<terminal orientation="w" name="" x="-360" y="40" uuid="{43c4928b-2c3b-4105-84aa-e4f2305fb16d}"/>
|
||||
<terminal orientation="w" name="" x="-360" y="60" uuid="{b78a5164-43df-44f6-9331-8d40aad71ba5}"/>
|
||||
<terminal orientation="w" name="" x="-360" y="80" uuid="{c32b581e-8e88-45df-b349-4099ccd14e26}"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,110 +1,127 @@
|
||||
<definition hotspot_y="55" link_type="simple" version="0.60" type="element" width="730" hotspot_x="364" height="170">
|
||||
<definition width="740" height="170" version="0.80" type="element" hotspot_y="55" hotspot_x="375" link_type="simple">
|
||||
<names>
|
||||
<name lang="nl">750-8216/025-001</name>
|
||||
<name lang="cs">750-8216/025-001</name>
|
||||
<name lang="es">750-8216/025-001</name>
|
||||
<name lang="it">750-8216/025-001</name>
|
||||
<name lang="fr">750-8216/025-001</name>
|
||||
<name lang="cs">750-8216/025-001</name>
|
||||
<name lang="el">750-8216/025-001</name>
|
||||
<name lang="ar">750-8216/025-001</name>
|
||||
<name lang="en">750-8216/025-001</name>
|
||||
<name lang="nl">750-8216/025-001</name>
|
||||
<name lang="pt">750-8216/025-001</name>
|
||||
<name lang="fr">750-8216/025-001</name>
|
||||
<name lang="pl">750-8216/025-001</name>
|
||||
<name lang="de">750-8216/025-001</name>
|
||||
<name lang="el">750-8216/025-001</name>
|
||||
<name lang="en">750-8216/025-001</name>
|
||||
<name lang="ar">750-8216/025-001</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-8216/025-001</elementInformation>
|
||||
<elementInformation show="1" name="description">PFC200 CS 2ETH RS CAN DPS Tele T</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-8216/025-001</elementInformation>
|
||||
<elementInformation name="description" show="1">PFC200 CS 2ETH RS CAN DPS Tele T</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="150" width="720" ry="0"/>
|
||||
<circle x="-362.5" diameter="5" y="77.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-362.5" diameter="5" y="57.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="84"/>
|
||||
<input text="1000" tagg="none" size="9" rotate="true" x="-146" y="60"/>
|
||||
<text text="Baudrate:" size="9" x="-212" y="64"/>
|
||||
<input text="12.000" tagg="none" size="9" rotate="true" x="-146" y="80"/>
|
||||
<circle x="-362.5" diameter="5" y="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="IP Adr. 2:" size="9" x="-303" y="25"/>
|
||||
<text text="IP Adr. 1:" size="9" x="-303" y="4"/>
|
||||
<circle x="-362.5" diameter="5" y="17.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<text text="Node ID:" size="9" x="-303" y="64"/>
|
||||
<text text="Mode:" size="9" x="-303" y="44"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="60"/>
|
||||
<input text="RS232 19.200 8N1" tagg="none" size="9" rotate="true" x="-247" y="40"/>
|
||||
<input text="192.168.0.1" tagg="none" size="9" rotate="true" x="-247" y="0"/>
|
||||
<input text="192.168.1.1" tagg="none" size="9" rotate="true" x="-247" y="21"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="40" length2="1.5" x1="40" length1="1.5" y2="-38"/>
|
||||
<text text="DP" size="9" x="-355" y="84"/>
|
||||
<text text="Serial" size="9" x="-355" y="44"/>
|
||||
<text text="CAN" size="9" x="-355" y="64"/>
|
||||
<text text="Eth2" size="9" x="-355" y="24"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="-40" length2="1.5" x1="-40" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="200" length1="1.5" y2="30"/>
|
||||
<circle x="-362.5" diameter="5" y="-2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="120" length2="1.5" x1="120" length1="1.5" y2="-37"/>
|
||||
<line end1="circle" end2="none" antialias="false" y1="31.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x2="280" length2="1.5" x1="280" length1="1.5" y2="-37"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="-120" length2="1.5" x1="-120" length1="1.5" y2="-38"/>
|
||||
<circle x="-42.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-122.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-202.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-282.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="277.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="197.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="117.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="37.5" diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="40" length1="1.5" y2="10"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="30" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="200" length2="1.5" x1="200" length1="1.5" y2="-38"/>
|
||||
<line end1="none" end2="none" antialias="false" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" x2="358" length2="1.5" x1="-120" length1="1.5" y2="-10"/>
|
||||
<text text="WAGO 750-8216/025-001" size="9" x="-329" y="105"/>
|
||||
<text text="DP Adr.:" size="9" x="-303" y="84"/>
|
||||
<input text="1" tagg="none" size="9" rotate="true" x="-247" y="80"/>
|
||||
<text text="PE" size="9" x="281" y="-22"/>
|
||||
<text text="PE" size="9" x="201" y="-22"/>
|
||||
<text text="0V" size="9" x="-199" y="-22"/>
|
||||
<text text="24V" size="9" x="-279" y="-22"/>
|
||||
<text text="_" size="12" x="123" y="-31"/>
|
||||
<text text="_" size="12" x="43" y="-31"/>
|
||||
<text text="+" size="12" x="-39" y="-22"/>
|
||||
<text text="+" size="12" x="-119" y="-22"/>
|
||||
<text text="Eth1" size="9" x="-355" y="4"/>
|
||||
<input text="X123" tagg="label" size="9" rotate="true" x="221" y="101"/>
|
||||
<text text="1" size="5" x="-276" y="-42"/>
|
||||
<text text="5" size="5" x="-195" y="-42"/>
|
||||
<text text="2" size="5" x="-115" y="-42"/>
|
||||
<text text="6" size="5" x="-35" y="-42"/>
|
||||
<text text="3" size="5" x="45" y="-42"/>
|
||||
<text text="7" size="5" x="125" y="-42"/>
|
||||
<text text="4" size="5" x="205" y="-42"/>
|
||||
<text text="8" size="5" x="285" y="-42"/>
|
||||
<text text="PFC200 CS 2ETH RS CAN DPS TELE T" size="9" x="-137" y="105"/>
|
||||
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="49" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X3" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="69" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X4" x="-371" rotation="0" color="#000000"/>
|
||||
<text y="89" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X5" x="-371" rotation="0" color="#000000"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal x="-40" y="-40" orientation="n"/>
|
||||
<terminal x="-360" y="0" orientation="w"/>
|
||||
<terminal x="280" y="-40" orientation="n"/>
|
||||
<terminal x="200" y="-40" orientation="n"/>
|
||||
<terminal x="40" y="-40" orientation="n"/>
|
||||
<terminal x="-200" y="-40" orientation="n"/>
|
||||
<terminal x="-120" y="-40" orientation="n"/>
|
||||
<terminal x="120" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="10" orientation="e"/>
|
||||
<terminal x="-280" y="-40" orientation="n"/>
|
||||
<terminal x="360" y="-10" orientation="e"/>
|
||||
<terminal x="360" y="30" orientation="e"/>
|
||||
<terminal x="-360" y="20" orientation="w"/>
|
||||
<terminal x="-360" y="40" orientation="w"/>
|
||||
<terminal x="-360" y="60" orientation="w"/>
|
||||
<terminal x="-360" y="80" orientation="w"/>
|
||||
<rect width="720" height="150" x="-360" rx="0" y="-40" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" ry="0"/>
|
||||
<circle x="-362.5" y="77.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<circle x="-362.5" y="57.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<text x="-212" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="84" text="Baudrate:" color="#000000"/>
|
||||
<dynamic_text x="-146" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" rotation="0" text_from="UserText" y="48.5" uuid="{9625a66a-9c79-4700-ace5-ca26f2f144d9}" z="5" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft">
|
||||
<text>1000</text>
|
||||
</dynamic_text>
|
||||
<text x="-212" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="64" text="Baudrate:" color="#000000"/>
|
||||
<dynamic_text x="-146" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" rotation="0" text_from="UserText" y="68.5" uuid="{2a86c479-7206-491d-b2c9-9990e487b2fb}" z="7" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft">
|
||||
<text>12.000</text>
|
||||
</dynamic_text>
|
||||
<circle x="-362.5" y="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<text x="-303" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="25" text="IP Adr. 2:" color="#000000"/>
|
||||
<text x="-303" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="4" text="IP Adr. 1:" color="#000000"/>
|
||||
<circle x="-362.5" y="17.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<text x="-303" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="64" text="Node ID:" color="#000000"/>
|
||||
<text x="-303" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="44" text="Mode:" color="#000000"/>
|
||||
<dynamic_text x="-247" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" rotation="0" text_from="UserText" y="48.5" uuid="{932a596e-1456-4795-8f91-c9ca9948dac0}" z="14" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-247" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" rotation="0" text_from="UserText" y="28.5" uuid="{edbf160c-3b0f-4191-8103-196786e58ec7}" z="15" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft">
|
||||
<text>RS232 19.200 8N1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-247" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" rotation="0" text_from="UserText" y="-11.5" uuid="{731b4599-601e-4c79-9557-6f9a4385d66e}" z="16" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft">
|
||||
<text>192.168.0.1</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="-247" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" rotation="0" text_from="UserText" y="9.5" uuid="{e46bd1c2-acf5-40e4-bbff-5c7cec49ca24}" z="17" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft">
|
||||
<text>192.168.1.1</text>
|
||||
</dynamic_text>
|
||||
<line end1="none" y1="10" length2="1.5" y2="-38" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x2="40" length1="1.5" end2="none"/>
|
||||
<text x="-355" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="84" text="DP" color="#000000"/>
|
||||
<text x="-355" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="44" text="Serial" color="#000000"/>
|
||||
<text x="-355" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="64" text="CAN" color="#000000"/>
|
||||
<text x="-355" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="24" text="Eth2" color="#000000"/>
|
||||
<line end1="circle" y1="-8.5" length2="1.5" y2="-38" x1="-40" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false" x2="-40" length1="1.5" end2="none"/>
|
||||
<line end1="none" y1="30" length2="1.5" y2="30" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x2="358" length1="1.5" end2="none"/>
|
||||
<circle x="-362.5" y="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<line end1="circle" y1="11" length2="1.5" y2="-37" x1="120" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false" x2="120" length1="1.5" end2="none"/>
|
||||
<line end1="circle" y1="31.5" length2="1.5" y2="-37" x1="280" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false" x2="280" length1="1.5" end2="none"/>
|
||||
<line end1="none" y1="-10" length2="1.5" y2="-38" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x2="-120" length1="1.5" end2="none"/>
|
||||
<circle x="-42.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<circle x="-122.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<circle x="-202.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<circle x="-282.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<circle x="277.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<circle x="197.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<circle x="117.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<circle x="37.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true"/>
|
||||
<line end1="none" y1="10" length2="1.5" y2="10" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x2="358" length1="1.5" end2="none"/>
|
||||
<line end1="none" y1="30" length2="1.5" y2="-38" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x2="200" length1="1.5" end2="none"/>
|
||||
<line end1="none" y1="-10" length2="1.5" y2="-10" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x2="358" length1="1.5" end2="none"/>
|
||||
<text x="-329" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="105" text="WAGO 750-8216/025-001" color="#000000"/>
|
||||
<text x="-303" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="84" text="DP Adr.:" color="#000000"/>
|
||||
<dynamic_text x="-247" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" rotation="0" text_from="UserText" y="68.5" uuid="{9e0083a6-da26-454e-a91f-bf770e922cb1}" z="42" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<text x="281" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-22" text="PE" color="#000000"/>
|
||||
<text x="201" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-22" text="PE" color="#000000"/>
|
||||
<text x="-199" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-22" text="0V" color="#000000"/>
|
||||
<text x="-279" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="-22" text="24V" color="#000000"/>
|
||||
<text x="123" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" y="-22" text="−" color="#000000"/>
|
||||
<text x="43" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" y="-22" text="−" color="#000000"/>
|
||||
<text x="-39" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" y="-22" text="+" color="#000000"/>
|
||||
<text x="-119" font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" y="-22" text="+" color="#000000"/>
|
||||
<text x="-355" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="4" text="Eth1" color="#000000"/>
|
||||
<dynamic_text x="221" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" rotation="0" text_from="ElementInfo" y="89.5" uuid="{22fdbbae-f316-41aa-9f74-a098d78e0e44}" z="52" Valignment="AlignTop" text_width="-1" Halignment="AlignLeft">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="-276" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="1" color="#000000"/>
|
||||
<text x="-195" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="5" color="#000000"/>
|
||||
<text x="-115" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="2" color="#000000"/>
|
||||
<text x="-35" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="6" color="#000000"/>
|
||||
<text x="45" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="3" color="#000000"/>
|
||||
<text x="125" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="7" color="#000000"/>
|
||||
<text x="205" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="4" color="#000000"/>
|
||||
<text x="285" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="8" color="#000000"/>
|
||||
<text x="-137" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="105" text="PFC200 CS 2ETH RS CAN DPS TELE T" color="#000000"/>
|
||||
<text x="-371" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="9" text="X1" color="#000000"/>
|
||||
<text x="-371" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="29" text="X2" color="#000000"/>
|
||||
<text x="-371" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="49" text="X3" color="#000000"/>
|
||||
<text x="-371" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="69" text="X4" color="#000000"/>
|
||||
<text x="-371" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="89" text="X5" color="#000000"/>
|
||||
<arc width="5" height="5" x="360" angle="180" y="-12.5" start="90" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<arc width="5" height="5" x="360" angle="180" y="7.5" start="90" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<arc width="5" height="5" x="360" angle="180" y="27.5" start="90" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<terminal name="" x="-40" orientation="n" y="-40" uuid="{d57011d2-5f1f-4fd5-b058-74e9a1d22e64}"/>
|
||||
<terminal name="" x="-360" orientation="w" y="0" uuid="{d61c14fd-4e7f-4469-bcb6-5b6d7f7863c0}"/>
|
||||
<terminal name="" x="280" orientation="n" y="-40" uuid="{415f6ae8-ac1e-4666-bc93-a13d9a017a4e}"/>
|
||||
<terminal name="" x="200" orientation="n" y="-40" uuid="{10a80f3d-02c3-4fbe-9b69-e9de43b249e9}"/>
|
||||
<terminal name="" x="40" orientation="n" y="-40" uuid="{6cebaeb5-38fe-485e-9f0e-2d571e92e699}"/>
|
||||
<terminal name="" x="-200" orientation="n" y="-40" uuid="{1b1fda28-304a-4e1f-96d8-f951582dbc27}"/>
|
||||
<terminal name="" x="-120" orientation="n" y="-40" uuid="{bb0abfe7-333e-44aa-a042-f1626c8622a6}"/>
|
||||
<terminal name="" x="120" orientation="n" y="-40" uuid="{97c708a2-57f0-4df3-a9da-d33fb047d9ff}"/>
|
||||
<terminal name="" x="360" orientation="e" y="10" uuid="{37cb1ca0-f16a-4722-9c4e-e22c574b8012}"/>
|
||||
<terminal name="" x="-280" orientation="n" y="-40" uuid="{73aa457a-6a83-4a5d-b02e-763d13ce8458}"/>
|
||||
<terminal name="" x="360" orientation="e" y="-10" uuid="{d1946f44-55a9-4cff-9ea5-a2cede85ec1b}"/>
|
||||
<terminal name="" x="360" orientation="e" y="30" uuid="{7b1bdf98-b2f4-4205-8111-1fc273dfd74a}"/>
|
||||
<terminal name="" x="-360" orientation="w" y="20" uuid="{ba6af8e3-1cde-4f82-bbe2-280cc56bae7f}"/>
|
||||
<terminal name="" x="-360" orientation="w" y="40" uuid="{934044f4-0d47-4931-943f-1f0c2a75fdba}"/>
|
||||
<terminal name="" x="-360" orientation="w" y="60" uuid="{a111431d-bbaf-42a8-bcc4-7eafa51ebd6f}"/>
|
||||
<terminal name="" x="-360" orientation="w" y="80" uuid="{4e1a5d1d-51f7-46a9-b188-b4cf7d38e697}"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition type="element" hotspot_y="55" height="170" hotspot_x="364" width="730" link_type="simple" version="0.80">
|
||||
<definition type="element" hotspot_y="55" height="170" hotspot_x="375" width="740" link_type="simple" version="0.80">
|
||||
<names>
|
||||
<name lang="it">750-8217</name>
|
||||
<name lang="cs">750-8217</name>
|
||||
@@ -63,8 +63,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text x="201" text="PE" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-199" text="0V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-279" text="24V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="123" text="_" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-31" color="#000000"/>
|
||||
<text x="43" text="_" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-31" color="#000000"/>
|
||||
<text x="123" text="−" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="43" text="−" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-39" text="+" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-119" text="+" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-355" text="Eth1" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="4" color="#000000"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition type="element" hotspot_y="55" height="170" hotspot_x="364" width="730" link_type="simple" version="0.80">
|
||||
<definition type="element" hotspot_y="55" height="170" hotspot_x="375" width="740" link_type="simple" version="0.80">
|
||||
<names>
|
||||
<name lang="it">750-8217/025-000</name>
|
||||
<name lang="cs">750-8217/025-000</name>
|
||||
@@ -63,8 +63,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text x="201" text="PE" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-199" text="0V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-279" text="24V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="123" text="_" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-31" color="#000000"/>
|
||||
<text x="43" text="_" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-31" color="#000000"/>
|
||||
<text x="123" text="−" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="43" text="−" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-39" text="+" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-119" text="+" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" color="#000000"/>
|
||||
<text x="-355" text="Eth1" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="4" color="#000000"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition link_type="simple" version="0.80" width="730" height="110" hotspot_x="364" hotspot_y="55" type="element">
|
||||
<definition link_type="simple" version="0.80" width="740" height="110" hotspot_x="375" hotspot_y="55" type="element">
|
||||
<names>
|
||||
<name lang="el">750-812</name>
|
||||
<name lang="de">750-812</name>
|
||||
@@ -49,8 +49,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PE" rotation="0" y="-22" color="#000000" x="201"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0" y="-22" color="#000000" x="-199"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" rotation="0" y="-22" color="#000000" x="-279"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-39"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-119"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="MB" rotation="0" y="4" color="#000000" x="-355"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition link_type="simple" version="0.80" width="730" height="110" hotspot_x="364" hotspot_y="55" type="element">
|
||||
<definition link_type="simple" version="0.80" width="740" height="110" hotspot_x="375" hotspot_y="55" type="element">
|
||||
<names>
|
||||
<name lang="el">750-814</name>
|
||||
<name lang="de">750-814</name>
|
||||
@@ -49,8 +49,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PE" rotation="0" y="-22" color="#000000" x="201"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0" y="-22" color="#000000" x="-199"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" rotation="0" y="-22" color="#000000" x="-279"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-39"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-119"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="MB" rotation="0" y="4" color="#000000" x="-355"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition link_type="simple" version="0.80" width="730" height="110" hotspot_x="364" hotspot_y="55" type="element">
|
||||
<definition link_type="simple" version="0.80" width="740" height="110" hotspot_x="375" hotspot_y="55" type="element">
|
||||
<names>
|
||||
<name lang="el">750-815</name>
|
||||
<name lang="de">750-815</name>
|
||||
@@ -49,8 +49,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PE" rotation="0" y="-22" color="#000000" x="201"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0" y="-22" color="#000000" x="-199"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" rotation="0" y="-22" color="#000000" x="-279"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-39"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-119"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="MB" rotation="0" y="4" color="#000000" x="-355"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition link_type="simple" version="0.80" width="730" height="110" hotspot_x="364" hotspot_y="55" type="element">
|
||||
<definition link_type="simple" version="0.80" width="740" height="110" hotspot_x="375" hotspot_y="55" type="element">
|
||||
<names>
|
||||
<name lang="el">750-815/300-000</name>
|
||||
<name lang="de">750-815/300-000</name>
|
||||
@@ -49,8 +49,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PE" rotation="0" y="-22" color="#000000" x="201"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0" y="-22" color="#000000" x="-199"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" rotation="0" y="-22" color="#000000" x="-279"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-39"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-119"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="MB" rotation="0" y="4" color="#000000" x="-355"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition link_type="simple" version="0.80" width="730" height="110" hotspot_x="364" hotspot_y="55" type="element">
|
||||
<definition link_type="simple" version="0.80" width="740" height="110" hotspot_x="375" hotspot_y="55" type="element">
|
||||
<names>
|
||||
<name lang="el">750-816</name>
|
||||
<name lang="de">750-816</name>
|
||||
@@ -49,8 +49,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PE" rotation="0" y="-22" color="#000000" x="201"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0" y="-22" color="#000000" x="-199"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" rotation="0" y="-22" color="#000000" x="-279"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-39"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-119"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="MB" rotation="0" y="4" color="#000000" x="-355"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition link_type="simple" version="0.80" width="730" height="110" hotspot_x="364" hotspot_y="55" type="element">
|
||||
<definition link_type="simple" version="0.80" width="740" height="110" hotspot_x="375" hotspot_y="55" type="element">
|
||||
<names>
|
||||
<name lang="el">750-816/300-000</name>
|
||||
<name lang="de">750-816/300-000</name>
|
||||
@@ -49,8 +49,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PE" rotation="0" y="-22" color="#000000" x="201"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0" y="-22" color="#000000" x="-199"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" rotation="0" y="-22" color="#000000" x="-279"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" rotation="0" y="-31" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="123"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" rotation="0" y="-22" color="#000000" x="43"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-39"/>
|
||||
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" rotation="0" y="-22" color="#000000" x="-119"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="MB" rotation="0" y="4" color="#000000" x="-355"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition type="element" width="730" link_type="simple" height="100" hotspot_y="46" hotspot_x="366" version="0.80">
|
||||
<definition type="element" width="740" link_type="simple" height="100" hotspot_y="46" hotspot_x="366" version="0.80">
|
||||
<names>
|
||||
<name lang="ar">750-823</name>
|
||||
<name lang="it">750-823</name>
|
||||
|
||||
@@ -1,83 +1,83 @@
|
||||
<definition hotspot_x="364" width="730" hotspot_y="55" version="0.5" link_type="simple" type="element" height="110">
|
||||
<definition hotspot_y="55" hotspot_x="364" type="element" version="0.80" height="110" link_type="simple" width="730">
|
||||
<names>
|
||||
<name lang="pt">750-833</name>
|
||||
<name lang="de">750-833</name>
|
||||
<name lang="fr">750-833</name>
|
||||
<name lang="pl">750-833</name>
|
||||
<name lang="es">750-833</name>
|
||||
<name lang="cs">750-833</name>
|
||||
<name lang="ar">750-833</name>
|
||||
<name lang="it">750-833</name>
|
||||
<name lang="el">750-833</name>
|
||||
<name lang="nl">750-833</name>
|
||||
<name lang="fr">750-833</name>
|
||||
<name lang="en">750-833</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-833</elementInformation>
|
||||
<elementInformation show="1" name="description">Profibus DP/V1 Controller</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-833</elementInformation>
|
||||
<elementInformation name="description" show="1">Profibus DP/V1 Controller</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="90" width="720" ry="0"/>
|
||||
<line y1="10" end1="none" y2="-38" length1="1.5" x2="40" antialias="false" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="-8.5" end1="circle" y2="-38" length1="1.5" x2="-40" antialias="false" x1="-40" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="30" end1="none" y2="30" length1="1.5" x2="358" antialias="false" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<circle diameter="5" antialias="true" y="-2.5" x="-362.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line y1="11" end1="circle" y2="-37" length1="1.5" x2="120" antialias="false" x1="120" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="31.5" end1="circle" y2="-37" length1="1.5" x2="280" antialias="false" x1="280" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="-10" end1="none" y2="-38" length1="1.5" x2="-120" antialias="false" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-202.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-282.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line y1="10" end1="none" y2="10" length1="1.5" x2="358" antialias="false" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="30" end1="none" y2="-38" length1="1.5" x2="200" antialias="false" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="-10" end1="none" y2="-10" length1="1.5" x2="358" antialias="false" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<text size="9" text="WAGO 750-833" y="45" x="-330"/>
|
||||
<text size="9" text="Adr.:" y="4" x="-317"/>
|
||||
<input tagg="none" size="9" rotate="true" text="1" y="0" x="-280"/>
|
||||
<text size="9" text="PE" y="-22" x="281"/>
|
||||
<text size="9" text="PE" y="-22" x="201"/>
|
||||
<text size="9" text="0V" y="-22" x="-199"/>
|
||||
<text size="9" text="24V" y="-22" x="-279"/>
|
||||
<text size="12" text="_" y="-31" x="123"/>
|
||||
<text size="12" text="_" y="-31" x="43"/>
|
||||
<text size="12" text="+" y="-22" x="-39"/>
|
||||
<text size="12" text="+" y="-22" x="-119"/>
|
||||
<text size="9" text="DP" y="4" x="-355"/>
|
||||
<text text="Baudrate:" size="9" x="-234" y="4"/>
|
||||
<input text="12.000" tagg="none" size="9" rotate="true" x="-170" y="0"/>
|
||||
<input tagg="label" size="9" rotate="true" text="X123" y="41" x="220"/>
|
||||
<text size="5" text="1" y="-42" x="-276"/>
|
||||
<text size="5" text="5" y="-42" x="-195"/>
|
||||
<text size="5" text="2" y="-42" x="-115"/>
|
||||
<text size="5" text="6" y="-42" x="-35"/>
|
||||
<text size="5" text="3" y="-42" x="45"/>
|
||||
<text size="5" text="7" y="-42" x="125"/>
|
||||
<text size="5" text="4" y="-42" x="205"/>
|
||||
<text size="5" text="8" y="-42" x="285"/>
|
||||
<text size="9" text="Profibus DP/V1 Controller" y="45" x="-138"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal orientation="n" y="-40" x="-40"/>
|
||||
<terminal orientation="w" y="0" x="-360"/>
|
||||
<terminal orientation="n" y="-40" x="280"/>
|
||||
<terminal orientation="n" y="-40" x="200"/>
|
||||
<terminal orientation="n" y="-40" x="40"/>
|
||||
<terminal orientation="n" y="-40" x="-200"/>
|
||||
<terminal orientation="n" y="-40" x="-120"/>
|
||||
<terminal orientation="n" y="-40" x="120"/>
|
||||
<terminal orientation="e" y="10" x="360"/>
|
||||
<terminal orientation="n" y="-40" x="-280"/>
|
||||
<terminal orientation="e" y="-10" x="360"/>
|
||||
<terminal orientation="e" y="30" x="360"/>
|
||||
<rect x="-360" rx="0" ry="0" y="-40" antialias="false" style="line-style:normal;line-weight:normal;filling:white;color:black" height="90" width="720"/>
|
||||
<line y2="-38" end1="none" length2="1.5" x1="40" length1="1.5" x2="40" end2="none" y1="10" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line y2="-38" end1="circle" length2="1.5" x1="-40" length1="1.5" x2="-40" end2="none" y1="-8.5" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<line y2="30" end1="none" length2="1.5" x1="200" length1="1.5" x2="358" end2="none" y1="30" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<circle x="-362.5" y="-2.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line y2="-37" end1="circle" length2="1.5" x1="120" length1="1.5" x2="120" end2="none" y1="11" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<line y2="-37" end1="circle" length2="1.5" x1="280" length1="1.5" x2="280" end2="none" y1="31.5" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
|
||||
<line y2="-38" end1="none" length2="1.5" x1="-120" length1="1.5" x2="-120" end2="none" y1="-10" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<circle x="-42.5" y="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-122.5" y="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-202.5" y="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="-282.5" y="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="277.5" y="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="197.5" y="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="117.5" y="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle x="37.5" y="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line y2="10" end1="none" length2="1.5" x1="40" length1="1.5" x2="358" end2="none" y1="10" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line y2="-38" end1="none" length2="1.5" x1="200" length1="1.5" x2="200" end2="none" y1="30" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line y2="-10" end1="none" length2="1.5" x1="-120" length1="1.5" x2="358" end2="none" y1="-10" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<text x="-330" y="45" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="WAGO 750-833" color="#000000"/>
|
||||
<text x="-317" y="4" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Adr.:" color="#000000"/>
|
||||
<dynamic_text x="-280" frame="false" text_from="UserText" text_width="-1" y="-11.5" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" z="22" uuid="{0557f634-f19c-45a1-b47c-e8c0b9b44085}" Valignment="AlignTop">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<text x="281" y="-22" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PE" color="#000000"/>
|
||||
<text x="201" y="-22" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="PE" color="#000000"/>
|
||||
<text x="-199" y="-22" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" color="#000000"/>
|
||||
<text x="-279" y="-22" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" color="#000000"/>
|
||||
<text x="123" y="-22" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" color="#000000"/>
|
||||
<text x="43" y="-22" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="−" color="#000000"/>
|
||||
<text x="-39" y="-22" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" color="#000000"/>
|
||||
<text x="-119" y="-22" rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" color="#000000"/>
|
||||
<text x="-355" y="4" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DP" color="#000000"/>
|
||||
<text x="-234" y="4" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Baudrate:" color="#000000"/>
|
||||
<dynamic_text x="-170" frame="false" text_from="UserText" text_width="-1" y="-11.5" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" z="33" uuid="{d6281140-fd6b-41d4-ae80-bc2bcfc6815b}" Valignment="AlignTop">
|
||||
<text>12.000</text>
|
||||
</dynamic_text>
|
||||
<dynamic_text x="220" frame="false" text_from="ElementInfo" text_width="-1" y="29.5" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" z="34" uuid="{829b0aef-46e3-40ca-ba36-b99f6f9c40a6}" Valignment="AlignTop">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="-276" y="-42" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="1" color="#000000"/>
|
||||
<text x="-195" y="-42" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="5" color="#000000"/>
|
||||
<text x="-115" y="-42" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="2" color="#000000"/>
|
||||
<text x="-35" y="-42" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="6" color="#000000"/>
|
||||
<text x="45" y="-42" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="3" color="#000000"/>
|
||||
<text x="125" y="-42" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="7" color="#000000"/>
|
||||
<text x="205" y="-42" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="4" color="#000000"/>
|
||||
<text x="285" y="-42" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="8" color="#000000"/>
|
||||
<text x="-138" y="45" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Profibus DP/V1 Controller" color="#000000"/>
|
||||
<arc x="360" y="-12.5" angle="180" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" start="90" height="5" width="5"/>
|
||||
<arc x="360" y="7.5" angle="180" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" start="90" height="5" width="5"/>
|
||||
<arc x="360" y="27.5" angle="180" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" start="90" height="5" width="5"/>
|
||||
<terminal x="-40" name="" y="-40" uuid="{236964a5-4352-48e7-8665-b813ef61d97d}" orientation="n"/>
|
||||
<terminal x="-360" name="" y="0" uuid="{e78f2480-5650-4067-aef7-efb6eafc87f8}" orientation="w"/>
|
||||
<terminal x="280" name="" y="-40" uuid="{79b4aca3-3a0c-41bd-9dd9-8bb10cc959e1}" orientation="n"/>
|
||||
<terminal x="200" name="" y="-40" uuid="{d88108f7-31da-438f-a3b8-06d2b78cf5c1}" orientation="n"/>
|
||||
<terminal x="40" name="" y="-40" uuid="{8152434a-4437-44b1-9c4d-ec3c6882ce76}" orientation="n"/>
|
||||
<terminal x="-200" name="" y="-40" uuid="{d59fc135-3e18-4d14-bcce-4d4168a14ed0}" orientation="n"/>
|
||||
<terminal x="-120" name="" y="-40" uuid="{3d43a81e-128f-4eab-adf0-edca8828cd39}" orientation="n"/>
|
||||
<terminal x="120" name="" y="-40" uuid="{b4c4818a-2382-49d3-bd30-00d16f96de32}" orientation="n"/>
|
||||
<terminal x="360" name="" y="10" uuid="{5618678f-303f-4138-99f0-7326e56caddc}" orientation="e"/>
|
||||
<terminal x="-280" name="" y="-40" uuid="{942590fb-5aee-4e1d-a170-929ee25912c6}" orientation="n"/>
|
||||
<terminal x="360" name="" y="-10" uuid="{b3336126-a943-4d0c-a3a8-03721873ae20}" orientation="e"/>
|
||||
<terminal x="360" name="" y="30" uuid="{a9ee4de8-dc8d-4dee-87ff-5c991ca078ee}" orientation="e"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,83 +1,83 @@
|
||||
<definition hotspot_x="364" width="730" hotspot_y="55" version="0.5" link_type="simple" type="element" height="110">
|
||||
<definition hotspot_y="55" version="0.80" hotspot_x="364" height="110" width="730" type="element" link_type="simple">
|
||||
<names>
|
||||
<name lang="pt">750-837</name>
|
||||
<name lang="de">750-837</name>
|
||||
<name lang="fr">750-837</name>
|
||||
<name lang="pl">750-837</name>
|
||||
<name lang="es">750-837</name>
|
||||
<name lang="cs">750-837</name>
|
||||
<name lang="ar">750-837</name>
|
||||
<name lang="it">750-837</name>
|
||||
<name lang="el">750-837</name>
|
||||
<name lang="nl">750-837</name>
|
||||
<name lang="en">750-837</name>
|
||||
<name lang="de">750-837</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-837</elementInformation>
|
||||
<elementInformation show="1" name="description">CANopen - Controller MCS</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-837</elementInformation>
|
||||
<elementInformation name="description" show="1">CANopen - Controller MCS</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="90" width="720" ry="0"/>
|
||||
<line y1="10" end1="none" y2="-38" length1="1.5" x2="40" antialias="false" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="-8.5" end1="circle" y2="-38" length1="1.5" x2="-40" antialias="false" x1="-40" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="30" end1="none" y2="30" length1="1.5" x2="358" antialias="false" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<circle diameter="5" antialias="true" y="-2.5" x="-362.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line y1="11" end1="circle" y2="-37" length1="1.5" x2="120" antialias="false" x1="120" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="31.5" end1="circle" y2="-37" length1="1.5" x2="280" antialias="false" x1="280" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="-10" end1="none" y2="-38" length1="1.5" x2="-120" antialias="false" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-202.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-282.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line y1="10" end1="none" y2="10" length1="1.5" x2="358" antialias="false" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="30" end1="none" y2="-38" length1="1.5" x2="200" antialias="false" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="-10" end1="none" y2="-10" length1="1.5" x2="358" antialias="false" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<text size="9" text="WAGO 750-837" y="45" x="-330"/>
|
||||
<text size="9" text="Node-ID:" y="4" x="-317"/>
|
||||
<input tagg="none" size="9" rotate="true" text="1" y="0" x="-260"/>
|
||||
<text text="Baudrate:" size="9" x="-224" y="4"/>
|
||||
<input text="1000" tagg="none" size="9" rotate="true" x="-160" y="0"/>
|
||||
<text size="9" text="PE" y="-22" x="281"/>
|
||||
<text size="9" text="PE" y="-22" x="201"/>
|
||||
<text size="9" text="0V" y="-22" x="-199"/>
|
||||
<text size="9" text="24V" y="-22" x="-279"/>
|
||||
<text size="12" text="_" y="-31" x="123"/>
|
||||
<text size="12" text="_" y="-31" x="43"/>
|
||||
<text size="12" text="+" y="-22" x="-39"/>
|
||||
<text size="12" text="+" y="-22" x="-119"/>
|
||||
<text size="9" text="CAN" y="4" x="-355"/>
|
||||
<input tagg="label" size="9" rotate="true" text="X123" y="41" x="220"/>
|
||||
<text size="5" text="1" y="-42" x="-276"/>
|
||||
<text size="5" text="5" y="-42" x="-195"/>
|
||||
<text size="5" text="2" y="-42" x="-115"/>
|
||||
<text size="5" text="6" y="-42" x="-35"/>
|
||||
<text size="5" text="3" y="-42" x="45"/>
|
||||
<text size="5" text="7" y="-42" x="125"/>
|
||||
<text size="5" text="4" y="-42" x="205"/>
|
||||
<text size="5" text="8" y="-42" x="285"/>
|
||||
<text size="9" text="CANopen - Controller MCS" y="45" x="-138"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal orientation="n" y="-40" x="-40"/>
|
||||
<terminal orientation="w" y="0" x="-360"/>
|
||||
<terminal orientation="n" y="-40" x="280"/>
|
||||
<terminal orientation="n" y="-40" x="200"/>
|
||||
<terminal orientation="n" y="-40" x="40"/>
|
||||
<terminal orientation="n" y="-40" x="-200"/>
|
||||
<terminal orientation="n" y="-40" x="-120"/>
|
||||
<terminal orientation="n" y="-40" x="120"/>
|
||||
<terminal orientation="e" y="10" x="360"/>
|
||||
<terminal orientation="n" y="-40" x="-280"/>
|
||||
<terminal orientation="e" y="-10" x="360"/>
|
||||
<terminal orientation="e" y="30" x="360"/>
|
||||
<rect height="90" ry="0" x="-360" width="720" antialias="false" rx="0" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-40"/>
|
||||
<line x2="40" y2="-38" length1="1.5" y1="10" end1="none" x1="40" end2="none" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5"/>
|
||||
<line x2="-40" y2="-38" length1="1.5" y1="-8.5" end1="circle" x1="-40" end2="none" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" length2="1.5"/>
|
||||
<line x2="358" y2="30" length1="1.5" y1="30" end1="none" x1="200" end2="none" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5"/>
|
||||
<circle diameter="5" x="-362.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-2.5"/>
|
||||
<line x2="120" y2="-37" length1="1.5" y1="11" end1="circle" x1="120" end2="none" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" length2="1.5"/>
|
||||
<line x2="280" y2="-37" length1="1.5" y1="31.5" end1="circle" x1="280" end2="none" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" length2="1.5"/>
|
||||
<line x2="-120" y2="-38" length1="1.5" y1="-10" end1="none" x1="-120" end2="none" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5"/>
|
||||
<circle diameter="5" x="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle diameter="5" x="-122.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle diameter="5" x="-202.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle diameter="5" x="-282.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle diameter="5" x="277.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle diameter="5" x="197.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle diameter="5" x="117.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<circle diameter="5" x="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5"/>
|
||||
<line x2="358" y2="10" length1="1.5" y1="10" end1="none" x1="40" end2="none" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5"/>
|
||||
<line x2="200" y2="-38" length1="1.5" y1="30" end1="none" x1="200" end2="none" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5"/>
|
||||
<line x2="358" y2="-10" length1="1.5" y1="-10" end1="none" x1="-120" end2="none" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5"/>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-330" text="WAGO 750-837" color="#000000" y="45"/>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-317" text="Node-ID:" color="#000000" y="4"/>
|
||||
<dynamic_text Valignment="AlignTop" Halignment="AlignLeft" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-260" z="22" uuid="{a983bc80-2d2a-4c8b-9ae0-fbac4d9319d5}" text_from="UserText" text_width="-1" y="-11.5">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-224" text="Baudrate:" color="#000000" y="4"/>
|
||||
<dynamic_text Valignment="AlignTop" Halignment="AlignLeft" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="-160" z="24" uuid="{ace0123c-0d6a-4828-9b24-72478d99e820}" text_from="UserText" text_width="-1" y="-11.5">
|
||||
<text>1000</text>
|
||||
</dynamic_text>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="281" text="PE" color="#000000" y="-22"/>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="201" text="PE" color="#000000" y="-22"/>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-199" text="0V" color="#000000" y="-22"/>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-279" text="24V" color="#000000" y="-22"/>
|
||||
<text rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="123" text="−" color="#000000" y="-22"/>
|
||||
<text rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="43" text="−" color="#000000" y="-22"/>
|
||||
<text rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="-39" text="+" color="#000000" y="-22"/>
|
||||
<text rotation="0" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="-119" text="+" color="#000000" y="-22"/>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-355" text="CAN" color="#000000" y="4"/>
|
||||
<dynamic_text Valignment="AlignTop" Halignment="AlignLeft" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="220" z="34" uuid="{3f2142bb-7f40-4e82-beb5-b85775052240}" text_from="ElementInfo" text_width="-1" y="29.5">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-276" text="1" color="#000000" y="-42"/>
|
||||
<text rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-195" text="5" color="#000000" y="-42"/>
|
||||
<text rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-115" text="2" color="#000000" y="-42"/>
|
||||
<text rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-35" text="6" color="#000000" y="-42"/>
|
||||
<text rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="45" text="3" color="#000000" y="-42"/>
|
||||
<text rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="125" text="7" color="#000000" y="-42"/>
|
||||
<text rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="205" text="4" color="#000000" y="-42"/>
|
||||
<text rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="285" text="8" color="#000000" y="-42"/>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-138" text="CANopen - Controller MCS" color="#000000" y="45"/>
|
||||
<arc height="5" start="90" x="360" width="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-12.5" angle="180"/>
|
||||
<arc height="5" start="90" x="360" width="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="7.5" angle="180"/>
|
||||
<arc height="5" start="90" x="360" width="5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="27.5" angle="180"/>
|
||||
<terminal name="" orientation="n" x="-40" uuid="{f9f66b22-aeb0-45af-b844-13632578ab30}" y="-40"/>
|
||||
<terminal name="" orientation="w" x="-360" uuid="{6110a612-2b45-4392-a2e4-88f7b0fac922}" y="0"/>
|
||||
<terminal name="" orientation="n" x="280" uuid="{3683cb9f-d888-4932-8d2c-f962621d789a}" y="-40"/>
|
||||
<terminal name="" orientation="n" x="200" uuid="{9a8b0643-899d-4f13-bc19-80e0a35755e3}" y="-40"/>
|
||||
<terminal name="" orientation="n" x="40" uuid="{9a96b421-4d48-4c81-b0d3-f0d0330b31ea}" y="-40"/>
|
||||
<terminal name="" orientation="n" x="-200" uuid="{760bb4f0-fc9b-4e8c-8560-001875a30daa}" y="-40"/>
|
||||
<terminal name="" orientation="n" x="-120" uuid="{8868036f-be71-4ae4-aec2-61684937bd43}" y="-40"/>
|
||||
<terminal name="" orientation="n" x="120" uuid="{ba52ee5c-77ed-4c6a-89ef-29095f57e1ee}" y="-40"/>
|
||||
<terminal name="" orientation="e" x="360" uuid="{b686a9df-fd6d-4a66-8587-d6b1e2628007}" y="10"/>
|
||||
<terminal name="" orientation="n" x="-280" uuid="{4d88b2d9-553a-4dfd-986e-fc824c6dd8a7}" y="-40"/>
|
||||
<terminal name="" orientation="e" x="360" uuid="{036c3c2f-cc45-4ee6-8ba8-ac155be7c977}" y="-10"/>
|
||||
<terminal name="" orientation="e" x="360" uuid="{8a0b3651-e1f1-4a1d-b8c4-c76810f71226}" y="30"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,16 +1,9 @@
|
||||
<definition hotspot_x="364" width="730" hotspot_y="55" version="0.5" link_type="simple" type="element" height="110">
|
||||
<definition type="element" version="0.80" width="730" hotspot_x="364" hotspot_y="55" link_type="simple" height="110">
|
||||
<names>
|
||||
<name lang="pt">750-838</name>
|
||||
<name lang="de">750-838</name>
|
||||
<name lang="fr">750-838</name>
|
||||
<name lang="pl">750-838</name>
|
||||
<name lang="es">750-838</name>
|
||||
<name lang="cs">750-838</name>
|
||||
<name lang="ar">750-838</name>
|
||||
<name lang="it">750-838</name>
|
||||
<name lang="el">750-838</name>
|
||||
<name lang="nl">750-838</name>
|
||||
<name lang="de">750-838</name>
|
||||
<name lang="en">750-838</name>
|
||||
<name lang="cs">750-838</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
@@ -21,63 +14,70 @@
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="false" x="-360" rx="0" y="-40" height="90" width="720" ry="0"/>
|
||||
<line y1="10" end1="none" y2="-38" length1="1.5" x2="40" antialias="false" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="-8.5" end1="circle" y2="-38" length1="1.5" x2="-40" antialias="false" x1="-40" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="30" end1="none" y2="30" length1="1.5" x2="358" antialias="false" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<circle diameter="5" antialias="true" y="-2.5" x="-362.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line y1="11" end1="circle" y2="-37" length1="1.5" x2="120" antialias="false" x1="120" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="31.5" end1="circle" y2="-37" length1="1.5" x2="280" antialias="false" x1="280" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="-10" end1="none" y2="-38" length1="1.5" x2="-120" antialias="false" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-202.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="-282.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle diameter="5" antialias="true" y="-42.5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<line y1="10" end1="none" y2="10" length1="1.5" x2="358" antialias="false" x1="40" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="30" end1="none" y2="-38" length1="1.5" x2="200" antialias="false" x1="200" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<line y1="-10" end1="none" y2="-10" length1="1.5" x2="358" antialias="false" x1="-120" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" length2="1.5"/>
|
||||
<text size="9" text="WAGO 750-838" y="45" x="-330"/>
|
||||
<text size="9" text="Node-ID:" y="4" x="-317"/>
|
||||
<input tagg="none" size="9" rotate="true" text="1" y="0" x="-260"/>
|
||||
<text text="Baudrate:" size="9" x="-224" y="4"/>
|
||||
<input text="1000" tagg="none" size="9" rotate="true" x="-160" y="0"/>
|
||||
<text size="9" text="PE" y="-22" x="281"/>
|
||||
<text size="9" text="PE" y="-22" x="201"/>
|
||||
<text size="9" text="0V" y="-22" x="-199"/>
|
||||
<text size="9" text="24V" y="-22" x="-279"/>
|
||||
<text size="12" text="_" y="-31" x="123"/>
|
||||
<text size="12" text="_" y="-31" x="43"/>
|
||||
<text size="12" text="+" y="-22" x="-39"/>
|
||||
<text size="12" text="+" y="-22" x="-119"/>
|
||||
<text size="9" text="CAN" y="4" x="-355"/>
|
||||
<input tagg="label" size="9" rotate="true" text="X123" y="41" x="220"/>
|
||||
<text size="5" text="1" y="-42" x="-276"/>
|
||||
<text size="5" text="5" y="-42" x="-195"/>
|
||||
<text size="5" text="2" y="-42" x="-115"/>
|
||||
<text size="5" text="6" y="-42" x="-35"/>
|
||||
<text size="5" text="3" y="-42" x="45"/>
|
||||
<text size="5" text="7" y="-42" x="125"/>
|
||||
<text size="5" text="4" y="-42" x="205"/>
|
||||
<text size="5" text="8" y="-42" x="285"/>
|
||||
<text size="9" text="CANopen - Controller D-Sub" y="45" x="-138"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="-12.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="7.5" angle="180" antialias="true"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" x="360" height="5" start="90" y="27.5" angle="180" antialias="true"/>
|
||||
<terminal orientation="n" y="-40" x="-40"/>
|
||||
<terminal orientation="w" y="0" x="-360"/>
|
||||
<terminal orientation="n" y="-40" x="280"/>
|
||||
<terminal orientation="n" y="-40" x="200"/>
|
||||
<terminal orientation="n" y="-40" x="40"/>
|
||||
<terminal orientation="n" y="-40" x="-200"/>
|
||||
<terminal orientation="n" y="-40" x="-120"/>
|
||||
<terminal orientation="n" y="-40" x="120"/>
|
||||
<terminal orientation="e" y="10" x="360"/>
|
||||
<terminal orientation="n" y="-40" x="-280"/>
|
||||
<terminal orientation="e" y="-10" x="360"/>
|
||||
<terminal orientation="e" y="30" x="360"/>
|
||||
<rect style="line-style:normal;line-weight:normal;filling:white;color:black" width="720" ry="0" x="-360" y="-40" rx="0" antialias="false" height="90"/>
|
||||
<line x1="40" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" x2="40" end1="none" end2="none" length2="1.5" length1="1.5" antialias="false"/>
|
||||
<line x1="-40" y2="-38" style="line-style:normal;line-weight:thin;filling:black;color:black" y1="-8.5" x2="-40" end1="circle" end2="none" length2="1.5" length1="1.5" antialias="false"/>
|
||||
<line x1="200" y2="30" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="30" x2="358" end1="none" end2="none" length2="1.5" length1="1.5" antialias="false"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" y="-2.5" antialias="true"/>
|
||||
<line x1="120" y2="-37" style="line-style:normal;line-weight:thin;filling:black;color:black" y1="11" x2="120" end1="circle" end2="none" length2="1.5" length1="1.5" antialias="false"/>
|
||||
<line x1="280" y2="-37" style="line-style:normal;line-weight:thin;filling:black;color:black" y1="31.5" x2="280" end1="circle" end2="none" length2="1.5" length1="1.5" antialias="false"/>
|
||||
<line x1="-120" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10" x2="-120" end1="none" end2="none" length2="1.5" length1="1.5" antialias="false"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-42.5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-122.5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-202.5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-282.5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="277.5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="197.5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="117.5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="37.5" y="-42.5" antialias="true"/>
|
||||
<line x1="40" y2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" x2="358" end1="none" end2="none" length2="1.5" length1="1.5" antialias="false"/>
|
||||
<line x1="200" y2="-38" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="30" x2="200" end1="none" end2="none" length2="1.5" length1="1.5" antialias="false"/>
|
||||
<line x1="-120" y2="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10" x2="358" end1="none" end2="none" length2="1.5" length1="1.5" antialias="false"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-330" y="45" rotation="0" text="WAGO 750-838"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-317" y="4" rotation="0" text="Node-ID:"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" uuid="{85c77487-1c47-4009-bac3-056d0bd6ea4e}" text_width="-1" x="-260" text_from="UserText" Halignment="AlignLeft" y="-11.5" rotation="0" z="22" frame="false">
|
||||
<text>1</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-224" y="4" rotation="0" text="Baudrate:"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" uuid="{4ddc7fd2-5614-4055-86d8-bc4e8d2ea69a}" text_width="-1" x="-160" text_from="UserText" Halignment="AlignLeft" y="-11.5" rotation="0" z="24" frame="false">
|
||||
<text>1000</text>
|
||||
</dynamic_text>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="281" y="-22" rotation="0" text="PE"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="201" y="-22" rotation="0" text="PE"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-199" y="-22" rotation="0" text="0V"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-279" y="-22" rotation="0" text="24V"/>
|
||||
<text color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="123" y="-22" rotation="0" text="−"/>
|
||||
<text color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="43" y="-22" rotation="0" text="−"/>
|
||||
<text color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="-39" y="-22" rotation="0" text="+"/>
|
||||
<text color="#000000" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="-119" y="-22" rotation="0" text="+"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-355" y="4" rotation="0" text="CAN"/>
|
||||
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" uuid="{fb8d75e8-3090-4065-a2b5-a5343c2a0af0}" text_width="-1" x="220" text_from="ElementInfo" Halignment="AlignLeft" y="29.5" rotation="0" z="34" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-276" y="-42" rotation="0" text="1"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-195" y="-42" rotation="0" text="5"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-115" y="-42" rotation="0" text="2"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-35" y="-42" rotation="0" text="6"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="45" y="-42" rotation="0" text="3"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="125" y="-42" rotation="0" text="7"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="205" y="-42" rotation="0" text="4"/>
|
||||
<text color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="285" y="-42" rotation="0" text="8"/>
|
||||
<text color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-138" y="45" rotation="0" text="CANopen - Controller D-Sub"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" angle="180" start="90" x="360" y="-12.5" antialias="true" height="5"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" angle="180" start="90" x="360" y="7.5" antialias="true" height="5"/>
|
||||
<arc style="line-style:normal;line-weight:normal;filling:white;color:black" width="5" angle="180" start="90" x="360" y="27.5" antialias="true" height="5"/>
|
||||
<terminal uuid="{95abb8ce-50c1-4d42-bd46-d051536ca6e2}" name="" orientation="n" x="-40" y="-40"/>
|
||||
<terminal uuid="{a42b2bf6-47c7-4c34-a69f-719ce996ec41}" name="" orientation="w" x="-360" y="0"/>
|
||||
<terminal uuid="{b9e16896-5947-457b-a7bc-222c9eeed829}" name="" orientation="n" x="280" y="-40"/>
|
||||
<terminal uuid="{d7cf2e20-f777-4e1e-b9a0-f9fbfc7c3c8b}" name="" orientation="n" x="200" y="-40"/>
|
||||
<terminal uuid="{75714ebe-2097-418c-86f8-f3fb8b2f8499}" name="" orientation="n" x="40" y="-40"/>
|
||||
<terminal uuid="{700a2810-41db-4a18-979f-ec3c484a91bd}" name="" orientation="n" x="-200" y="-40"/>
|
||||
<terminal uuid="{b8f8a433-6f70-4f84-8a3a-2b97c0cec4d1}" name="" orientation="n" x="-120" y="-40"/>
|
||||
<terminal uuid="{b3a02b70-3a74-4896-98b0-7bac3da90220}" name="" orientation="n" x="120" y="-40"/>
|
||||
<terminal uuid="{b1cf8aea-d682-4985-8f13-c7cfcf9369f5}" name="" orientation="e" x="360" y="10"/>
|
||||
<terminal uuid="{dcdfdec7-5200-441f-802c-07f6e4a5d7e0}" name="" orientation="n" x="-280" y="-40"/>
|
||||
<terminal uuid="{cfd5e5a0-c8a2-41fa-a532-3b74ffc3ecb7}" name="" orientation="e" x="360" y="-10"/>
|
||||
<terminal uuid="{2cf7e0ff-2d21-423b-8704-b559b83b573d}" name="" orientation="e" x="360" y="30"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition type="element" version="0.80" hotspot_x="364" height="110" width="730" hotspot_y="55" link_type="simple">
|
||||
<definition type="element" version="0.80" hotspot_x="375" height="110" width="740" hotspot_y="55" link_type="simple">
|
||||
<names>
|
||||
<name lang="de">750-841</name>
|
||||
<name lang="el">750-841</name>
|
||||
@@ -49,8 +49,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text text="PE" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="201" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-199" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="24V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-279" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="_" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="123" y="-31" color="#000000" rotation="0"/>
|
||||
<text text="_" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="43" y="-31" color="#000000" rotation="0"/>
|
||||
<text text="−" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="123" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="−" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="43" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="+" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="-39" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="+" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="-119" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="Eth" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-355" y="4" color="#000000" rotation="0"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition type="element" version="0.80" hotspot_x="364" height="110" width="730" hotspot_y="55" link_type="simple">
|
||||
<definition type="element" version="0.80" hotspot_x="375" height="110" width="740" hotspot_y="55" link_type="simple">
|
||||
<names>
|
||||
<name lang="de">750-842</name>
|
||||
<name lang="el">750-842</name>
|
||||
@@ -49,8 +49,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text text="PE" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="201" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-199" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="24V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-279" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="_" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="123" y="-31" color="#000000" rotation="0"/>
|
||||
<text text="_" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="43" y="-31" color="#000000" rotation="0"/>
|
||||
<text text="−" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="123" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="−" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="43" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="+" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="-39" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="+" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="-119" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="Eth" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-355" y="4" color="#000000" rotation="0"/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition type="element" version="0.80" hotspot_x="364" height="110" width="730" hotspot_y="55" link_type="simple">
|
||||
<definition type="element" version="0.80" hotspot_x="375" height="110" width="740" hotspot_y="55" link_type="simple">
|
||||
<names>
|
||||
<name lang="de">750-843</name>
|
||||
<name lang="el">750-843</name>
|
||||
@@ -49,8 +49,8 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<text text="PE" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="201" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-199" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="24V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-279" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="_" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="123" y="-31" color="#000000" rotation="0"/>
|
||||
<text text="_" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="43" y="-31" color="#000000" rotation="0"/>
|
||||
<text text="−" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="123" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="−" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="43" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="+" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="-39" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="+" font="Sans Serif,12,-1,5,50,0,0,0,0,0" x="-119" y="-22" color="#000000" rotation="0"/>
|
||||
<text text="Eth" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-355" y="4" color="#000000" rotation="0"/>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user