InFocus C85 user manual

User manual for the device InFocus C85

Device: InFocus C85
Category: Projector
Manufacturer: InFocus
Size: 0.08 MB
Added : 3/11/2014
Number of pages: 12
Print the manual

Download

How to use this site?

Our goal is to provide you with a quick access to the content of the user manual for InFocus C85. Using the online preview, you can quickly view the contents and go to the page where you will find the solution to your problem with InFocus C85.

For your convenience

If looking through the InFocus C85 user manual directly on this website is not convenient for you, there are two possible solutions:

  • Full Screen Viewing - to easily view the user manual (without downloading it to your computer), you can use full-screen viewing mode. To start viewing the user manual InFocus C85 on full screen, use the button Fullscreen.
  • Downloading to your computer - You can also download the user manual InFocus C85 to your computer and keep it in your files. However, if you do not want to take up too much of your disk space, you can always download it in the future from ManualsBase.
InFocus C85 User manual - Online PDF
Advertisement
« Page 1 of 12 »
Advertisement
Print version

Many people prefer to read the documents not on the screen, but in the printed version. The option to print the manual has also been provided, and you can use it by clicking the link above - Print the manual. You do not have to print the entire manual InFocus C85 but the selected pages only. paper.

Summaries

Below you will find previews of the content of the user manuals presented on the following pages to InFocus C85. If you want to quickly view the content of pages found on the following pages of the manual, you can use them.

Abstracts of contents
Summary of the content on the page No. 1

Version 1.0
C85/C95/C105
REVISED VERIFIED APPROVED
n.a. n.a.

Summary of the content on the page No. 2

Projector Control 1 SETTING UP .................................................................................................................................... 3 1.1 RS232 CONTROL CABLE................................................................................................................................................3 1.2 RS232 SETTINGS ..................................................................................................................................................

Summary of the content on the page No. 3

Projector Control 1 SETTING UP To enable serial control, do the following: • Remove the check mark from “Serial Mouse” in the Projector’s FEATURE MENU. This changes the Baudrate from 1200 to 9600 and turns of the Serial mouse data. • Connect the serial (COM) port from the Host to the RS232 connector on the projector 1.1 Rs232 Control Cables Please order the following parts: Part Number Description 301.102A Mouse Cable 4 meter 301.113B PC Mouse Adapter RS232 Straight Table 1 1.2 RS232 Settings

Summary of the content on the page No. 4

Projector Control 2 GENERAL This document describes the Communication Protocol between a Proxima® Projector and a Computer (Host). By using this connection the Host will be able control the projector. This document is HEX command based only and a regular Terminal program like hyperterminal etc. can therefore not directly be used unless the COM port are activated by the user. This document is aimed at control systems in general which is HEX based. 3 FUNCTION TYPE The Function is grouped in four

Summary of the content on the page No. 5

Projector Control Currently there is only one type of body so the size is fixed to 0x0006. The CRC field contains the CRC of the message. The CRC algorithm is given in Appendix 1. To disable CRC set CRC_lo=0x00 and CRC_hi = 0x00. The Message Head – if the CRC are disabled – then looks like the following string: 0xBE 0xEF 0x80 0x06 0x00 0x00 0x00. This Head will be present in all strings sent to the projector from the host. 4.1.2 Message Body The message body has the following structure: Byte 0

Summary of the content on the page No. 6

Projector Control 5 COMMAND RETURN CODES The Serial protocol returns an acknowledgment (“return code”) for every packet sent. If the host sends a packet, then the projector acknowledge the receipt of this packet. The return codes are detailed in the table below. Command Return Code Name Return Code Value Description ACK 0x06 Packet acknowledged – no errors. Normal response when receiving NAK 0x15 Packet not acknowledged – some error occurred in receiving this packet. Usually Indicates a CRC erro

Summary of the content on the page No. 7

Projector Control Host: 0xBE 0xEF 0x80 0x06 0x00 0x00 0x00 0x01 0x00 0x01 0x00 0x01 0x00 Example 5: Hex sequence for get Brightness Host: => 0xBE 0xEF 0x80 0x06 0x00 0xBD 0x70 0x02 0x00 0x11 0x00 0x00 0x00 <= Projector (70%) 0x1D 0x00 0xB2 Example 5: To get ASCII Information Set Parameter in the State String function Host: Projector Operation Set Packet => <=ASCII Strings <= ACK Page 7 Version 1.

Summary of the content on the page No. 8

Projector Control 6 TABLE OF FUNCTIONS Scr.dep = Source depended Function FuncNum F.type States Minimum Maximum Power 0x01 State 1 (On) - - 0 (Off) Reset 0x02 Execute - - - Tune 0x03 Adjust - 0 255 Width 0x04 Adjust - 0 4095 Horizontal 0x05 Adjust - 0 4095 position Vertical position 0x06 Adjust - 0 4095 ColorTemp 0x07 Adjust - 0 3 Rear 0x08 State 1 (On) - - 0 (Off) Ceiling 0x09 State 1 (On) - - 0 (Off) Factory reset 0x0A Execute - - - Table 9 Function FuncNum F.type States Minimum Maximum Contra

Summary of the content on the page No. 9

Projector Control Function FuncNum F.type States Minimum Maximum On screen display 0x30 State 1 (On) - - 0 (Off) Source 0x32 State 0 (VGA1) - - 1 (DVI1) 2 (S-VIDEO1) 3 (CVBS1) 4 (VGA2) 5 (DVI2) 6 (S-VIDEO2) 7 (CVBS2) Language 0x33 State 0 (English) - - 1(Japanese) 2(Norwegian) 3 (Deutch) 4 (Italian) 5 (Spanish) 6 (Korean) 7 (Simpl Chi) 8 (Trad Chi) 9 (Portugeese) 10(French) Black 0x34 State 1 (On) - - 0 (Off) Magnify 0x35 Adjust - 0 26 Pan horizontal 0x36 Adjust - Scr.dep Scr.dep Pan vertical 0x

Summary of the content on the page No. 10

Projector Control APPENDIX 1: CRC CALCULATION ALGORITHM The following ‘C’ code can be used to calculate the 16-bit CRC required for all packets. The CRC is contained in the packet header and is calculated for the entire packet (header plus body). The CRC calculation is performed with the CRC bytes of the packet header initialized to zero. // Using two 256 byte lookup tables, quickly calculate a 16-bit CRC on // a block of data. // Params: // pcData : Pointer to data to calculate CRC on. // nCoun

Summary of the content on the page No. 11

Projector Control // Lookup table used for hi-byte of CRC static const BYTE cCRCHiArray[] = { 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01,0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80,0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01,0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81,0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00,0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80,0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00

Summary of the content on the page No. 12

Projector Control // Lookup table used for low-byte of CRC static const BYTE cCRCLoArray[] = { 0x00, 0xC0, 0xC1, 0x01, 0xC3, 0x03, 0x02, 0xC2, 0xC6,0x06, 0x07, 0xC7, 0x05, 0xC5, 0xC4, 0x04, 0xCC, 0x0C, 0x0D,0xCD, 0x0F, 0xCF, 0xCE, 0x0E, 0x0A, 0xCA, 0xCB, 0x0B, 0xC9,0x09, 0x08, 0xC8, 0xD8, 0x18, 0x19, 0xD9, 0x1B, 0xDB, 0xDA,0x1A, 0x1E, 0xDE, 0xDF, 0x1F, 0xDD, 0x1D, 0x1C, 0xDC, 0x14,0xD4, 0xD5, 0x15, 0xD7, 0x17, 0x16, 0xD6, 0xD2, 0x12, 0x13,0xD3, 0x11, 0xD1, 0xD0, 0x10, 0xF0, 0x30, 0x31, 0xF1, 0x3


Alternative user manuals
# User manual Category Download
1 InFocus 610 User manual Projector 49
2 InFocus 620 User manual Projector 24
3 InFocus ASK PROXIMA C105 User manual Projector 8
4 InFocus ASK Proxima C450 User manual Projector 4
5 InFocus ASK Proxima C250W User manual Projector 3
6 InFocus ASK PROXIMA M3 X350 User manual Projector 4
7 InFocus ASK Proxima C440 User manual Projector 3
8 InFocus ASK Proxima C170 User manual Projector 18
9 InFocus ASK C160 User manual Projector 3
10 InFocus ASK Proxima C250 User manual Projector 4
11 InFocus ASK Proxima M1 User manual Projector 8
12 InFocus 760 User manual Projector 6
13 InFocus ASK PROXIMA C95 User manual Projector 13
14 InFocus C200 User manual Projector 1
15 InFocus C300HB User manual Projector 1
16 Edelbrock 17930 User manual Projector 0
17 Sony BRIGHTERA VPL-FH30 User manual Projector 40
18 Sony 53S75 User manual Projector 4
19 Sony CX125 User manual Projector 12
20 Sony Cineza VPL-HS3 User manual Projector 63