mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-24 03:10:52 +01:00
Compare commits
40 Commits
9-dev-2022
...
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 |
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,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,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"/>
|
||||
|
||||
@@ -16,7 +16,7 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<description>
|
||||
<rect ry="0" y="-40" antialias="false" height="90" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" x="-360" width="720"/>
|
||||
<rect ry="0" y="-40" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" x="-180" width="280"/>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-13" text="Ribbon Cable" color="#000000" x="-79.8438"/>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-13" text="Ribbon Cable" color="#000000" x="-79.84"/>
|
||||
<circle diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="197.5"/>
|
||||
<circle diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="277.5"/>
|
||||
<circle diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-42.5"/>
|
||||
|
||||
@@ -16,7 +16,7 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<description>
|
||||
<rect ry="0" y="-40" antialias="false" height="90" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" x="-360" width="720"/>
|
||||
<rect ry="0" y="-40" antialias="false" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" x="-180" width="280"/>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-13" text="Ribbon Cable" color="#000000" x="-79.8438"/>
|
||||
<text rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-13" text="Ribbon Cable" color="#000000" x="-79.84"/>
|
||||
<circle diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="197.5"/>
|
||||
<circle diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="277.5"/>
|
||||
<circle diameter="5" y="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-42.5"/>
|
||||
|
||||
@@ -1,57 +1,58 @@
|
||||
<definition hotspot_y="55" width="730" height="110" hotspot_x="365" version="0.80" link_type="simple" type="element">
|
||||
<definition type="element" height="110" hotspot_y="55" version="0.90" link_type="simple" width="730" hotspot_x="365">
|
||||
<names>
|
||||
<name lang="en">750-493</name>
|
||||
<name lang="fr">750-493</name>
|
||||
<name lang="de">750-493</name>
|
||||
<name lang="cs">750-493</name>
|
||||
<name lang="de">750-493</name>
|
||||
<name lang="fr">750-493</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-493</elementInformation>
|
||||
<elementInformation show="1" name="description">3-phase power measurement 1A</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
<elementInformation name="description" show="1">3-phase power measurement 480V / 1A</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-493</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect rx="0" y="-40" x="-360" antialias="false" width="720" height="90" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<text y="-24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-199" text="IL1" color="#000000"/>
|
||||
<text y="-24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-39" text="IL2" color="#000000"/>
|
||||
<text y="-24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="281" text="IN" color="#000000"/>
|
||||
<text y="-24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="121" text="IL3" color="#000000"/>
|
||||
<dynamic_text z="6" text_from="ElementInfo" uuid="{3a2ff8a5-d6cd-4528-8de4-fbbe929e7505}" y="29.5" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="220" text_width="-1" Valignment="AlignTop" Halignment="AlignLeft">
|
||||
<rect ry="0" antialias="false" height="90" y="-40" rx="0" width="720" 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" y="-24" color="#000000" rotation="0" x="41" text="IL1"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="121" text="IL2"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="281" text="IN"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="201" text="IL3"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-242.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-162.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-282.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-202.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<dynamic_text Halignment="AlignLeft" uuid="{56441483-5a4c-4bf3-8128-50d2d6b4c0ef}" keep_visual_rotation="true" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="29.5" text_width="-1" text_from="ElementInfo" Valignment="AlignTop" z="14" frame="false" rotation="0" x="220">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-116" text="2" color="#000000"/>
|
||||
<text y="-24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-119" text="L2" color="#000000"/>
|
||||
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="125" text="7" color="#000000"/>
|
||||
<text y="45" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-120" text="3-ph. power measurement 1A" color="#000000"/>
|
||||
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-196" text="5" color="#000000"/>
|
||||
<text y="-24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="201" text="N" color="#000000"/>
|
||||
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="206" text="4" color="#000000"/>
|
||||
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-276" text="1" color="#000000"/>
|
||||
<text y="-24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-279" text="L1" color="#000000"/>
|
||||
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="286" text="8" color="#000000"/>
|
||||
<text y="45" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-330" text="WAGO 750-493" color="#000000"/>
|
||||
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-36" text="6" color="#000000"/>
|
||||
<text y="-24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="42" text="L3" color="#000000"/>
|
||||
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="46" text="3" color="#000000"/>
|
||||
<circle y="-42.5" x="117.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle y="-42.5" x="-122.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle y="-42.5" x="197.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle y="-42.5" x="-202.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle y="-42.5" x="277.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle y="-42.5" x="-282.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle y="-42.5" x="37.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle y="-42.5" x="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<terminal orientation="n" y="-40" x="-40"/>
|
||||
<terminal orientation="n" y="-40" x="-200"/>
|
||||
<terminal orientation="n" y="-40" x="-280"/>
|
||||
<terminal orientation="n" y="-40" x="-120"/>
|
||||
<terminal orientation="n" y="-40" x="200"/>
|
||||
<terminal orientation="n" y="-40" x="40"/>
|
||||
<terminal orientation="n" y="-40" x="120"/>
|
||||
<terminal orientation="n" y="-40" x="280"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-236" text="2"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-239" text="L2"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="205" text="7"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="45" color="#000000" rotation="0" x="-130" text="3-ph. power measurement 480V / 1A"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="44" text="5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-159" text="N"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-154" text="4"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-276" text="1"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-279" text="L1"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="286" text="8"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="45" color="#000000" rotation="0" x="-339" text="WAGO 750-493"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="124" text="6"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-198" text="L3"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-194" text="3"/>
|
||||
<polygon x3="280" antialias="false" x2="-160" y4="-40" y1="-40" y2="0" closed="false" x1="-160" y3="0" x4="280" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal type="Generic" uuid="{0085626d-10a6-44d3-86da-d5122de1d314}" name="" orientation="n" y="-40" x="120"/>
|
||||
<terminal type="Generic" uuid="{e23a30fc-9512-474e-8a32-af1f8c3e9c23}" name="" orientation="n" y="-40" x="40"/>
|
||||
<terminal type="Generic" uuid="{6c54b5ed-bc0c-46a6-8b3a-fb461f555367}" name="" orientation="n" y="-40" x="-280"/>
|
||||
<terminal type="Generic" uuid="{65bc4f87-1b60-4b03-b571-890dbc97cc38}" name="" orientation="n" y="-40" x="-240"/>
|
||||
<terminal type="Generic" uuid="{6881615c-bdb7-4e5b-b156-1fb3744d434f}" name="" orientation="n" y="-40" x="-160"/>
|
||||
<terminal type="Generic" uuid="{2e6fe057-7baf-4891-8148-8b4f284ec6f8}" name="" orientation="n" y="-40" x="-200"/>
|
||||
<terminal type="Generic" uuid="{694896fe-d49f-4ea7-9e91-ab42f13aff3d}" name="" orientation="n" y="-40" x="200"/>
|
||||
<terminal type="Generic" uuid="{c7117e2a-fd05-455b-91fa-c3ca612b5cd1}" name="" orientation="n" y="-40" x="280"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition type="element" width="730" hotspot_y="55" height="110" link_type="simple" hotspot_x="365" version="0.80">
|
||||
<definition hotspot_y="55" link_type="simple" version="0.80" hotspot_x="365" width="730" type="element" height="110">
|
||||
<names>
|
||||
<name lang="de">750-493/000-001</name>
|
||||
<name lang="fr">750-493/000-001</name>
|
||||
@@ -8,50 +8,51 @@
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-493/000-001</elementInformation>
|
||||
<elementInformation show="1" name="description">3-phase power measurement 5A</elementInformation>
|
||||
<elementInformation show="1" name="description">3-phase power measurement 480V / 5A</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect x="-360" ry="0" width="720" antialias="false" rx="0" height="90" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-40"/>
|
||||
<text x="-199" text="IL1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" rotation="0"/>
|
||||
<text x="-39" text="IL2" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" rotation="0"/>
|
||||
<text x="281" text="IN" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" rotation="0"/>
|
||||
<text x="121" text="IL3" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" rotation="0"/>
|
||||
<dynamic_text z="6" Valignment="AlignTop" uuid="{bcbdc961-bd59-4679-bb17-9b37271709df}" text_width="-1" x="220" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" y="29.5" Halignment="AlignLeft" rotation="0" frame="false">
|
||||
<rect ry="0" antialias="false" height="90" y="-40" rx="0" width="720" 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" y="-24" color="#000000" rotation="0" x="41" text="IL1"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="121" text="IL2"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="281" text="IN"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="201" text="IL3"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-242.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-162.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-282.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-202.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<dynamic_text Halignment="AlignLeft" uuid="{56441483-5a4c-4bf3-8128-50d2d6b4c0ef}" keep_visual_rotation="true" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="29.5" text_width="-1" text_from="ElementInfo" Valignment="AlignTop" z="14" frame="false" rotation="0" x="220">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="-116" text="2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" rotation="0"/>
|
||||
<text x="-119" text="L2" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" rotation="0"/>
|
||||
<text x="125" text="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" rotation="0"/>
|
||||
<text x="-120" text="3-ph. power measurement 5A" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" rotation="0"/>
|
||||
<text x="-196" text="5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" rotation="0"/>
|
||||
<text x="201" text="N" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" rotation="0"/>
|
||||
<text x="206" text="4" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" rotation="0"/>
|
||||
<text x="-276" text="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" rotation="0"/>
|
||||
<text x="-279" text="L1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" rotation="0"/>
|
||||
<text x="286" text="8" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" rotation="0"/>
|
||||
<text x="-330" text="WAGO 750-493/000-001" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" rotation="0"/>
|
||||
<text x="-36" text="6" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" rotation="0"/>
|
||||
<text x="42" text="L3" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" rotation="0"/>
|
||||
<text x="46" text="3" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" rotation="0"/>
|
||||
<circle x="117.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5"/>
|
||||
<circle x="-122.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5"/>
|
||||
<circle x="197.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5"/>
|
||||
<circle x="-202.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5"/>
|
||||
<circle x="277.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5"/>
|
||||
<circle x="-282.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5"/>
|
||||
<circle x="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5"/>
|
||||
<circle x="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5"/>
|
||||
<terminal x="-40" y="-40" orientation="n"/>
|
||||
<terminal x="-200" y="-40" orientation="n"/>
|
||||
<terminal x="-280" y="-40" orientation="n"/>
|
||||
<terminal x="-120" y="-40" orientation="n"/>
|
||||
<terminal x="200" y="-40" orientation="n"/>
|
||||
<terminal x="40" y="-40" orientation="n"/>
|
||||
<terminal x="120" y="-40" orientation="n"/>
|
||||
<terminal x="280" y="-40" orientation="n"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-236" text="2"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-239" text="L2"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="205" text="7"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="45" color="#000000" rotation="0" x="-130" text="3-ph. power measurement 480V / 5A"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="44" text="5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-159" text="N"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-154" text="4"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-276" text="1"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-279" text="L1"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="286" text="8"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="45" color="#000000" rotation="0" x="-339" text="WAGO 750-493/000-001"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="124" text="6"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-198" text="L3"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-194" text="3"/>
|
||||
<polygon x3="280" antialias="false" x2="-160" y4="-40" y1="-40" y2="0" closed="false" x1="-160" y3="0" x4="280" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal type="Generic" uuid="{0085626d-10a6-44d3-86da-d5122de1d314}" name="" orientation="n" y="-40" x="120"/>
|
||||
<terminal type="Generic" uuid="{e23a30fc-9512-474e-8a32-af1f8c3e9c23}" name="" orientation="n" y="-40" x="40"/>
|
||||
<terminal type="Generic" uuid="{6c54b5ed-bc0c-46a6-8b3a-fb461f555367}" name="" orientation="n" y="-40" x="-280"/>
|
||||
<terminal type="Generic" uuid="{65bc4f87-1b60-4b03-b571-890dbc97cc38}" name="" orientation="n" y="-40" x="-240"/>
|
||||
<terminal type="Generic" uuid="{6881615c-bdb7-4e5b-b156-1fb3744d434f}" name="" orientation="n" y="-40" x="-160"/>
|
||||
<terminal type="Generic" uuid="{2e6fe057-7baf-4891-8148-8b4f284ec6f8}" name="" orientation="n" y="-40" x="-200"/>
|
||||
<terminal type="Generic" uuid="{694896fe-d49f-4ea7-9e91-ab42f13aff3d}" name="" orientation="n" y="-40" x="200"/>
|
||||
<terminal type="Generic" uuid="{c7117e2a-fd05-455b-91fa-c3ca612b5cd1}" name="" orientation="n" y="-40" x="280"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -1,57 +1,58 @@
|
||||
<definition height="110" width="730" hotspot_x="365" hotspot_y="55" link_type="simple" type="element" version="0.80">
|
||||
<definition type="element" height="110" hotspot_y="55" version="0.90" link_type="simple" width="730" hotspot_x="365">
|
||||
<names>
|
||||
<name lang="de">750-494</name>
|
||||
<name lang="en">750-494</name>
|
||||
<name lang="fr">750-494</name>
|
||||
<name lang="cs">750-494</name>
|
||||
<name lang="de">750-494</name>
|
||||
<name lang="fr">750-494</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">750-494</elementInformation>
|
||||
<elementInformation show="1" name="description">3-phase power measurement 480V / 1A</elementInformation>
|
||||
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
|
||||
<elementInformation name="description" show="1">3-phase power measurement 480V / 1A</elementInformation>
|
||||
<elementInformation name="designation" show="1">750-494</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect x="-360" ry="0" height="90" width="720" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-40" antialias="false"/>
|
||||
<text x="-199" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" text="IL1"/>
|
||||
<text x="-39" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" text="IL2"/>
|
||||
<text x="281" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" text="IN"/>
|
||||
<text x="121" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" text="IL3"/>
|
||||
<circle x="117.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
|
||||
<circle x="-122.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
|
||||
<circle x="197.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
|
||||
<circle x="-202.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
|
||||
<circle x="277.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
|
||||
<circle x="-282.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
|
||||
<circle x="37.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
|
||||
<circle x="-42.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
|
||||
<dynamic_text frame="false" x="220" rotation="0" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" uuid="{56441483-5a4c-4bf3-8128-50d2d6b4c0ef}" y="29.5" z="14" Halignment="AlignLeft" text_from="ElementInfo">
|
||||
<rect ry="0" antialias="false" height="90" y="-40" rx="0" width="720" 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" y="-24" color="#000000" rotation="0" x="41" text="IL1"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="121" text="IL2"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="281" text="IN"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="201" text="IL3"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-242.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-162.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-282.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-202.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<dynamic_text Halignment="AlignLeft" uuid="{56441483-5a4c-4bf3-8128-50d2d6b4c0ef}" keep_visual_rotation="true" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="29.5" text_width="-1" text_from="ElementInfo" Valignment="AlignTop" z="14" frame="false" rotation="0" x="220">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="-116" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" text="2"/>
|
||||
<text x="-119" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" text="L2"/>
|
||||
<text x="125" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" text="7"/>
|
||||
<text x="-120" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" text="3-ph. power measurement 480V / 1A"/>
|
||||
<text x="-196" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" text="5"/>
|
||||
<text x="201" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" text="N"/>
|
||||
<text x="206" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" text="4"/>
|
||||
<text x="-276" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" text="1"/>
|
||||
<text x="-279" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" text="L1"/>
|
||||
<text x="286" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" text="8"/>
|
||||
<text x="-330" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" text="WAGO 750-494"/>
|
||||
<text x="-36" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" text="6"/>
|
||||
<text x="42" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" text="L3"/>
|
||||
<text x="46" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" text="3"/>
|
||||
<terminal x="-40" orientation="n" y="-40"/>
|
||||
<terminal x="-200" orientation="n" y="-40"/>
|
||||
<terminal x="-280" orientation="n" y="-40"/>
|
||||
<terminal x="-120" orientation="n" y="-40"/>
|
||||
<terminal x="200" orientation="n" y="-40"/>
|
||||
<terminal x="40" orientation="n" y="-40"/>
|
||||
<terminal x="120" orientation="n" y="-40"/>
|
||||
<terminal x="280" orientation="n" y="-40"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-236" text="2"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-239" text="L2"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="205" text="7"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="45" color="#000000" rotation="0" x="-130" text="3-ph. power measurement 480V / 1A"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="44" text="5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-159" text="N"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-154" text="4"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-276" text="1"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-279" text="L1"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="286" text="8"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="45" color="#000000" rotation="0" x="-339" text="WAGO 750-494"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="124" text="6"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-198" text="L3"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-194" text="3"/>
|
||||
<polygon x3="280" antialias="false" x2="-160" y4="-40" y1="-40" y2="0" closed="false" x1="-160" y3="0" x4="280" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal type="Generic" uuid="{0085626d-10a6-44d3-86da-d5122de1d314}" name="" orientation="n" y="-40" x="120"/>
|
||||
<terminal type="Generic" uuid="{e23a30fc-9512-474e-8a32-af1f8c3e9c23}" name="" orientation="n" y="-40" x="40"/>
|
||||
<terminal type="Generic" uuid="{6c54b5ed-bc0c-46a6-8b3a-fb461f555367}" name="" orientation="n" y="-40" x="-280"/>
|
||||
<terminal type="Generic" uuid="{65bc4f87-1b60-4b03-b571-890dbc97cc38}" name="" orientation="n" y="-40" x="-240"/>
|
||||
<terminal type="Generic" uuid="{6881615c-bdb7-4e5b-b156-1fb3744d434f}" name="" orientation="n" y="-40" x="-160"/>
|
||||
<terminal type="Generic" uuid="{2e6fe057-7baf-4891-8148-8b4f284ec6f8}" name="" orientation="n" y="-40" x="-200"/>
|
||||
<terminal type="Generic" uuid="{694896fe-d49f-4ea7-9e91-ab42f13aff3d}" name="" orientation="n" y="-40" x="200"/>
|
||||
<terminal type="Generic" uuid="{c7117e2a-fd05-455b-91fa-c3ca612b5cd1}" name="" orientation="n" y="-40" x="280"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -14,44 +14,45 @@
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-360" y="-40" width="720" antialias="false" height="90" ry="0"/>
|
||||
<text text="IL1" x="-199" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="IL2" x="-39" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="IN" x="281" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="IL3" x="121" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="117.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-122.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="197.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-202.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="277.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-282.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="37.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-42.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<dynamic_text uuid="{7ab4576d-8087-4ad5-ab5a-cb1b1b94d917}" Valignment="AlignTop" z="14" frame="false" Halignment="AlignLeft" x="220" rotation="0" y="29.5" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1">
|
||||
<rect ry="0" antialias="false" height="90" y="-40" rx="0" width="720" 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" y="-24" color="#000000" rotation="0" x="41" text="IL1"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="121" text="IL2"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="281" text="IN"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="201" text="IL3"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-242.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-162.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-282.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-202.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<dynamic_text Halignment="AlignLeft" uuid="{56441483-5a4c-4bf3-8128-50d2d6b4c0ef}" keep_visual_rotation="true" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="29.5" text_width="-1" text_from="ElementInfo" Valignment="AlignTop" z="14" frame="false" rotation="0" x="220">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text text="2" x="-116" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="L2" x="-119" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="7" x="125" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="3-ph. power measurement 480V / 5A" x="-120" rotation="0" y="45" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="5" x="-196" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="N" x="201" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="4" x="206" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="1" x="-276" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="L1" x="-279" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="8" x="286" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="WAGO 750-494/000-001" x="-330" rotation="0" y="45" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="6" x="-36" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="L3" x="42" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="3" x="46" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<terminal orientation="n" x="-40" y="-40"/>
|
||||
<terminal orientation="n" x="-200" y="-40"/>
|
||||
<terminal orientation="n" x="-280" y="-40"/>
|
||||
<terminal orientation="n" x="-120" y="-40"/>
|
||||
<terminal orientation="n" x="200" y="-40"/>
|
||||
<terminal orientation="n" x="40" y="-40"/>
|
||||
<terminal orientation="n" x="120" y="-40"/>
|
||||
<terminal orientation="n" x="280" y="-40"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-236" text="2"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-239" text="L2"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="205" text="7"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="45" color="#000000" rotation="0" x="-130" text="3-ph. power measurement 480V / 5A"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="44" text="5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-159" text="N"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-154" text="4"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-276" text="1"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-279" text="L1"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="286" text="8"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="45" color="#000000" rotation="0" x="-339" text="WAGO 750-494/000-001"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="124" text="6"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-198" text="L3"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-194" text="3"/>
|
||||
<polygon x3="280" antialias="false" x2="-160" y4="-40" y1="-40" y2="0" closed="false" x1="-160" y3="0" x4="280" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal type="Generic" uuid="{0085626d-10a6-44d3-86da-d5122de1d314}" name="" orientation="n" y="-40" x="120"/>
|
||||
<terminal type="Generic" uuid="{e23a30fc-9512-474e-8a32-af1f8c3e9c23}" name="" orientation="n" y="-40" x="40"/>
|
||||
<terminal type="Generic" uuid="{6c54b5ed-bc0c-46a6-8b3a-fb461f555367}" name="" orientation="n" y="-40" x="-280"/>
|
||||
<terminal type="Generic" uuid="{65bc4f87-1b60-4b03-b571-890dbc97cc38}" name="" orientation="n" y="-40" x="-240"/>
|
||||
<terminal type="Generic" uuid="{6881615c-bdb7-4e5b-b156-1fb3744d434f}" name="" orientation="n" y="-40" x="-160"/>
|
||||
<terminal type="Generic" uuid="{2e6fe057-7baf-4891-8148-8b4f284ec6f8}" name="" orientation="n" y="-40" x="-200"/>
|
||||
<terminal type="Generic" uuid="{694896fe-d49f-4ea7-9e91-ab42f13aff3d}" name="" orientation="n" y="-40" x="200"/>
|
||||
<terminal type="Generic" uuid="{c7117e2a-fd05-455b-91fa-c3ca612b5cd1}" name="" orientation="n" y="-40" x="280"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -14,44 +14,45 @@
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-360" y="-40" width="720" antialias="false" height="90" ry="0"/>
|
||||
<text text="IL1" x="-199" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="IL2" x="-39" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="IN" x="281" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="IL3" x="121" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="117.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-122.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="197.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-202.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="277.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-282.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="37.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-42.5" diameter="5" y="-42.5" antialias="true"/>
|
||||
<dynamic_text uuid="{7ab4576d-8087-4ad5-ab5a-cb1b1b94d917}" Valignment="AlignTop" z="14" frame="false" Halignment="AlignLeft" x="220" rotation="0" y="29.5" text_from="ElementInfo" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1">
|
||||
<rect ry="0" antialias="false" height="90" y="-40" rx="0" width="720" 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" y="-24" color="#000000" rotation="0" x="41" text="IL1"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="121" text="IL2"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="281" text="IN"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="201" text="IL3"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-242.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-162.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-282.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="-202.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<circle antialias="true" y="-42.5" diameter="5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
|
||||
<dynamic_text Halignment="AlignLeft" uuid="{56441483-5a4c-4bf3-8128-50d2d6b4c0ef}" keep_visual_rotation="true" font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="29.5" text_width="-1" text_from="ElementInfo" Valignment="AlignTop" z="14" frame="false" rotation="0" x="220">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text text="2" x="-116" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="L2" x="-119" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="7" x="125" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-236" text="2"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-239" text="L2"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="205" text="7"/>
|
||||
<text text="3-ph. power meas., AC/DC 277V, ext. Shunts" x="-120" rotation="0" y="45" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="5" x="-196" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="N" x="201" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="4" x="206" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="1" x="-276" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="L1" x="-279" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="8" x="286" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="WAGO 750-494/000-005" x="-330" rotation="0" y="45" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="6" x="-36" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="L3" x="42" rotation="0" y="-24" color="#000000" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text text="3" x="46" rotation="0" y="-42" color="#000000" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<terminal orientation="n" x="-40" y="-40"/>
|
||||
<terminal orientation="n" x="-200" y="-40"/>
|
||||
<terminal orientation="n" x="-280" y="-40"/>
|
||||
<terminal orientation="n" x="-120" y="-40"/>
|
||||
<terminal orientation="n" x="200" y="-40"/>
|
||||
<terminal orientation="n" x="40" y="-40"/>
|
||||
<terminal orientation="n" x="120" y="-40"/>
|
||||
<terminal orientation="n" x="280" y="-40"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="44" text="5"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-159" text="N"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-154" text="4"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-276" text="1"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-279" text="L1"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="286" text="8"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="124" text="6"/>
|
||||
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-24" color="#000000" rotation="0" x="-198" text="L3"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" color="#000000" rotation="0" x="-194" text="3"/>
|
||||
<polygon x3="280" antialias="false" x2="-160" y4="-40" y1="-40" y2="0" closed="false" x1="-160" y3="0" x4="280" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
|
||||
<terminal type="Generic" uuid="{0085626d-10a6-44d3-86da-d5122de1d314}" name="" orientation="n" y="-40" x="120"/>
|
||||
<terminal type="Generic" uuid="{e23a30fc-9512-474e-8a32-af1f8c3e9c23}" name="" orientation="n" y="-40" x="40"/>
|
||||
<terminal type="Generic" uuid="{6c54b5ed-bc0c-46a6-8b3a-fb461f555367}" name="" orientation="n" y="-40" x="-280"/>
|
||||
<terminal type="Generic" uuid="{65bc4f87-1b60-4b03-b571-890dbc97cc38}" name="" orientation="n" y="-40" x="-240"/>
|
||||
<terminal type="Generic" uuid="{6881615c-bdb7-4e5b-b156-1fb3744d434f}" name="" orientation="n" y="-40" x="-160"/>
|
||||
<terminal type="Generic" uuid="{2e6fe057-7baf-4891-8148-8b4f284ec6f8}" name="" orientation="n" y="-40" x="-200"/>
|
||||
<terminal type="Generic" uuid="{694896fe-d49f-4ea7-9e91-ab42f13aff3d}" name="" orientation="n" y="-40" x="200"/>
|
||||
<terminal type="Generic" uuid="{c7117e2a-fd05-455b-91fa-c3ca612b5cd1}" name="" orientation="n" y="-40" x="280"/>
|
||||
</description>
|
||||
</definition>
|
||||
|
||||
@@ -47,16 +47,16 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<circle y="9" antialias="false" diameter="2" x="-231" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<circle y="9" antialias="false" diameter="2" x="-31" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<circle y="9" antialias="false" diameter="2" x="49" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<line x2="10" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.8575" y2="-10" antialias="false" x1="10" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="10" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.86" y2="-10" antialias="false" x1="10" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-150" end1="none" length2="1.5" length1="1.5" end2="none" y1="48" y2="10" antialias="false" x1="-150" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-190" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.8575" y2="-10" antialias="false" x1="-190" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-190" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.86" y2="-10" antialias="false" x1="-190" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-230" end1="none" length2="1.5" length1="1.5" end2="none" y1="48" y2="10" antialias="false" x1="-230" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-270" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.8575" y2="-10" antialias="false" x1="-270" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-270" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.86" y2="-10" antialias="false" x1="-270" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-30" end1="none" length2="1.5" length1="1.5" end2="none" y1="48" y2="10" antialias="false" x1="-30" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="357" end1="none" length2="1.5" length1="1.5" end2="none" y1="10" y2="10" antialias="false" x1="-357" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="357" end1="none" length2="1.5" length1="1.5" end2="none" y1="-10" y2="-10" antialias="false" x1="-357" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="50" end1="none" length2="1.5" length1="1.5" end2="none" y1="48" y2="10" antialias="false" x1="50" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-70" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.8575" y2="-10" antialias="false" x1="-70" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-70" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.86" y2="-10" antialias="false" x1="-70" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="58" text="1" rotation="0" x="-307" color="#000000"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="58" text="2" rotation="0" x="-267" color="#000000"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="58" text="3" rotation="0" x="-227" color="#000000"/>
|
||||
|
||||
@@ -39,16 +39,16 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<circle y="9" antialias="false" diameter="2" x="-231" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<circle y="9" antialias="false" diameter="2" x="-31" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<circle y="9" antialias="false" diameter="2" x="49" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
|
||||
<line x2="10" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.8575" y2="-10" antialias="false" x1="10" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="10" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.86" y2="-10" antialias="false" x1="10" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-150" end1="none" length2="1.5" length1="1.5" end2="none" y1="48" y2="10" antialias="false" x1="-150" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-190" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.8575" y2="-10" antialias="false" x1="-190" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-190" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.86" y2="-10" antialias="false" x1="-190" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-230" end1="none" length2="1.5" length1="1.5" end2="none" y1="48" y2="10" antialias="false" x1="-230" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-270" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.8575" y2="-10" antialias="false" x1="-270" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-270" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.86" y2="-10" antialias="false" x1="-270" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-30" end1="none" length2="1.5" length1="1.5" end2="none" y1="48" y2="10" antialias="false" x1="-30" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="357" end1="none" length2="1.5" length1="1.5" end2="none" y1="10" y2="10" antialias="false" x1="-357" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="357" end1="none" length2="1.5" length1="1.5" end2="none" y1="-10" y2="-10" antialias="false" x1="-357" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="50" end1="none" length2="1.5" length1="1.5" end2="none" y1="48" y2="10" antialias="false" x1="50" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-70" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.8575" y2="-10" antialias="false" x1="-70" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<line x2="-70" end1="none" length2="1.5" length1="1.5" end2="none" y1="46.86" y2="-10" antialias="false" x1="-70" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="58" text="1" rotation="0" x="-307" color="#000000"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="58" text="2" rotation="0" x="-267" color="#000000"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="58" text="3" rotation="0" x="-227" color="#000000"/>
|
||||
|
||||
@@ -16,22 +16,22 @@ License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
<description>
|
||||
<rect rx="0" height="90" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" width="720" x="-360" y="-40" antialias="false"/>
|
||||
<circle diameter="2" style="line-style:normal;line-weight:normal;filling:black;color:black" x="249" y="-11" antialias="false"/>
|
||||
<line y2="-10" x2="250" end1="none" x1="250" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.8575" antialias="false"/>
|
||||
<line y2="-10" x2="250" end1="none" x1="250" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.86" antialias="false"/>
|
||||
<circle diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="207.5" y="47.5" antialias="true"/>
|
||||
<line y2="10" x2="290" end1="none" x1="290" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="48" antialias="false"/>
|
||||
<circle diameter="2" style="line-style:normal;line-weight:normal;filling:black;color:black" x="49" y="-11" antialias="false"/>
|
||||
<line y2="-10" x2="50" end1="none" x1="50" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.8575" antialias="false"/>
|
||||
<line y2="-10" x2="50" end1="none" x1="50" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.86" antialias="false"/>
|
||||
<circle diameter="2" style="line-style:normal;line-weight:normal;filling:black;color:black" x="-71" y="-11" antialias="false"/>
|
||||
<line y2="-10" x2="-70" end1="none" x1="-70" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.8575" antialias="false"/>
|
||||
<line y2="-10" x2="-70" end1="none" x1="-70" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.86" antialias="false"/>
|
||||
<circle diameter="2" style="line-style:normal;line-weight:normal;filling:black;color:black" x="-271" y="-11" antialias="false"/>
|
||||
<line y2="-10" x2="-270" end1="none" x1="-270" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.8575" antialias="false"/>
|
||||
<line y2="-10" x2="-270" end1="none" x1="-270" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.86" antialias="false"/>
|
||||
<line y2="10" x2="-30" end1="none" x1="-30" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="48" antialias="false"/>
|
||||
<line y2="-10" x2="130" end1="none" x1="130" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.8575" antialias="false"/>
|
||||
<line y2="-10" x2="130" end1="none" x1="130" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.86" antialias="false"/>
|
||||
<line y2="10" x2="-230" end1="none" x1="-230" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="48" antialias="false"/>
|
||||
<circle diameter="2" style="line-style:normal;line-weight:normal;filling:black;color:black" x="129" y="-11" antialias="false"/>
|
||||
<circle diameter="2" style="line-style:normal;line-weight:normal;filling:black;color:black" x="289" y="9" antialias="false"/>
|
||||
<circle diameter="2" style="line-style:normal;line-weight:normal;filling:black;color:black" x="-191" y="-11" antialias="false"/>
|
||||
<line y2="-10" x2="-190" end1="none" x1="-190" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.8575" antialias="false"/>
|
||||
<line y2="-10" x2="-190" end1="none" x1="-190" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" length1="1.5" y1="46.86" antialias="false"/>
|
||||
<text text="24V" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-355" y="-12" color="#000000"/>
|
||||
<circle diameter="2" style="line-style:normal;line-weight:normal;filling:black;color:black" x="-31" y="9" antialias="false"/>
|
||||
<circle diameter="2" style="line-style:normal;line-weight:normal;filling:black;color:black" x="-231" y="9" antialias="false"/>
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
<definition hotspot_y="65" version="0.80" hotspot_x="44" link_type="simple" height="130" width="90" type="element">
|
||||
<names>
|
||||
<name lang="cs">787-2857</name>
|
||||
<name lang="en">787-2857</name>
|
||||
<name lang="de">787-2857</name>
|
||||
<name lang="fr">787-2857</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="description">Power-Supply Compact DALI 1ph DC18V 1.25A</elementInformation>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">787-2857</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect x="-40" height="120" antialias="false" ry="0" width="80" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-60"/>
|
||||
<text x="13" text="+18V" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="53"/>
|
||||
<text x="17" text="GND" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-47"/>
|
||||
<line length1="1.5" x1="1" y1="-60" y2="60" antialias="true" x2="1" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none"/>
|
||||
<circle x="37.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-12.5"/>
|
||||
<text x="17" text="GND" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-7"/>
|
||||
<text x="13" text="+18V" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="13"/>
|
||||
<text x="13" text="+18V" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="33"/>
|
||||
<line length1="1.5" x1="-1" y1="-60" y2="60" antialias="true" x2="-1" length2="1.5" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none"/>
|
||||
<circle x="37.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="27.5"/>
|
||||
<text x="17" text="GND" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-27"/>
|
||||
<circle x="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-2.5"/>
|
||||
<circle x="37.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-52.5"/>
|
||||
<circle x="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="17.5"/>
|
||||
<circle x="37.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="7.5"/>
|
||||
<circle x="-42.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-22.5"/>
|
||||
<circle x="37.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="47.5"/>
|
||||
<circle x="37.5" antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-32.5"/>
|
||||
<dynamic_text x="-44" text_width="-1" Halignment="AlignLeft" z="20" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0" text_from="ElementInfo" Valignment="AlignTop" frame="false" uuid="{df63c2f9-15a0-4148-9435-8f09fc3f270b}" y="-77">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="-37" text="PE" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="17"/>
|
||||
<text x="-37" text="L1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-23"/>
|
||||
<text x="-37" text="N" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-3"/>
|
||||
<text x="-10" text="WAGO 787-2857" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="-90" color="#000000" y="50"/>
|
||||
<terminal orientation="w" x="-40" name="AC.L1" uuid="{2aa78165-af0a-45c3-9625-ab8dd8947915}" y="-20"/>
|
||||
<terminal orientation="w" x="-40" name="AC.N" uuid="{4f242131-49a7-45e8-ab93-dd7896055cb9}" y="0"/>
|
||||
<terminal orientation="w" x="-40" name="AC.PE" uuid="{13726cc5-0eb0-401b-90be-8f7c5788bbd3}" y="20"/>
|
||||
<terminal orientation="e" x="40" name="" uuid="{7bf6cf48-5eba-41f6-aa2e-ea091ff3ba4a}" y="30"/>
|
||||
<terminal orientation="e" x="40" name="" uuid="{844ee3cf-460a-4a98-a3ab-2435973c97fe}" y="10"/>
|
||||
<terminal orientation="e" x="40" name="" uuid="{4744d8ea-f02e-43a3-afad-631a1c033fb5}" y="50"/>
|
||||
<terminal orientation="e" x="40" name="" uuid="{a0618f8d-3d15-417f-b1e3-1e7a0f3bb691}" y="-50"/>
|
||||
<terminal orientation="e" x="40" name="" uuid="{9b867976-edb2-4038-8ac3-12cc4cee07ff}" y="-10"/>
|
||||
<terminal orientation="e" x="40" name="" uuid="{aa1eeb80-ee90-48ca-bc25-e4ef13633355}" y="-30"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,42 @@
|
||||
<definition height="90" hotspot_x="35" link_type="simple" type="element" width="70" hotspot_y="44" version="0.80">
|
||||
<names>
|
||||
<name lang="el">2789-9023</name>
|
||||
<name lang="en">2789-9023</name>
|
||||
<name lang="fr">2789-9023</name>
|
||||
<name lang="it">2789-9023</name>
|
||||
<name lang="be">2789-9023</name>
|
||||
<name lang="cs">2789-9023</name>
|
||||
<name lang="es">2789-9023</name>
|
||||
<name lang="de">2789-9023</name>
|
||||
<name lang="ar">2789-9023</name>
|
||||
<name lang="nl">2789-9023</name>
|
||||
<name lang="pl">2789-9023</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
|
||||
<elementInformation show="1" name="designation">2789-9023</elementInformation>
|
||||
<elementInformation show="1" name="description">Comm.-Module Ethernet/IP</elementInformation>
|
||||
</elementInformations>
|
||||
<informations>Author: plc-user for QElectroTech
|
||||
License:see https://qelectrotech.org/wiki_new/doc/elements_license
|
||||
</informations>
|
||||
<description>
|
||||
<rect height="80" x="-30" rx="0" y="-40" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" width="60"/>
|
||||
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" x="-17.0156" text="EtherNet/IP" y="16" color="#000000" rotation="0"/>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-14" text="WAGO" y="-11" color="#000000" rotation="0"/>
|
||||
<text font="Sans Serif,4,-1,5,50,0,0,0,0,0" x="7.1094" text="X6" y="33" color="#000000" rotation="0"/>
|
||||
<text font="Sans Serif,4,-1,5,50,0,0,0,0,0" x="-12.3906" text="X5" y="33" color="#000000" rotation="0"/>
|
||||
<circle x="7.5" y="37.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<circle x="-12.5" y="37.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
|
||||
<polygon x1="0" y2="-36" x2="0" y1="-42" antialias="false" closed="false" style="line-style:normal;line-weight:hight;filling:none;color:black"/>
|
||||
<line y1="2" y2="2" x1="30" end2="none" end1="none" length2="1.5" x2="-30" style="line-style:dotted;line-weight:normal;filling:none;color:black" length1="1.5" antialias="true"/>
|
||||
<dynamic_text z="17" font="Sans Serif,7,-1,5,50,0,0,0,0,0" Valignment="AlignVCenter" x="-4" y="-38" text_width="-1" text_from="ElementInfo" Halignment="AlignHCenter" uuid="{7887e1bf-7914-4463-9f3a-9d4e58ed52ff}" rotation="0" frame="false">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" x="-24" text="2789-9023" y="-1" color="#000000" rotation="0"/>
|
||||
<terminal x="-10" orientation="s" y="40"/>
|
||||
<terminal x="10" orientation="s" y="40"/>
|
||||
<terminal x="0" orientation="n" y="-40"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,72 @@
|
||||
<definition hotspot_y="55" type="element" width="730" version="0.90" hotspot_x="365" link_type="simple" height="110">
|
||||
<names>
|
||||
<name lang="fr">857-955</name>
|
||||
<name lang="de">857-955</name>
|
||||
<name lang="en">857-955</name>
|
||||
<name lang="cs">857-955</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="designation">857-955</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 x="180" width="40" ry="0" y="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" antialias="false" height="20"/>
|
||||
<rect x="20" width="40" ry="0" y="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" antialias="false" height="20"/>
|
||||
<rect x="-140" width="120" ry="0" y="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" antialias="false" height="20"/>
|
||||
<rect x="100" width="200" ry="0" y="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" antialias="false" height="40"/>
|
||||
<circle x="117.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="-122.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="197.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="-202.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="5"/>
|
||||
<line length1="1.5" x1="-360" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-360" end1="none" length2="1.5" y2="50" end2="none" antialias="false"/>
|
||||
<circle x="277.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="-282.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="37.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="5"/>
|
||||
<circle x="-42.5" y="-42.5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="5"/>
|
||||
<line length1="1.5" x1="360" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="360" end1="none" length2="1.5" y2="50" end2="none" antialias="false"/>
|
||||
<dynamic_text x="220" frame="false" text_width="-1" text_from="ElementInfo" y="29.5" rotation="0" z="15" keep_visual_rotation="false" Halignment="AlignLeft" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{08b520de-9509-4072-a480-6e36ea9f161c}">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<line length1="1.5" x1="-117" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-43" end1="none" length2="1.5" y2="-40" end2="none" antialias="false"/>
|
||||
<line length1="1.5" x1="123" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="197" end1="none" length2="1.5" y2="-40" end2="none" antialias="false"/>
|
||||
<line length1="1.5" x1="-197" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-123" end1="none" length2="1.5" y2="-40" end2="none" antialias="false"/>
|
||||
<line length1="1.5" x1="203" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="277" end1="none" length2="1.5" y2="-40" end2="none" antialias="false"/>
|
||||
<line length1="1.5" x1="-277" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-203" end1="none" length2="1.5" y2="-40" end2="none" antialias="false"/>
|
||||
<line length1="1.5" x1="283" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="360" end1="none" length2="1.5" y2="-40" end2="none" antialias="false"/>
|
||||
<line length1="1.5" x1="-360" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-283" end1="none" length2="1.5" y2="-40" end2="none" antialias="false"/>
|
||||
<line length1="1.5" x1="-37" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="37" end1="none" length2="1.5" y2="-40" end2="none" antialias="false"/>
|
||||
<line length1="1.5" x1="43" y1="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="117" end1="none" length2="1.5" y2="-40" end2="none" antialias="false"/>
|
||||
<line length1="1.5" x1="-360" y1="50" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="360" end1="none" length2="1.5" y2="50" end2="none" antialias="false"/>
|
||||
<text x="206" y="-42" rotation="0" color="#000000" text="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-128" y="-24" rotation="0" color="#000000" text="M1" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="116" y="-24" rotation="0" color="#000000" text="M" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="125" y="-42" rotation="0" color="#000000" text="6" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-130" y="45" rotation="0" color="#000000" text="Short Circuit Protected Relay Modul" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-196" y="-42" rotation="0" color="#000000" text="2" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-210" y="-24" rotation="0" color="#000000" text="A2-" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="194" y="-24" rotation="0" color="#000000" text="L+" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-114" y="-42" rotation="0" color="#000000" text="3" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-276" y="-42" rotation="0" color="#000000" text="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-290" y="-24" rotation="0" color="#000000" text="A1+" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="276" y="-24" rotation="0" color="#000000" text="M" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-34" y="-42" rotation="0" color="#000000" text="4" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-330" y="45" rotation="0" color="#000000" text="WAGO 857-955" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="286" y="-42" rotation="0" color="#000000" text="8" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="-48" y="-24" rotation="0" color="#000000" text="M2" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="32" y="-24" rotation="0" color="#000000" text="NO" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
|
||||
<text x="46" y="-42" rotation="0" color="#000000" text="5" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
|
||||
<rect x="-300" width="120" ry="0" y="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" rx="0" antialias="false" height="20"/>
|
||||
<terminal x="40" orientation="n" type="Generic" y="-40" name="" uuid="{7ddf1261-5192-497c-8d8a-f47e57b45358}"/>
|
||||
<terminal x="120" orientation="n" type="Generic" y="-40" name="" uuid="{8cf6e2b7-0612-4978-bed3-330c3df477a0}"/>
|
||||
<terminal x="280" orientation="n" type="Generic" y="-40" name="" uuid="{f50050d2-8991-4b0c-96d2-e0d97c1a06d2}"/>
|
||||
<terminal x="200" orientation="n" type="Generic" y="-40" name="" uuid="{c25cc3fe-5230-4f3d-9406-fb779eb78e74}"/>
|
||||
<terminal x="-200" orientation="n" type="Generic" y="-40" name="" uuid="{5ba27f5d-039a-40a2-9288-ebe910337586}"/>
|
||||
<terminal x="-40" orientation="n" type="Generic" y="-40" name="" uuid="{048be950-7197-4c11-b06b-932b53ff09da}"/>
|
||||
<terminal x="-120" orientation="n" type="Generic" y="-40" name="" uuid="{e2cf551a-e906-46a4-a00a-b51d67c5c974}"/>
|
||||
<terminal x="-280" orientation="n" type="Generic" y="-40" name="" uuid="{a869182e-0db8-402a-9619-6a445d89579f}"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -0,0 +1,73 @@
|
||||
<definition link_type="simple" hotspot_x="365" hotspot_y="55" height="110" type="element" width="730" version="0.90">
|
||||
<names>
|
||||
<name lang="fr">857-1430</name>
|
||||
<name lang="en">857-1430</name>
|
||||
<name lang="de">857-1430</name>
|
||||
<name lang="cs">857-1430</name>
|
||||
</names>
|
||||
<elementInformations>
|
||||
<elementInformation show="1" name="designation">857-1430</elementInformation>
|
||||
<elementInformation show="1" name="description">double optocoupler optokoppler</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:none;color:black" rx="0" x="-360" height="90" ry="0" antialias="false" width="720" y="-40"/>
|
||||
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-18" x3="-13" x1="-8" antialias="false" y1="16" y2="16" y3="6"/>
|
||||
<polygon x2="200" y1="-40" y4="-22" x6="17" closed="false" x8="280" y3="-25" antialias="false" y7="-8" y9="-40" y8="-8" y5="-17" x3="17" x7="17" y6="-12" x5="12" x1="200" x9="280" y2="-25" style="line-style:normal;line-weight:normal;filling:none;color:black" x4="17"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x2="-8" end1="none" length1="1.5" x1="-18" antialias="false" end2="none" y1="6" y2="6"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x2="12" end1="none" length1="1.5" x1="12" antialias="false" end2="none" y1="5" y2="15"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="117.5" antialias="true" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-122.5" antialias="true" diameter="5" y="-42.5"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x2="17" end1="none" length1="1.5" x1="12" antialias="false" end2="simple" y1="10" y2="15"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x2="7" end1="none" length1="1.5" x1="-3" antialias="false" end2="simple" y1="8" y2="8"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="197.5" antialias="true" diameter="5" y="-42.5"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x2="7" end1="none" length1="1.5" x1="-3" antialias="false" end2="simple" y1="12" y2="12"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-202.5" antialias="true" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="277.5" antialias="true" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-282.5" antialias="true" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="37.5" antialias="true" diameter="5" y="-42.5"/>
|
||||
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-42.5" antialias="true" diameter="5" y="-42.5"/>
|
||||
<text x="206" text="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42"/>
|
||||
<dynamic_text text_width="-1" frame="false" x="220" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" keep_visual_rotation="false" Halignment="AlignLeft" uuid="{08b520de-9509-4072-a480-6e36ea9f161c}" y="29.5" z="19" text_from="ElementInfo">
|
||||
<text></text>
|
||||
<info_name>label</info_name>
|
||||
</dynamic_text>
|
||||
<text x="-116" text="A3+" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-26"/>
|
||||
<text x="128" text="14" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-26"/>
|
||||
<text x="125" text="6" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42"/>
|
||||
<text x="-130" text="Optocoupler" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="45"/>
|
||||
<text x="-196" text="2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42"/>
|
||||
<text x="-197" text="A2-" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-26"/>
|
||||
<text x="203" text="23+" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-26"/>
|
||||
<text x="-114" text="3" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42"/>
|
||||
<text x="-276" text="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42"/>
|
||||
<text x="-277" text="A1+" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-26"/>
|
||||
<text x="288" text="24" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-26"/>
|
||||
<text x="-34" text="4" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42"/>
|
||||
<text x="-330" text="WAGO 857-1430" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="45"/>
|
||||
<text x="286" text="8" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42"/>
|
||||
<text x="-37" text="A4-" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-26"/>
|
||||
<text x="43" text="13+" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-26"/>
|
||||
<text x="46" text="5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42"/>
|
||||
<polygon style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-18" x3="-13" x1="-8" antialias="false" y1="-12" y2="-12" y3="-22"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x2="-8" end1="none" length1="1.5" x1="-18" antialias="false" end2="none" y1="-22" y2="-22"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x2="12" end1="none" length1="1.5" x1="12" antialias="false" end2="none" y1="-22" y2="-12"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x2="17" end1="none" length1="1.5" x1="12" antialias="false" end2="simple" y1="-17" y2="-12"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x2="7" end1="none" length1="1.5" x1="-3" antialias="false" end2="simple" y1="-19" y2="-19"/>
|
||||
<line style="line-style:normal;line-weight:normal;filling:none;color:black" length2="1.5" x2="7" end1="none" length1="1.5" x1="-3" antialias="false" end2="simple" y1="-15" y2="-15"/>
|
||||
<polygon y4="-25" x5="-40" style="line-style:normal;line-weight:normal;filling:none;color:black" y5="-25" closed="false" x2="-120" x3="-13" y6="-40" x1="-120" antialias="false" y1="-40" y2="-8" y3="-8" x4="-13" x6="-40"/>
|
||||
<polygon y4="2" x5="-200" style="line-style:normal;line-weight:normal;filling:none;color:black" y5="2" closed="false" x2="-280" x3="-13" y6="-40" x1="-280" antialias="false" y1="-40" y2="19" y3="19" x4="-13" x6="-200"/>
|
||||
<polygon x2="40" y1="-40" y4="5" x6="17" closed="false" x8="120" y3="2" antialias="false" y7="19" y9="-40" y8="19" y5="10" x3="17" x7="17" y6="15" x5="12" x1="40" x9="120" y2="2" style="line-style:normal;line-weight:normal;filling:none;color:black" x4="17"/>
|
||||
<terminal orientation="n" x="200" uuid="{c25cc3fe-5230-4f3d-9406-fb779eb78e74}" type="Generic" name="23" y="-40"/>
|
||||
<terminal orientation="n" x="-280" uuid="{a869182e-0db8-402a-9619-6a445d89579f}" type="Generic" name="A1" y="-40"/>
|
||||
<terminal orientation="n" x="-200" uuid="{5ba27f5d-039a-40a2-9288-ebe910337586}" type="Generic" name="A2" y="-40"/>
|
||||
<terminal orientation="n" x="40" uuid="{7ddf1261-5192-497c-8d8a-f47e57b45358}" type="Generic" name="13" y="-40"/>
|
||||
<terminal orientation="n" x="280" uuid="{f50050d2-8991-4b0c-96d2-e0d97c1a06d2}" type="Generic" name="24" y="-40"/>
|
||||
<terminal orientation="n" x="-40" uuid="{048be950-7197-4c11-b06b-932b53ff09da}" type="Generic" name="A4" y="-40"/>
|
||||
<terminal orientation="n" x="120" uuid="{8cf6e2b7-0612-4978-bed3-330c3df477a0}" type="Generic" name="14" y="-40"/>
|
||||
<terminal orientation="n" x="-120" uuid="{e2cf551a-e906-46a4-a00a-b51d67c5c974}" type="Generic" name="A3" y="-40"/>
|
||||
</description>
|
||||
</definition>
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition height="80" link_type="simple" width="210" type="element" hotspot_x="105" version="0.90" hotspot_y="40">
|
||||
<definition height="80" link_type="thumbnail" width="210" type="element" hotspot_x="105" version="0.90" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="de">Tragschiene TS35 100 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 100 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="205" width="410" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="205" width="410" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 200 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 200 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="225" width="450" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="225" width="450" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 220 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 220 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition link_type="simple" hotspot_x="230" height="80" hotspot_y="40" type="element" width="460" version="0.90">
|
||||
<definition link_type="thumbnail" hotspot_x="230" height="80" hotspot_y="40" type="element" width="460" version="0.90">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 225 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 225 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="305" width="610" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="305" width="610" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 300 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 300 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="405" width="810" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="405" width="810" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 400 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 400 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="505" width="1010" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="505" width="1010" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 500 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 500 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="605" width="1210" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="605" width="1210" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 600 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 600 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="705" width="1410" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="705" width="1410" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 700 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 700 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition width="1610" hotspot_y="40" link_type="simple" version="0.90" type="element" height="80" hotspot_x="805">
|
||||
<definition width="1610" hotspot_y="40" link_type="thumbnail" version="0.90" type="element" height="80" hotspot_x="805">
|
||||
<names>
|
||||
<name lang="de">Tragschiene TS35 800 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 800 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_y="40" width="1810" type="element" version="0.90" hotspot_x="905" height="80" link_type="simple">
|
||||
<definition hotspot_y="40" width="1810" type="element" version="0.90" hotspot_x="905" height="80" link_type="thumbnail">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 900 mm</name>
|
||||
<name lang="fr">DIN-Rail TS35 900 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition height="80" link_type="simple" width="2010" type="element" hotspot_x="1005" version="0.90" hotspot_y="40">
|
||||
<definition height="80" link_type="thumbnail" width="2010" type="element" hotspot_x="1005" version="0.90" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="de">Tragschiene TS35 1000 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 1000 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition height="80" link_type="simple" width="210" hotspot_x="105" type="element" version="0.90" hotspot_y="40">
|
||||
<definition height="80" link_type="thumbnail" width="210" hotspot_x="105" type="element" version="0.90" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="de">Tragschiene TS35; 100 mm (gelocht)</name>
|
||||
<name lang="fr">DIN-Rail TS35; slotted; 100 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition width="410" type="element" hotspot_y="40" version="0.90" hotspot_x="205" height="80" link_type="simple">
|
||||
<definition width="410" type="element" hotspot_y="40" version="0.90" hotspot_x="205" height="80" link_type="thumbnail">
|
||||
<names>
|
||||
<name lang="cs">DIN-Rail TS35; slotted; 200 mm</name>
|
||||
<name lang="en">DIN-Rail TS35; slotted; 200 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition link_type="simple" hotspot_x="225" height="80" hotspot_y="40" type="element" width="450" version="0.90">
|
||||
<definition link_type="thumbnail" hotspot_x="225" height="80" hotspot_y="40" type="element" width="450" version="0.90">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35; slotted; 220 mm</name>
|
||||
<name lang="fr">DIN-Rail TS35; slotted; 220 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition link_type="simple" hotspot_x="230" height="80" hotspot_y="40" type="element" width="460" version="0.90">
|
||||
<definition link_type="thumbnail" hotspot_x="230" height="80" hotspot_y="40" type="element" width="460" version="0.90">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35; slotted; 225 mm</name>
|
||||
<name lang="fr">DIN-Rail TS35; slotted; 225 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="305" hotspot_y="40" width="610" height="80" version="0.90" type="element" link_type="simple">
|
||||
<definition hotspot_x="305" hotspot_y="40" width="610" height="80" version="0.90" type="element" link_type="thumbnail">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35; slotted; 300 mm</name>
|
||||
<name lang="fr">DIN-Rail TS35; slotted; 300 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="405" hotspot_y="40" type="element" width="810" link_type="simple" height="80" version="0.90">
|
||||
<definition hotspot_x="405" hotspot_y="40" type="element" width="810" link_type="thumbnail" height="80" version="0.90">
|
||||
<names>
|
||||
<name lang="cs">DIN-Rail TS35; slotted; 400 mm</name>
|
||||
<name lang="de">Tragschiene TS35; 400 mm (gelocht)</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition height="80" hotspot_x="505" link_type="simple" width="1010" version="0.90" type="element" hotspot_y="40">
|
||||
<definition height="80" hotspot_x="505" link_type="thumbnail" width="1010" version="0.90" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="cs">DIN-Rail TS35; slotted; 500 mm</name>
|
||||
<name lang="de">Tragschiene TS35; 500 mm (gelocht)</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition version="0.90" type="element" height="80" hotspot_y="40" hotspot_x="605" width="1210" link_type="simple">
|
||||
<definition version="0.90" type="element" height="80" hotspot_y="40" hotspot_x="605" width="1210" link_type="thumbnail">
|
||||
<names>
|
||||
<name lang="de">Tragschiene TS35; 600 mm (gelocht)</name>
|
||||
<name lang="en">DIN-Rail TS35; slotted; 600 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_y="40" hotspot_x="705" width="1410" version="0.90" link_type="simple" type="element" height="80">
|
||||
<definition hotspot_y="40" hotspot_x="705" width="1410" version="0.90" link_type="thumbnail" type="element" height="80">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35; slotted; 700 mm</name>
|
||||
<name lang="fr">DIN-Rail TS35; slotted; 700 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition width="1610" hotspot_y="40" link_type="simple" version="0.90" type="element" height="80" hotspot_x="805">
|
||||
<definition width="1610" hotspot_y="40" link_type="thumbnail" version="0.90" type="element" height="80" hotspot_x="805">
|
||||
<names>
|
||||
<name lang="de">Tragschiene TS35; 800 mm (gelocht)</name>
|
||||
<name lang="cs">DIN-Rail TS35; slotted; 800 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_y="40" width="1810" type="element" version="0.90" hotspot_x="905" height="80" link_type="simple">
|
||||
<definition hotspot_y="40" width="1810" type="element" version="0.90" hotspot_x="905" height="80" link_type="thumbnail">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35; slotted; 900 mm</name>
|
||||
<name lang="fr">DIN-Rail TS35; slotted; 900 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_y="40" version="0.90" type="element" link_type="simple" hotspot_x="1005" width="2010" height="80">
|
||||
<definition hotspot_y="40" version="0.90" type="element" link_type="thumbnail" hotspot_x="1005" width="2010" height="80">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35; slotted; 1000 mm</name>
|
||||
<name lang="fr">DIN-Rail TS35; slotted; 1000 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition height="80" link_type="simple" width="210" type="element" hotspot_x="105" version="0.90" hotspot_y="40">
|
||||
<definition height="80" link_type="thumbnail" width="210" type="element" hotspot_x="105" version="0.90" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="de">Tragschiene TS35 Cu 100 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 Cu 100 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="205" width="410" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="205" width="410" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 Cu 200 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 Cu 200 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="225" width="450" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="225" width="450" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 Cu 220 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 Cu 220 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition link_type="simple" hotspot_x="230" height="80" hotspot_y="40" type="element" width="460" version="0.90">
|
||||
<definition link_type="thumbnail" hotspot_x="230" height="80" hotspot_y="40" type="element" width="460" version="0.90">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 Cu 225 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 Cu 225 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="305" width="610" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="305" width="610" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 Cu 300 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 Cu 300 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="405" width="810" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="405" width="810" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 Cu 400 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 Cu 400 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="505" width="1010" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="505" width="1010" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 Cu 500 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 Cu 500 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="605" width="1210" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="605" width="1210" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 Cu 600 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 Cu 600 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="705" width="1410" height="80" version="0.90" link_type="simple" type="element" hotspot_y="40">
|
||||
<definition hotspot_x="705" width="1410" height="80" version="0.90" link_type="thumbnail" type="element" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 Cu 700 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 Cu 700 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition width="1610" hotspot_y="40" link_type="simple" version="0.90" type="element" height="80" hotspot_x="805">
|
||||
<definition width="1610" hotspot_y="40" link_type="thumbnail" version="0.90" type="element" height="80" hotspot_x="805">
|
||||
<names>
|
||||
<name lang="de">Tragschiene TS35 Cu 800 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 Cu 800 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_y="40" width="1810" type="element" version="0.90" hotspot_x="905" height="80" link_type="simple">
|
||||
<definition hotspot_y="40" width="1810" type="element" version="0.90" hotspot_x="905" height="80" link_type="thumbnail">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS35 Cu 900 mm</name>
|
||||
<name lang="fr">DIN-Rail TS35 Cu 900 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition height="80" link_type="simple" width="2010" type="element" hotspot_x="1005" version="0.90" hotspot_y="40">
|
||||
<definition height="80" link_type="thumbnail" width="2010" type="element" hotspot_x="1005" version="0.90" hotspot_y="40">
|
||||
<names>
|
||||
<name lang="de">Tragschiene TS35 Cu 1000 mm</name>
|
||||
<name lang="cs">DIN-Rail TS35 Cu 1000 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition type="element" height="40" width="210" link_type="simple" version="0.90" hotspot_x="105" hotspot_y="20">
|
||||
<definition type="element" height="40" width="210" link_type="thumbnail" version="0.90" hotspot_x="105" hotspot_y="20">
|
||||
<names>
|
||||
<name lang="cs">DIN-Rail TS15 100 mm</name>
|
||||
<name lang="en">DIN-Rail TS15 100 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="205" width="410" height="40" version="0.90" link_type="simple" type="element" hotspot_y="20">
|
||||
<definition hotspot_x="205" width="410" height="40" version="0.90" link_type="thumbnail" type="element" hotspot_y="20">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS15 200 mm</name>
|
||||
<name lang="cs">DIN-Rail TS15 200 mm</name>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<definition hotspot_x="225" width="450" height="40" version="0.90" link_type="simple" type="element" hotspot_y="20">
|
||||
<definition hotspot_x="225" width="450" height="40" version="0.90" link_type="thumbnail" type="element" hotspot_y="20">
|
||||
<names>
|
||||
<name lang="en">DIN-Rail TS15 220 mm</name>
|
||||
<name lang="cs">DIN-Rail TS15 220 mm</name>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user