Руководство по эксплуатации AMX i!-EquipmentMonitor

Руководство по эксплуатации для устройства AMX i!-EquipmentMonitor

Устройство: AMX i!-EquipmentMonitor
Категория: Монитор
Производитель: AMX
Размер: 0.2 MB
Добавлено: 9/15/2014
Количество страниц: 18
Печатать инструкцию

Скачать

Как пользоваться?

Наша цель - обеспечить Вам самый быстрый доступ к руководству по эксплуатации устройства AMX i!-EquipmentMonitor. Пользуясь просмотром онлайн Вы можете быстро просмотреть содержание и перейти на страницу, на которой найдете решение своей проблемы с AMX i!-EquipmentMonitor.

Для Вашего удобства

Если просмотр руководства AMX i!-EquipmentMonitor непосредственно на этой странице для Вас неудобен, Вы можете воспользоваться двумя возможными решениями:

  • Полноэкранный просмотр -, Чтобы удобно просматривать инструкцию (без скачивания на компьютер) Вы можете использовать режим полноэкранного просмотра. Чтобы запустить просмотр инструкции AMX i!-EquipmentMonitor на полном экране, используйте кнопку Полный экран.
  • Скачивание на компьютер - Вы можете также скачать инструкцию AMX i!-EquipmentMonitor на свой компьютер и сохранить ее в своем архиве. Если ты все же не хотите занимать место на своем устройстве, Вы всегда можете скачать ее из ManualsBase.
AMX i!-EquipmentMonitor Руководство по эксплуатации - Online PDF
Advertisement
« Page 1 of 18 »
Advertisement
Печатная версия

Многие предпочитают читать документы не на экране, а в печатной версии. Опция распечатки инструкции также предусмотрена и Вы можете воспользоваться ею нажав на ссылку, находящуюся выше - Печатать инструкцию. Вам не обязательно печатать всю инструкцию AMX i!-EquipmentMonitor а только некоторые страницы. Берегите бумагу.

Резюме

Ниже Вы найдете заявки которые находятся на очередных страницах инструкции для AMX i!-EquipmentMonitor. Если Вы хотите быстро просмотреть содержимое страниц, которые находятся на очередных страницах инструкции, Вы воспользоваться ими.

Краткое содержание
Краткое содержание страницы № 1

instruction manual
i!-EquipmentMonitor
integration!Solutions

Краткое содержание страницы № 2

Software Limited Agreement LIMITED WARRANTY LIMITED WARRANTY. AMX Corporation warrants that the SOFTWARE will perform substantially in accordance with the accompanying written materials for a period of ninety (90) days from the date of receipt. Any implied warranties on the SOFTWARE and hardware are limited to ninety (90) days and one (1) year, respectively. Some states/countries do not allow limitations on duration of an implied warranty, so the above limitation may not apply to you. CUSTOME

Краткое содержание страницы № 3

Table of Contents Table of Contents Introduction ...............................................................................................................1 Supported Operating Systems .......................................................................................... 1 Minimum PC Requirements .............................................................................................. 1 Installing i!-EquipmentMonitor..................................................................

Краткое содержание страницы № 4

Table of Contents ii i!-EquipmentMonitor

Краткое содержание страницы № 5

Introduction Introduction ™ i!-EquipmentMonitor is an application that allows you to send and receive e-mail directly from a ™ NetLinx Control System. i!-EquipmentMonitor is primarily used to send and receive NetLinx Control System e-mails, such as sending e-mail notifications for system problems or equipment trouble and receiving e-mails for Control System messaging. i!-EquipmentMonitor consists of the following files: i!-EquipmentMonitorIn.axi is an include file for receiving e-mails usin

Краткое содержание страницы № 6

Introduction Installing i!-EquipmentMonitor 1. In Explorer, double-click i!-EquipmentMonitorSetup.exe from the directory window where you downloaded the i!-EquipmentMonitor install program. 2. After reading the License Agreement, select I Agree and Next to proceed. 3. The Welcome To i!-EquipmentMonitor Setup dialog appears, reminding you to close all Windows programs before going any further. Click Next to proceed. 4. In the Select i!-EquipmentMonitor Install Location dialog, use the Browse bu

Краткое содержание страницы № 7

Running i!-EquipmentMonitor Running i!-EquipmentMonitor Very little work is required to add e-mail support to your existing NetLinx code. Receiving and sending e-mail are independent of each other; each one will be covered in it's own section. You do not need to add support for sending and receiving if only one of the features is needed. Sending Email To support sending email, first include the i!-EquipmentMonitorOut.axi (page 7) into your program: #INCLUDE 'i!-EquipmentMonitorOut.axi' /

Краткое содержание страницы № 8

Running i!-EquipmentMonitor Now, all you need to do is call the function that sends an email. If you want to send an email every time someone presses a button on a touch panel, your code would look like this: BUTTON_EVENT[dvTP,1] { PUSH: { SmtpQueMessage('fromAddress@mydomain.com', 'toAddress@mydomain.com ', 'My Emails subject’, 'this is the body of my email! Wow, this is Cool!',

Краткое содержание страницы № 9

Running i!-EquipmentMonitor Pop3SetServer ('mail.mydomain.com') Or Pop3SetServer ('192.168.12.175') Next, you need to setup the user and password for the email account you will be retrieving email from. Your email administrator should supply you with a user name and password for an email account that can receive email. Once you have these, call Pop3SetUser() and supply these values like this: Pop3SetRefresh(300,1) // How often the check email server in Seconds and should I de

Краткое содержание страницы № 10

Running i!-EquipmentMonitor You can use the following code to loop through the downloaded emails whenever new email arrives: DATA_EVENT[dvPop3Socket] { OFFLINE: { STACK_VAR INTEGER nLoop Integer nLoop1 For (nLoop=1;nLoop<=nPop3QtyMail;nLoop++) { SEND_STRING 0,'i!Email Test-Print Message' SEND_STRING 0,' ' SEND_STRING 0,"'Message #',Itoa(nLoop)" SEND_STRING 0,"'Date:',sPop3EmailMessage[nLoop].cDate" SEND_STRING 0,"'From: "',sPop3EmailMessage

Краткое содержание страницы № 11

Running i!-EquipmentMonitor i!-EquipmentMonitorOut.axi Constants The following table lists i!-EquipmentMonitorOut.axi constants. i!-EquipmentMonitorOut.axi Constants dvSmtpSocket The IP device number for sending e-mails (default = 0:10:0}. SMTP_VERSION The version number of the include file. SMTP_PORT IP Port that the SMTP server is listening on (default = 25). SMTP_SERVER_TO Timeout in 1/10 for contacting the SMTP server (default = 1200). SMTP_URL_MAX Maximum length for e-mail server name (defa

Краткое содержание страницы № 12

Running i!-EquipmentMonitor Structures The following defines an i!-EquipmentMonitorOut.axi structure: Structure _sSMTPMessage { CHAR cDate[SMTP_LINE_MAX]; CHAR cSource[SMTP_USER_MAX]; CHAR cDest[SMTP_USER_MAX]; CHAR cSubject[SMTP_LINE_MAX]; CHAR cMessage[SMTP_MSG_MAX]; CHAR cFile[SMTP_LINE_MAX]; } Variable The following is an i!-EquipmentMonitorOut.axi variable: VOLATILE CHAR bSMTPDebug Set to 1 to enable debugging Functions The following are a list of i!-EquipmentMoni

Краткое содержание страницы № 13

Running i!-EquipmentMonitor i!-EquipmentMonitorOut.axi Functions (Cont.) SmtpSetTimeOff- SmtpSetTimeOffset has these arguments: set(CHAR Offset[]) Offset String containing the local timezone offset. This string is formatted as "+/- Call this to configure HHMM" where "+/=" is "+" or "-" depending on your timezone relative to GMT, "HH" is the local timezone the offset in hours relative to GMT and "MM" is the offset in minutes relative to GMT. Some Common Offsets are: -0500 : Eastern time (UTC - 5

Краткое содержание страницы № 14

Running i!-EquipmentMonitor i!-EquipmentMonitorOut.axi Functions (Cont.) SmtpSetUser SmtpSetUser(CHAR LogInName[],CHAR LogInPass[]) Call this to SmtpSetUser has these arguments: configure the LogInNameString containing the username for the SMTP server. username and LogInPassString containing the password for them STMP server. password for SMTP server SmtpSetUser doe not return any values. authentication to send Example: outbound emails. SmtpSetUser ('MyUserName','MyPassword') Remarks: SmtpS

Краткое содержание страницы № 15

Running i!-EquipmentMonitor i!-EquipmentMonitorIn.axi Constants The following table lists the i!-EquipmentMonitorIn.axi constants. i!-EquipmentMonitorIn.axi Constants dvPop3Socket The IP device number for sending e-mails (default = 0:11:0}. POP3_VERSION Version number of the include file. POP3_PORT IP Port that the POP3 server is listening on (default = 110). POP3_BUFFER_MAX Maximum size of buffer for IP socket (default = 2048). POP3_SERVER_TO Timeout in 1/10 for contacting the POP3 server (defa

Краткое содержание страницы № 16

Running i!-EquipmentMonitor Functions The following table lists i!EmailIn.axi functions. i!-EquipmentMonitorIn.axi Functions Pop3ClearAllEmail Syntax: Messages Pop3ClearAllEmailMessages() Deletes all e-mails Pop3ClearAllEmailMessages has no arguments. from the internally Example: stored email list. Pop3ClearAllEmailMessages() Remarks: Pop3ClearAllEmailMessages should be called when you want to delete all messages from the internally stored e-mail list. Pop3ClearAllEmailMessages updates nPo

Краткое содержание страницы № 17

Running i!-EquipmentMonitor i!-EquipmentMonitorIn.axi Functions (Cont.) Pop3SetRefresh Syntax: Sets the refresh Pop3SetRefresh(Integer Refresh, CHAR Delete) time the include file Pop3SetRefresh has these arguments: checks for new Refresh: Integer containing the refresh time in seconds. 0 disables automatic e- e-mails and mail retrieval. whether they should be deleted form the Delete: 1 or 0. 1 will delete all e-mails from the server as they are retrieved; 0 will server. leave all e-mails o

Краткое содержание страницы № 18

AMX reserves the right to alter specifications without notice at any time. brussels • dallas • los angeles • mexico city • philadelphia • shanghai • singapore • tampa • toronto* • york 3000 research drive, richardson, TX 75082 USA • 469.624.8000 • 800.222.0193 • fax 469.624.7153 • technical support 800.932.6993 © 033-004-2549 6/05 2005 AMX Corporation. All rights reserved. AMX, the AMX logo, the building icon, the home icon, and the light bulb icon are all trademarks of AMX


Скачавание инструкции
# Руководство по эксплуатации Категория Скачать
1 AMX Modero CV7 Руководство по эксплуатации Монитор 3
2 AMX Modero NXD/NXT-1500VG Руководство по эксплуатации Монитор 3
3 AMX Modero NXD-700Vi Руководство по эксплуатации Монитор 11
4 AMX Modero MVP-8400i Руководство по эксплуатации Монитор 45
5 AMX Modero NXT-1200V Руководство по эксплуатации Монитор 3
6 AMX Modero NXD/NXT-1200VG Руководство по эксплуатации Монитор 1
7 AMX PTM-D15 Руководство по эксплуатации Монитор 1
8 AMX MVP-7500 Руководство по эксплуатации Монитор 24
9 AMX Touch Panels and Accessories VTM-D15/A Руководство по эксплуатации Монитор 0
10 AMX Modero NXD-500i Руководство по эксплуатации Монитор 4
11 AMX Modero MVP-5200i Руководство по эксплуатации Монитор 0
12 AMX Modero ViewPoint MVP-8400 Руководство по эксплуатации Монитор 81
13 AMX MVP-5100 Руководство по эксплуатации Монитор 0
14 AMX VPN-CP Руководство по эксплуатации Монитор 4
15 AMX Modero NXD-1000Vi Руководство по эксплуатации Монитор 6
16 Sony BVM-L170 Руководство по эксплуатации Монитор 7
17 Sony DDM-2802CNU Руководство по эксплуатации Монитор 1
18 Sony BVM-D20F1U, BVM-D20F1E, BVM-D20F1A, BVM-D24E1WU, BVM-D24E1WE, BVM-D24E1WA, BVM-D32E1WU, BVM-D32E1WE, BVM-D32E1WA Руководство по эксплуатации Монитор 15
19 Sony 500A3WE Руководство по эксплуатации Монитор 8
20 Sony CPD-17SF2 Руководство по эксплуатации Монитор 10