Character LCD with an I 2 C Interface (I2C LCD)
|
|
|
- Mercy Hill
- 9 years ago
- Views:
Transcription
1 PSoC Creator Component Datasheet Character LCD with an I 2 C Interface (I2C LCD) 1.0 Features Communicate on a 2-wire I 2 C bus The API is compatible with the current character LCD component A single component may drive one or more LCDs on the same I 2 C bus The I 2 C LCD can coexist on an existing I 2 C bus if the PSoC is the I 2 C master Support for the NXP PCF2119x command format General Description The I 2 C LCD component drives an I 2 C interfaced 2 line by 16 character LCD. The I 2 C LCD component is a wrapper around an I 2 C Master component and makes use of an existing I 2 C Master component. If a project does not already have an I 2 C Master component, one is required in order to operate. When one of the API functions is called, that function calls one or more of the I 2 C Master functions in order to communicate with the LCD. When to Use an I 2 C LCD The I 2 C LCD component is used in applications that require a visual or textual display. This component is also used where a character display is needed but seven consecutive GPIOs on a single GPIO port are not possible. In cases where the project already includes an I 2 C master, no additional GPIO pins are required. Input/Output Connections The component does not have any connection because it is a software component. Cypress Semiconductor Corporation 198 Champion Court San Jose, CA Document Number: Rev. *A Revised April 5, 2013
2 Character LCD with I2C Interface (I2C LCD) PSoC Creator Component Datasheet Component Parameters Drag an I 2 C LCD onto your design and double-click it to open the Configure dialog as illustrated in Figure 1. General Tab The General tab provides options to configure the general settings of the I 2 C LCD. These parameters are available. I 2 C Master Instance Name This parameter is set to the instance name of the I 2 C Master component name. An I 2 C master must reside in the schematic for this component to operate. It uses this name to access the I 2 C Master APIs. The LCD must also be connected to the I 2 C bus controlled by the I 2 C Master component. Allowed characters are A-Z, 0-9, _. The instance name cannot start or end with an underscore. Default I 2 C Address This parameter sets the default address of the I 2 C LCD. This address is used when connecting to the I 2 C Master s API to properly address the LCD. If multiple LCDs are placed on the bus, the LCD s I 2 C address may change during run time. By default this parameter is set to 0x40. Note For the NXP LCD module that comes with PSoC 4 kit the I 2 C address should be set to 0x74. Page 2 of 22 Document Number: Rev. *A
3 PSoC Creator Component Datasheet Character LCD with I2C Interface (I2C LCD) LCD Custom Character Set This parameter enables the selection of these options: (Default) Do not do anything with custom characters. Vertical Bar Graph Generate custom characters and API to manipulate a vertical bar graph. Horizontal Bar Graph Generate custom characters and API to manipulate a horizontal bar graph. User Defined Create custom characters and API to manipulate them. After the component has loaded in the characters, the I2C_LCD_PutChar() function and the custom character constants (from the header file) can be used to display them. Command format This parameter has two options. If NXP PCF2119x + custom commands is selected this means that component uses embedded support of NXP PCF2119x command protocol and also it allows user to enter any extended (custom) commands that NXP compatible LCD module supports. The custom commands can be entered in the Custom Commands tab. If you plan to use the LCD with a command set that is different than the NXP PCF2119x select Custom format. In this case, you enter the required commands in the Custom Commands tab. You can also enter any other commands supported by the specific LCD module in the Custom commands table. Document Number: Rev. *A Page 3 of 22
4 Character LCD with I2C Interface (I2C LCD) PSoC Creator Component Datasheet Custom Commands Tab This tab has a set of options that makes it possible to add custom command support to the component. Use command pattern for data writing This option controls whether a command pattern is sent with the data to display text on the LCD using functions such as I2C_LCD_PrintString(). When the box is not checked, the data to be displayed is sent directly. When the box is checked, a command pattern is sent along with the text. The NXP PCF2119x compatible modules require a command pattern, so this option is always checked for that mode of operation. For custom LCD module support, review the datasheet for the module to determine the correct setting for this option. Page 4 of 22 Document Number: Rev. *A
5 PSoC Creator Component Datasheet Character LCD with I2C Interface (I2C LCD) Required commands This group box contains a list of mandatory commands that you must define for component operation. This table has a command set that is mandatory for NXP PCF2119x compatible LCD Modules. # Command Description 1 Write a byte or multiple bytes of data 2 Display on, cursor off 3 Display and cursor off 4 Set cursor position 5 Cursor home 6 Reset cursor position 7 Move cursor left one place 8 Move cursor right one place 9 Underline cursor on 10 Display - on, cursor - off, set cursor wink 11 Display - on, cursor - off, set cursor blink 12 Clear screen 13 Load custom character 14 Set display for 2 lines and 16 characters 15 Move cursor/shift display right (cursor position auto increment) 16 Move cursor/shift display right (cursor position auto decrement) When NXP PCF2119x + custom commands option is selected, the Required commands table is grayed out as patterns of required commands are already embedded into the component. In the case of a Custom format you need to enter proper command patterns for each required command. If some of commands are not supported by the specific LCD module you must enter a dummy command pattern. Set cursor position For the NXP PCF2119x compatible LCD modules the command codes from 0x80 and above are used for setting the address of Display Data RAM (DDRAM).For example, the address of 0x80 maps to row 0 and column 0 of the LCD module and the address 0x83 maps to row 0 and column 3. For detailed information on mapping of DDRAM to LCD location please see the LCD module datasheet. Document Number: Rev. *A Page 5 of 22
6 Character LCD with I2C Interface (I2C LCD) PSoC Creator Component Datasheet Command Size This parameter specifies the size (in bytes) of command sequence without parameters or actual data. Data size This parameter defines the size of data that is sent after the command sequence for the specified command. CMD byte 1 CMD byte 4 This parameter specifies the values of bytes #1 - #4 of command sequence. IF Command Size is less than four (the maximum size) the unused bytes are grayed out in the customizer.cmd byte 2 defines the unique command code for the command sequence. This command code can be used as a parameter for I2C_LCD_WriteControl() or I2C_LCD_HandleCustom() functions. Command description This is short descriptions of what the command does. It helps to match command patterns from the customizer with commands from the LCD Module s datasheet. By default, when the Custom commands parameter is selected, the required commands are filled with command patterns for the NXP PCF2119x command format. Custom commands In this section you define custom command handlers for specific commands. You also have a mechanism to add new commands. The column definitions in this group box are the same as for Required Commands but there are two additional columns. Enable This option, when checked, enables the use of the respective command pattern in the design. It means that the API function is provided for the command pattern. API name This parameter specifies the name of API function that is generated (if enabled) for the command pattern. The API name specified in this column is appended with a component instance name at the beginning of the name. Also depending on the data size the API function will or will not have a parameter. For example, for the API name Func1 with component instance name I2C_LCD and Data size equal to zero the API function has this prototype: void I2C_LCD_Func1(void); If Data size is 1, the prototype is: void I2C_LCD_Func1(uint8 cmdbyte); Page 6 of 22 Document Number: Rev. *A
7 PSoC Creator Component Datasheet Character LCD with I2C Interface (I2C LCD) If Data size is greater than 1, the prototype is: void I2C_LCD_Func1(uint8 cmddata[]); The size of cmddata[] is specified by Data size. Note that the API name you type cannot be all capital letters. If they are, the component displays a warning about redefining the macro. This is because, for each custom command, the component generates the #define constant for a command code that has the same name as one specified in API name that has all capital letters. Application Programming Interface Application Programming Interface (API) routines allow you to configure the component using software. This table lists and describes the interface to each function. The following sections cover each function in more detail. By default, PSoC Creator assigns the instance name I2C_LCD_1 to the first instance of a component in a given design. You can rename it to any unique value that follows the syntactic rules for identifiers. The instance name becomes the prefix of every global function name, variable, and constant symbol. For readability, the instance name used in the following table is I2C_LCD. Functions Functions I2C_LCD_Start() I2C_LCD_Stop() I2C_LCD_DisplayOn() I2C_LCD_DisplayOff() I2C_LCD_PrintString() I2C_LCD_PutChar() I2C_LCD_Position() I2C_LCD_WriteData() I2C_LCD_WriteControl() I2C_LCD_ClearDisplay() I2C_LCD_Init() I2C_LCD_Enable() Description Starts the module and loads custom character set to LCD if it was defined. Turns off the LCD Turns on the LCD module s display Turns off the LCD module s display Prints a null-terminated string to the screen, character by character Sends a single character to the LCD module data register at the current position. Sets the cursor s position to match the row and column supplied Writes a single byte of data to the LCD module data register Writes a single-byte instruction to the LCD module control register Clears the data from the LCD module s screen Performs initialization required for component s normal work Turns on the display Document Number: Rev. *A Page 7 of 22
8 Character LCD with I2C Interface (I2C LCD) PSoC Creator Component Datasheet Functions Description I2C_LCD_SetAddr() I2C_LCD_PrintInt8() I2C_LCD_PrintInt16() I2C_LCD_PrintNumber() This function allows the user to change the default I 2 C address of the LCD. Prints a two-ascii-character hex representation of the 8-bit value to the Character LCD module. Prints a four-ascii-character hex representation of the 16-bit value to the Character LCD module. Prints the decimal value of a 16-bit value as left-justified ASCII characters I2C_LCD_HandleOneByteCommand() This command adds a support of sending custom commands with 1 byte parameter I2C_LCD_HandleCustomCommand() Performs sending of the command that has variable parameters. These optional functions are included, when needed, if you-select a custom font. The I2C_LCD_LoadCustomFonts() function comes with every custom font set, whether it is userdefined or PSoC Creator generated. The I2C_LCD_LoadCustomFonts() function can be used to load the user-defined or the bar graph characters into the LCD hardware. If you load custom fonts created by the tool, you need to import a pointer to the custom font to your project before using this function (see the description of the I2C_LCD_LoadCustomFonts()). By default, the I2C_LCD_Init() routine loads the user-selected custom font. The draw bar graph commands are generated when a bar graph is selected and enable the easy, dynamic adjustment of bar graphs. Optional Custom Font Functions I2C_LCD_LoadCustomFonts() I2C_LCD_DrawHorizontalBG() I2C_LCD_DrawVerticalBG() Description Loads custom characters into the LCD module Draws a horizontal bar graph. Only available when a bar graph character set has been selected. Draws a vertical bar graph. Only available when a bar graph character set has been selected. Global Variables Function I2C_LCD_initVar I2C_LCD_customFonts[] Description The I2C_LCD_initVar variable is used to indicate initial configuration of this component. This variable is prepended with the component name. The variable is initialized to zero and set to 1 the first time I2C_LCD_Start() is called. This allows for component initialization without reinitialization in all subsequent calls to the I2C_LCD_Start() routine. It is necessary to reinitialize the component when the device is going through sleep cycles. Therefore, the variable is set to zero when going into sleep I2C_LCD_Sleep() and set during the reinitialization done in I2C_LCD_Wakeup(). Stores custom character set that was defined in the customizer's GUI. Page 8 of 22 Document Number: Rev. *A
9 PSoC Creator Component Datasheet Character LCD with I2C Interface (I2C LCD) void I2C_LCD_Start(void) When this function called first time it initializes the LCD hardware module as follows: Turns on the display; Enables auto cursor increment; Resets the cursor to start position; Clears the display; It also loads a custom character set to LCD if it was defined in the customizer's GUI. Resets the cursor to start position. All of the following call to this function will just turn on the LCD module. Note This function sends commands to the display using the I 2 C Master. The I 2 C Master must be initialized and global interrupts must be enabled before calling this function. Also if you are using the NXP-compatible LCD module, similar to the module that is used in the PSoC 4 kit, note that it requires a 1 ms reset pulse prior to calling I2C_LCD_Start(). Refer to the I2C LCD example project to see the proper way of resetting the LCD module. void I2C_LCD_Stop(void) Turns off the display of the LCD screen but does not stop the I 2 C Master component. void I2C_LCD_PrintString(char8 const string[]) Writes a null-terminated string of characters to the screen beginning at the current cursor location. char8 const string[]: Null-terminated array of ASCII characters to be displayed on the LCD module s screen. Note that because of the character set that is hardcoded to NXP PCF2119x LCD module, which is used in the PSoC4 processor module, some of characters can t be displayed. Refer to Functional Description section for details. Document Number: Rev. *A Page 9 of 22
10 Character LCD with I2C Interface (I2C LCD) PSoC Creator Component Datasheet void I2C_LCD_PutChar(char8 character) Writes an individual character to the screen at the current cursor location. Used to display custom characters through their named values. (I2C_LCD_CUSTOM_0 through I2C_LCD_CUSTOM_7). char8 character: ASCII character to be displayed on the LCD module s screen. Note that because of the character set that is hardcoded to NXP PCF2119x LCD module, which is used in the PSoC4 processor module, some of characters can t be displayed. Refer to Functional Description section for details. void I2C_LCD_Position(uint8 row, uint8 column) Moves the cursor to the location specified by arguments row and column. uint8 row: The row number at which to position the cursor. Minimum value is zero. uint8 column: The column number at which to position the cursor. Minimum value is zero. void I2C_LCD_WriteData(uint8 dbyte) Writes data to the LCD RAM in the current position. Upon write completion, the position is incremented or decremented depending on the entry mode specified. dbyte: A byte value to be written to the LCD module. Page 10 of 22 Document Number: Rev. *A
11 PSoC Creator Component Datasheet Character LCD with I2C Interface (I2C LCD) void I2C_LCD_WriteControl(uint8 cbyte) Writes a command byte to the LCD module. Different LCD models can have their own commands. Review the specific LCD datasheet for commands valid for that model. cbyte: 8-bit value representing the command to be loaded into the command register of the LCD module. Valid command parameters are specified in the table below: Value Description I2C_LCD_CLEAR_DISPLAY I2C_LCD_RESET_CURSOR_POSITION I2C_LCD_CURSOR_HOME I2C_LCD_CURSOR_LEFT I2C_LCD_CURSOR_RIGHT I2C_LCD_DISPLAY_CURSOR_ON I2C_LCD_DISPLAY_ON_CURSOR_OFF I2C_LCD_CURSOR_WINK I2C_LCD_CURSOR_BLINK I2C_LCD_CURSOR_SH_LEFT I2C_LCD_CURSOR_SH_RIGHT I2C_LCD_DISPLAY_2_LINES_5x10 I2C_LCD_CURSOR_RIGHT I2C_LCD_CURSOR_AUTO_INCR_ON I2C_LCD_CURSOR_LEFT Clear display Return cursor and LCD to home position Set left cursor move direction Set right cursor move direction Enable display and cursor Enable display, cursor off Enable display, cursor off, set cursor wink Enable display and cursor, set cursor blink Move cursor/shift display left Move cursor/shift display right Set display to be 2 lines 10 characters Move cursor/shift display right (cursor position auto increment) Move cursor/shift display right (cursor position auto decrement) void I2C_LCD_ClearDisplay(void) Clears the contents of the screen and resets the cursor location to be row and column zero. It calls I2C_LCD_WriteControl() with the appropriate argument to activate the display. Cursor position reset to row 0, column - 0. Document Number: Rev. *A Page 11 of 22
12 Character LCD with I2C Interface (I2C LCD) PSoC Creator Component Datasheet void I2C_LCD_DisplayOff(void) Turns the display off, but does not reset the LCD module in any way. It calls function I2C_LCD_WriteControl() with the appropriate argument to deactivate the display. void I2C_LCD_DisplayOn(void) Turns the display on, without initializing it. It calls function I2C_LCD_WriteControl() with the appropriate argument to activate the display. Disables underlining of the cursor if it was previously enabled. void I2C_LCD_Init(void) Performs initialization of the LCD module as following: Turns on the display; Enables auto cursor increment; Resets the cursor to start position; Clears the display; It also loads a custom character set to LCD if it was defined in the customizer's GUI. Resets the cursor to start position void I2C_LCD_Enable(void) Turns on the display. Page 12 of 22 Document Number: Rev. *A
13 PSoC Creator Component Datasheet Character LCD with I2C Interface (I2C LCD) void I2C_LCD_PrintInt8(uint8 value) Prints a two ASCII character representation of the 8-bit value to the character I 2 C LCD module. uint8 value: The 8-bit value to be printed in hexadecimal ASCII characters. void I2C_LCD_PrintInt16(uint16 value) Prints a four ASCII character representation of the 16-bit value to the Character I2С LCD module. uint16 value: The 16-bit value to be printed in hexadecimal ASCII characters. void I2C_LCD_PrintNumber(uint16 value) Prints the decimal value of a 16-bit value as left-justified ASCII characters. uint16 value: The 16-bit value to be printed in ASCII characters as a decimal number. void I2C_LCD_HandleOneByteCommand(uint8 cmdid, uint8 cmdbyte) This command adds a support of sending custom commands with 1 byte parameter. uint8 cmdid: Command code. uint8 cmdbyte: one byte of data to be send to I2C LCD. Document Number: Rev. *A Page 13 of 22
14 Character LCD with I2C Interface (I2C LCD) PSoC Creator Component Datasheet void I2C_LCD_HandleCustomCommand(uint8 cmdid, uint8 datalength, uint8 const cmddata[]) Performs sending of the command that has variable parameters. uint8 cmdid: Command code. uint8 datalength: length of data to be sent for this command. uint8 const cmddata[]: the data to be send to I 2 C LCD. void I2C_LCD_LoadCustomFonts(uint8 constcustomdata[]) Loads eight custom characters (bar graph or user-defined fonts) into the LCD module to use the custom fonts during runtime. Only available if a custom character set was selected in the customizer. uint8 const customdata[]: Pointer to the head of an array of bytes. Array should be 64 bytes long as 5x8 characters require 8 bytes per character. Overwrites any previous custom characters that may have been stored in the LCD module. void I2C_LCD_DrawHorizontalBG(uint8 row, uint8 column, uint8 maxcharacters, uint8 value) Draws a horizontal bar graph. Only available if a horizontal or vertical bar graph was selected. uint8 row: The row of the first character in the bar graph. uint8 column: The column of the first character in the bar graph. uint8 maxcharacters: Number of whole characters the bar graph consumes. Represents height or width depending upon the bar graph selection. Each character is 5 pixels wide and 8 pixels high. uint8 value: Number of shaded pixels to draw. May not exceed total pixel length (height) of the bar graph. Page 14 of 22 Document Number: Rev. *A
15 PSoC Creator Component Datasheet Character LCD with I2C Interface (I2C LCD) void I2C_LCD_DrawVerticalBG(uint8 row, uint8 column, uint8 maxcharacters, uint8 value) Draws a vertical bar graph. Only available if a horizontal or vertical bar graph was selected. uint8 row: The row of the first character in the bar graph. uint8 column: The column of the first character in the bar graph. uint8 maxcharacters: Number of whole characters the bar graph consumes. Represents height or width depending upon the bar graph selection. Each character is 5 pixels wide and 8 pixels high. uint8 value: Number of shaded pixels to draw. May not exceed total pixel length (height) of the bar graph. Macros To simplify the use of a system that uses multiple LCDs on a single bus, a macro for each API is added that includes the I 2 C address of the LCD. For example, the address macro for the command I2C_LCD_Position(row, col) is I2C_LCD_AddrPosition(addr, row, col). The parameter addr is the I2C address of the LCD. Calling the macro function is the same as calling the I2C_LCD_SetAddr() function before calling the native function. For example, calling the macro function: I2C_LCD_AddrPosition(addr, row, col); This function is exactly like calling these two functions, one after the other: I2C_LCD_SetAddr(addr); I2C_LCD_Position(row, col); As expected, the I 2 C LCD address remains until another macro is called or the I2C_LCD_SetAddr() function itself is called. Here is a summary table of the macros that are supported. Functions Address Macro I2C_LCD_Start() I2C_LCD_Stop() I2C_LCD_DisplayOn() I2C_LCD_DisplayOff() I2C_LCD_PrintString() I2C_LCD_PutChar() I2C_LCD_AddrStart() I2C_LCD_AddrStop() I2C_LCD_AddrDisplayOn() I2C_LCD_AddrDisplayOff() I2C_LCD_AddrPrintString() I2C_LCD_AddrPutChar() Document Number: Rev. *A Page 15 of 22
16 Character LCD with I2C Interface (I2C LCD) PSoC Creator Component Datasheet Functions Address Macro I2C_LCD_Position() I2C_LCD_WriteData() I2C_LCD_WriteControl() I2C_LCD_ClearDisplay() I2C_LCD_Init() I2C_LCD_Enable() I2C_LCD_LoadCustomFonts() I2C_LCD_DrawHorizontalBG() I2C_LCD_DrawVerticalBG() I2C_LCD_SetAddr() I2C_LCD_PrintInt8() I2C_LCD_PrintInt16() I2C_LCD_PrintNumber() I2C_LCD_AddrPosition() I2C_LCD_AddrWriteData() I2C_LCD_AddrWriteControl() I2C_LCD_AddrClearDisplay() I2C_LCD_Init() I2C_LCD_AddrEnable() I2C_LCD_AddrLoadCustomFonts() I2C_LCD_AddrDrawHorizontalBG() I2C_LCD_AddrDrawVerticalBG() NA I2C_LCD_AddrPrintInt8() I2C_LCD_AddrPrintInt16() I2C_LCD_AddrPrintNumber() I2C_LCD_HandleCustomCommand() I2C_LCD_AddrHandleCustomCommand() To simplify access to custom commands defined in the component s GUI, these macros are generated. The names shown below correspond to Func1 entered in the API name of Custom command table. I2C_LCD_Func1() Function-like macro, which is generated for the case when custom a command has the data size parameter set to zero. I2C_LCD_Func1(cmdByte) Function-like macro which is generated for the case when a custom command has Data size parameter equal to one. cmdbyte is a one byte parameter for the command. I2C_LCD_Func1(cmdData) Function-like macro which is generated for the case when a custom command has a Data size parameter greater than 1. cmddata is an array with the size specified by the Data size parameter. I2C_LCD_FUNC1 Defines the command code (the value that is entered in CMD byte 2), that can be used as a parameter of I2C_LCD_WriteControl(), I2C_LCD_HandleOneByteCommand() or I2C_LCD_HandleCustomCommand(). Page 16 of 22 Document Number: Rev. *A
17 PSoC Creator Component Datasheet Character LCD with I2C Interface (I2C LCD) MISRA Compliance This section describes the MISRA-C:2004 compliance and deviations for the component. There are two types of deviations defined: project deviations deviations that are applicable for all PSoC Creator components and specific deviations deviations that are applicable only for this component. This section provides information on component specific deviations. The project deviations are described in the MISRA Compliance section of the System Reference Guide along with information on the MISRA compliance verification environment. The I 2 C LCD component has the following specific deviations: MISRA- C:2004 Rule Rule Class (Required/ Advisory) Rule Description Description of Deviation(s) 19.7 R A function shall be used in preference to a function-like macro. A function-like macro is used in the component to handle differences in the API function names of the I 2 C Master implemented on the UDB and I 2 C Master implemented on the SCB. Also function-like macros are used to simplify usage of custom commands. Sample Firmware Source Code PSoC Creator provides numerous example projects that include schematics and example code in the Find Example Project dialog. For component-specific examples, open the dialog from the Component Catalog or an instance of the component in a schematic. For general examples, open the dialog from the Start Page or File menu. As needed, use the Filter Options in the dialog to narrow the list of projects available to select. See the "Find Example Project" topic in the PSoC Creator Help for more information. Functional Description Block Diagram and Configuration The I 2 C LCD component is a wrapper around an I 2 C Master component. The component provides the library for generating transactions defined by the NXP PCF2119x chip. It also has support for the generation of custom I 2 C LCD modules, which are similar to the NXP PCF2119x command format. With the I 2 C LCD component it is possible to communicate with several LCDs, of the same type using address macros. Also, you can use several components to add support for LCDs with different command formats. All of the I 2 C components can share the same I 2 C Master components. Document Number: Rev. *A Page 17 of 22
18 Character LCD with I2C Interface (I2C LCD) PSoC Creator Component Datasheet Figure 1.Interaction of I 2 C LCD and I 2 C Master Components I2C Master Component I2C LCD Component Customizer Customizer API API HW Implementation (Verilog or Fixed Function) PSoC Device I2C Bus I2C LCD Slave 1... I2C LCD Slave N I2C Slave 1... I2C Slave M Device 1 Device N Device 1 Device M I 2 C LCD and Character LCD The I 2 C LCD component was designed to have the same user interface as the existing PSoC Creator Character LCD component. Although the I 2 C LCD has the same as Character LCD, there is a difference in output. Because of character set that is hardcoded to NXP PCF2119x LCD module, which is used in the PSoC4 processor module, some of character example brackets ( [, ] ) cannot be displayed on the LCD. The lists of characters for both LCDs are shown in Figure 4 and those characters that differ are marked with red color. Page 18 of 22 Document Number: Rev. *A
19 PSoC Creator Component Datasheet Character LCD with I2C Interface (I2C LCD) Figure 2. Character Sets for NXP PCF2119x and Hitachi HD44780 LCD Modules Resources The I 2 C LCD component is a software component and uses no hardware resources. API Memory Usage The component memory usage varies significantly, depending on the compiler, device, number of APIs used, and component configuration. This table shows the memory use for all APIs available in the given component configuration. The measurements were done with an associated compiler configured in release mode with optimization set for size. For a specific design, the map file generated by the compiler can be analyzed to determine the memory usage. PSoC 3 (Keil_PK51) PSoC 4 (GCC) PSoC 5LP (GCC) Flash SRAM Flash SRAM Flash SRAM Configuration Document Number: Rev. *A Page 19 of 22
20 Character LCD with I2C Interface (I2C LCD) PSoC Creator Component Datasheet PSoC 3 (Keil_PK51) PSoC 4 (GCC) PSoC 5LP (GCC) Flash SRAM Flash SRAM Flash SRAM Configuration Horizontal or Vertical bargraph User Defined Registers N/A DC and AC Electrical Characteristics The following values indicate expected performance and are based on initial characterization data. Parameter Description Conditions Min Typ Max Units NumLCD Number of LCD Modules on the LCD that can be placed on the I 2 C Bus Determined by the capacitance on the I 2 C bus and the pull up resistors. 1 - >10 t fnc_ex 1 I2C_LCD_Start() Data rate = 100kbps ms I2C_LCD_Stop() ms I2C_LCD_DisplayOn() ms I2C_LCD_DisplayOff() ms I2C_LCD_PrintString() ms I2C_LCD_PutChar() ms I2C_LCD_Position() ms I2C_LCD_WriteData() ms I2C_LCD_WriteControl() ms 1 The values were received on PSoC3 device with BUS_CLK set to 24 MHz 2 The value is for 10-characters string Page 20 of 22 Document Number: Rev. *A
21 PSoC Creator Component Datasheet Character LCD with I2C Interface (I2C LCD) Parameter Description Conditions Min Typ Max Units I2C_LCD_ClearDisplay() ms I2C_LCD_Init() ms I2C_LCD_Enable() ms I2C_LCD_SetAddr() us I2C_LCD_HandleCustomCommand() ms I2C_LCD_HandleOneByteCommand() ms I2C_LCD_LoadCustomFonts() ms I2C_LCD_DrawHorizontalBG() ms I2C_LCD_DrawVerticalBG() ms I2C_LCD_PrintInt8() ms I2C_LCD_PrintInt16() ms I2C_LCD_PrintNumber() ms 3 The value is for command pattern that consists with 2 bytes and data size = 1 byte 4 The value is for printing 10 bars 5 The value is for printing 4 bars Document Number: Rev. *A Page 21 of 22
22 Character LCD with I2C Interface (I2C LCD) PSoC Creator Component Datasheet Component Changes This section lists the major changes in the component from the previous version. Version Description of Changes Reason for Changes/Impact 1.0a A note of resetting the NXP-compatible LCD module was added to description of I2C_LCD_Start() Address an issue with the NXP-compatible LCD module. 1.0 Version 1.0 is the first release of the I 2 C LCD component Cypress Semiconductor Corporation, The information contained herein is subject to change without notice. Cypress Semiconductor Corporation assumes no responsibility for the use of any circuitry other than circuitry embodied in a Cypress product. Nor does it convey or imply any license under patent or other rights. Cypress products are not warranted nor intended to be used for medical, life support, life saving, critical control, or safety applications, unless pursuant to an express written agreement with Cypress. Furthermore, Cypress does not authorize its products for use as critical components in life-support systems where a malfunction or failure may reasonably be expected to result in significant injury to the user. The inclusion of Cypress products in lifesupport systems application implies that the manufacturer assumes all risk of such use and in doing so indemnifies Cypress against all charges. PSoC is a registered trademark, and PSoC Creator and Programmable System-on-Chip are trademarks of Cypress Semiconductor Corp. All other trademarks or registered trademarks referenced herein are property of the respective corporations. Any Source Code (software and/or firmware) is owned by Cypress Semiconductor Corporation (Cypress) and is protected by and subject to worldwide patent protection (United States and foreign), United States copyright laws and international treaty provisions. Cypress hereby grants to licensee a personal, non-exclusive, non-transferable license to copy, use, modify, create derivative works of, and compile the Cypress Source Code and derivative works for the sole purpose of creating custom software and or firmware in support of licensee product to be used only in conjunction with a Cypress integrated circuit as specified in the applicable agreement. Any reproduction, modification, translation, compilation, or representation of this Source Code except as specified above is prohibited without the express written permission of Cypress. Disclaimer: CYPRESS MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS MATERIAL, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Cypress reserves the right to make changes without further notice to the materials described herein. Cypress does not assume any liability arising out of the application or use of any product or circuit described herein. Cypress does not authorize its products for use as critical components in lifesupport systems where a malfunction or failure may reasonably be expected to result in significant injury to the user. The inclusion of Cypress product in a life-support systems application implies that the manufacturer assumes all risk of such use and in doing so indemnifies Cypress against all charges. Use may be limited by and subject to the applicable Cypress software license agreement. Page 22 of 22 Document Number: Rev. *A
PSoC Creator Component Data Sheet. Calculation accuracy 0.01 C for -200 C to 850 C temperature range
1.10 Features Calculation accuracy 0.01 C for -200 C to 850 C temperature range Provides simple API function for resistance to temperature conversion Displays Error Vs Temperature graph General Description
Thermistor Calculator. Features. General Description. Input/Output Connections. When to use a Thermistor Calculator 1.10
PSoC Creator Component Data Sheet Thermistor Calculator 1.10 Features Adaptable for majority of negative temperature coefficient (NTC) thermistors Look-Up-Table (LUT) or equation implementation methods
Digital Multiplexer and Demultiplexer. Features. General Description. Input/Output Connections. When to Use a Multiplexer. Multiplexer 1.
PSoC Creator Component Datasheet Digital Multiplexer and Demultiplexer 1.10 Features Digital Multiplexer Digital Demultiplexer Up to 16 channels General Description The Multiplexer component is used to
Scanning Comparator (ScanComp) Features. General Description. Input/Output Connections. When to Use a Scanning Comparator. clock - Digital Input* 1.
Scanning Comparator (ScanComp) 1.0 Features Scan up to 64 single ended or differential channels automatically Note The number of input and output channels will be limited by the hardware available in the
PSoC Programmer Release Notes
PSoC Programmer Release Notes Version 3.16.1 Release Date: November 1, 2012 Thank you for your interest in the PSoC Programmer. The release notes lists all the new features, installation requirements,
PSoC Programmer Release Notes
PSoC Programmer Release Notes Version 3.13.4 Release Date: November 16, 2011 Thank you for your interest in the PSoC Programmer. The release notes lists all the new features, installation requirements,
PSoC Programmer Release Notes
PSoC Programmer Release Notes Version 3.18.1 Release Date: May 8, 2013 Thank you for your interest in the PSoC Programmer. The release notes lists all the new features, installation requirements, supported
SEGGER emwin Graphic Library (emwingraphics)
1.0 Features The component integrates emwin 8051 Graphic Library for PSoC3 and full-featured emwin Graphic Library V5.02 for PSoC 5 The libraries can be used with the Keil_PK51, GCC, Keil MDK, and Keil
Designing an efficient Programmable Logic Controller using Programmable System On Chip
Designing an efficient Programmable Logic Controller using Programmable System On Chip By Raja Narayanasamy, Product Apps Manager Sr, Cypress Semiconductor Corp. A Programmable Logic Controller (PLC) is
DESIGNING SECURE USB-BASED DONGLES
DESIGNING SECURE USB-BASED DONGLES By Dhanraj Rajput, Applications Engineer Senior, Cypress Semiconductor Corp. The many advantages of USB Flash drives have led to their widespread use for data storage
Standard [CRC-1 (parity bit), CRC-4 (ITU-T G.704), CRC-5-USB, etc.] or custom polynomial
PSoC Creator Component Datasheet Cyclic Redundancy Check (CRC) 2.40 Features 1 to 64 bits Time Division Multiplexing mode Requires clock and data for serial bit stream input Serial data in, parallel result
PSoC Programmer Release Notes
PSoC Programmer Release Notes Version 3.14 Release Date: February 23, 2012 Thank you for your interest in the PSoC Programmer. The release notes lists all the new features, installation requirements, supported
CAPACITIVE SENSING MADE EASY, Part 2 Design Guidelines
CAPACITIVE SENSING MADE EASY, Part 2 Design Guidelines By Pushek Madaan and Priyadeep Kaur, Cypress Semiconductor Corp. When it comes to capacitive sensing design, layout plays a crucial role. Giving importance
Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide
Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Sensors LCD Real Time Clock/ Calendar DC Motors Buzzer LED dimming Relay control I2C-FLEXEL PS2 Keyboards Servo Motors IR Remote Control
AN2358. Manchester Decoder Using PSoC 1. Introduction. Contents. Manchester Code Principle
AN2358 Author: Philippe Larcher Associated Project: Yes Associated Part Family: CY8C29x66, CY8C27x43, CY8C24X94, CY8C24x23A, CY8C23x33, CY8C21x34, CY8C21x23 Software Version: PSoC Designer 5.4 Related
AN10850. LPC1700 timer triggered memory to GPIO data transfer. Document information. LPC1700, GPIO, DMA, Timer0, Sleep Mode
LPC1700 timer triggered memory to GPIO data transfer Rev. 01 16 July 2009 Application note Document information Info Keywords Abstract Content LPC1700, GPIO, DMA, Timer0, Sleep Mode This application note
1-Mbit (128K x 8) Static RAM
1-Mbit (128K x 8) Static RAM Features Pin- and function-compatible with CY7C109B/CY7C1009B High speed t AA = 10 ns Low active power I CC = 80 ma @ 10 ns Low CMOS standby power I SB2 = 3 ma 2.0V Data Retention
Clock. Features. General Description. Appearance 1.50
PSoC Creator Component Data Sheet Clock 1.50 Features Quickly define new clocks Refer to system or design-wide clocks Configure the clock frequency tolerance General Description The Clock component provides
AN10866 LPC1700 secondary USB bootloader
Rev. 2 21 September 2010 Application note Document information Info Content Keywords LPC1700, Secondary USB Bootloader, ISP, IAP Abstract This application note describes how to add a custom secondary USB
AN11241. AES encryption and decryption software on LPC microcontrollers. Document information
AES encryption and decryption software on LPC microcontrollers Rev. 1 25 July 2012 Application note Document information Info Content Keywords AES, encryption, decryption, FIPS-197, Cortex-M0, Cortex-M3
Table 1 below is a complete list of MPTH commands with descriptions. Table 1 : MPTH Commands. Command Name Code Setting Value Description
MPTH: Commands Table 1 below is a complete list of MPTH commands with descriptions. Note: Commands are three bytes long, Command Start Byte (default is 128), Command Code, Setting value. Table 1 : MPTH
Creating a Project with PSoC Designer
Creating a Project with PSoC Designer PSoC Designer is two tools in one. It combines a full featured integrated development environment (IDE) with a powerful visual programming interface. The two tools
PC Base Adapter Daughter Card UART GPIO. Figure 1. ToolStick Development Platform Block Diagram
TOOLSTICK VIRTUAL TOOLS USER S GUIDE RELEVANT DEVICES 1. Introduction The ToolStick development platform consists of a ToolStick Base Adapter and a ToolStick Daughter card. The ToolStick Virtual Tools
APPLICATION NOTE. AT07175: SAM-BA Bootloader for SAM D21. Atmel SAM D21. Introduction. Features
APPLICATION NOTE AT07175: SAM-BA Bootloader for SAM D21 Atmel SAM D21 Introduction Atmel SAM Boot Assistant (Atmel SAM-BA ) allows In-System Programming (ISP) from USB or UART host without any external
256K (32K x 8) Static RAM
256K (32K x 8) Static RAM Features High speed: 55 ns and 70 ns Voltage range: 4.5V 5.5V operation Low active power (70 ns, LL version) 275 mw (max.) Low standby power (70 ns, LL version) 28 µw (max.) Easy
NB3H5150 I2C Programming Guide. I2C/SMBus Custom Configuration Application Note
NB3H550 I2C Programming Guide I2C/SMBus Custom Configuration Application Note 3/4/206 Table of Contents Introduction... 3 Overview Process of Configuring NB3H550 via I2C/SMBus... 3 Standard I2C Communication
AVR151: Setup and Use of the SPI. Introduction. Features. Atmel AVR 8-bit Microcontroller APPLICATION NOTE
Atmel AVR 8-bit Microcontroller AVR151: Setup and Use of the SPI APPLICATION NOTE Introduction This application note describes how to set up and use the on-chip Serial Peripheral Interface (SPI) of the
Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs
Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs AN033101-0412 Abstract This describes how to interface the Dallas 1-Wire bus with Zilog s Z8F1680 Series of MCUs as master devices. The Z8F0880,
Freescale Embedded GUI Converter Utility 2.0 Quick User Guide
Freescale Semiconductor User Guide Document Number: EGUICUG Rev. 1, 08/2010 Freescale Embedded GUI Converter Utility 2.0 Quick User Guide 1 Introduction The Freescale Embedded GUI Converter Utility 2.0
User Manual. AS-Interface Programmer
AS-Interface Programmer Notice: RESTRICTIONS THE ZMD AS-INTERFACE PROGRAMMER HARDWARE AND ZMD AS-INTERFACE PROGRAMMER SOFTWARE IS DESIGNED FOR IC EVALUATION, LABORATORY SETUP AND MODULE DEVELOPMENT ONLY.
NHD-0420D3Z-FL-GBW-V3
NHD-0420D3Z-FL-GBW-V3 Serial Liquid Crystal Display Module NHD- Newhaven Display 0420-4 Lines x 20 Characters D3Z- Model F- Transflective L- Yellow/Green LED Backlight G- STN-Gray B- 6:00 Optimal View
13. Publishing Component Information to Embedded Software
February 2011 NII52018-10.1.0 13. Publishing Component Information to Embedded Software NII52018-10.1.0 This document describes how to publish SOPC Builder component information for embedded software tools.
HD44780-Based LCD Modules. Introduction to the LM018L
HD44780-Based LCD Modules Hitachi LM018L 40 character x 2 lines Built-in LSI HD44780 controller +5volt single power supply Display Colour: Grey LM018L: Introduction Interfacing Display Pattern and Character
Comparison of 2.4-GHz proprietary RF and Bluetooth 4.0 for HIS applications Page 1 of 6
Comparison of 2.4-GHz proprietary RF and Bluetooth 4.0 for HID applications By: Anitha TG, Applications Engineer & Sai Prashanth Chinnapalli, Applications Engineer Sr, Cypress Semiconductor Corp. With
ENGI E1112 Departmental Project Report: Computer Science/Computer Engineering
ENGI E1112 Departmental Project Report: Computer Science/Computer Engineering Daniel Estrada Taylor, Dev Harrington, Sekou Harris December 2012 Abstract This document is the final report for ENGI E1112,
AT88CK490 Evaluation Kit
AT88CK490 Evaluation Kit CryptoAuthentication USB Dongle HARDWARE USER GUIDE Atmel AT88CK490 CryptoAuthentication Evaluation Kit Introduction The Atmel AT88CK490 CryptoAuthentication Evaluation Kit is
MS Access Lab 2. Topic: Tables
MS Access Lab 2 Topic: Tables Summary Introduction: Tables, Start to build a new database Creating Tables: Datasheet View, Design View Working with Data: Sorting, Filtering Help on Tables Introduction
UM0834 User manual. Developing and debugging your STM8S-DISCOVERY application code. Introduction. Reference documents
User manual Developing and debugging your STM8S-DISCOVERY application code Introduction This document complements the information in the STM8S datasheets by describing the software environment and development
ES_LPC4357/53/37/33. Errata sheet LPC4357/53/37/33. Document information
Rev. 1.1 8 August 2012 Errata sheet Document information Info Keywords Abstract Content LPC4357FET256; LPC4357FET180; LPC4357FBD208; LPC4353FET256; LPC4353FET180; LPC4353FBD208; LPC4337FET256; LPC4337FET180;
AN3265 Application note
Application note Handling hardware and software failures with the STM8S-DISCOVERY Application overview This application is based on the STM8S-DISCOVERY. It demonstrates how to use the STM8S window watchdog
8051 Flash Microcontroller. Application Note. A Digital Thermometer Using the Atmel AT89LP2052 Microcontroller
A Digital Thermometer Using the Atmel AT89LP2052 Microcontroller Features Temperature range -55 C to +125 C in.5 C increments LCD Display RS485 Interface Applicable to any AT89LP Microcontroller C and
AN11008 Flash based non-volatile storage
Rev. 1 5 January 2011 Application note Document information Info Content Keywords Flash, EEPROM, Non-Volatile Storage Abstract This application note describes the implementation and use of a library that
Software User Guide UG-461
Software User Guide UG-461 One Technology Way P.O. Box 9106 Norwood, MA 02062-9106, U.S.A. Tel: 781.329.4700 Fax: 781.461.3113 www.analog.com ezlinx icoupler Isolated Interface Development Environment
AN4032 Application note
Application note Interfacing an HD44780 2-line LCD display with the STM8SVLDISCOVERY Introduction This application note describes how to use a firmware example that drives a standard HD44780 2-line LCD
How To Add A Usb Secondary Ipo Bootloader To An Lpc23Xx Flash Device To A Flash Device
Rev. 01 16 October 2008 Application note Document information Info Keywords Abstract Content LPC23xx, Secondary ISP Bootloader, Bootloader, USB This application note describes how to add custom USB secondary
PSoC Programmer User Guide. Doc. No. 001-16213 Rev. *F
PSoC Programmer User Guide Doc. No. 001-16213 Rev. *F Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600 http://www.cypress.com Copyrights
In-System Programmer USER MANUAL RN-ISP-UM RN-WIFLYCR-UM-.01. www.rovingnetworks.com 1
RN-WIFLYCR-UM-.01 RN-ISP-UM In-System Programmer 2012 Roving Networks. All rights reserved. Version 1.1 1/19/2012 USER MANUAL www.rovingnetworks.com 1 OVERVIEW You use Roving Networks In-System-Programmer
AN10849. LPC1700 RTC hardware auto calibration. Document information. RTC, Hardware Auto Calibration, LPC1700, Graphic LCD
Rev. 01 1 July 2009 Application note Document information Info Keywords Abstract Content RTC, Hardware Auto Calibration, LPC1700, Graphic LCD Using the LPC1700 RTC s auto calibration feature Revision history
Lesson 10: Video-Out Interface
Lesson 10: Video-Out Interface 1. Introduction The Altera University Program provides a number of hardware controllers, called cores, to control the Video Graphics Array (VGA) Digital-to-Analog Converter
How To Port A Program To Dynamic C (C) (C-Based) (Program) (For A Non Portable Program) (Un Portable) (Permanent) (Non Portable) C-Based (Programs) (Powerpoint)
TN203 Porting a Program to Dynamic C Introduction Dynamic C has a number of improvements and differences compared to many other C compiler systems. This application note gives instructions and suggestions
PACKAGE OUTLINE DALLAS DS2434 DS2434 GND. PR 35 PACKAGE See Mech. Drawings Section
PRELIMINARY DS2434 Battery Identification Chip FEATURES Provides unique ID number to battery packs PACKAGE OUTLINE Eliminates thermistors by sensing battery temperature on chip DALLAS DS2434 1 2 3 256
User Manual. DG LINK Application Program 071-0056-50. www.tektronix.com. This document applies to firmware version 2.00 and above.
User Manual DG LINK Application Program 071-0056-50 This document applies to firmware version 2.00 and above. www.tektronix.com Copyright Tektronix Japan, Ltd. All rights reserved. Copyright Tektronix,
LMB162ABC LCD Module User Manual
LMB162ABC LCD Module User Manual Shenzhen TOPWAY Technology Co., Ltd. Rev. Descriptions Release Date 0.1 Prelimiay release 2005-03-17 0.2 Typing Correction in 1.3 Block Diagram 2007-05-06 URL Document
Master-Touch and ValuMass. Modbus Communications. INSTRUCTION MANUAL 80202201 (Rev. 2.1)
Master-Touch and ValuMass Modbus Communications INSTRUCTION MANUAL 80202201 (Rev. 2.1) Eldridge Products, Inc. 2700 Garden Road, Building A Monterey, CA 93940 Tel: 800/321-3569 or 831/648-7777 Fax: 831/648-7780
Parallax Serial LCD 2 rows x 16 characters Non-backlit (#27976) 2 rows x 16 characters Backlit (#27977) 4 rows x 20 characters Backlit (#27979)
599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: [email protected] Technical: [email protected] Web Site: www.parallax.com Educational: www.stampsinclass.com
HEF4011B. 1. General description. 2. Features and benefits. 3. Ordering information. 4. Functional diagram. Quad 2-input NAND gate
Rev. 6 10 December 2015 Product data sheet 1. General description 2. Features and benefits 3. Ordering information The is a quad 2-input NAND gate. The outputs are fully buffered for the highest noise
SPROG DCC Decoder Programmer
SPROG DCC Decoder Programmer Operating Manual Firmware Version 3.4 April 2004 2004 Andrew Crosland web: http://www.sheerstock.fsnet.co.uk/dcc/sprog e-mail: [email protected] Disclaimer You build,
AN10860_1. Contact information. NXP Semiconductors. LPC313x NAND flash data and bad block management
Rev. 01 11 August 2009 Application note Document information Info Keywords Abstract Content LPC3130 LPC3131 LPC313x LPC313X LPC3153 LPC3154 LPC3141 LPC3142 LPC31XX LPC31xx Linux kernel Apex boot loader
AVR033: Getting Started with the CodeVisionAVR C Compiler. 8-bit Microcontrollers. Application Note. Features. 1 Introduction
AVR033: Getting Started with the CodeVisionAVR C Compiler Features Installing and Configuring CodeVisionAVR to Work with the Atmel STK 500 Starter Kit and AVR Studio Debugger Creating a New Project Using
DK40 Datasheet & Hardware manual Version 2
DK40 Datasheet & Hardware manual Version 2 IPC@CHIP DK40 Evaluation module Beck IPC GmbH http://www.bcl.de page 1 of 11 Table of contents Table of contents... 2 Basic description... 3 Characteristics...
AN10811 Programming SPI flash on EA3131 boards Rev. 01 1 May 2009 Application note Document information Info Content Keywords Abstract
Rev. 01 1 May 2009 Application note Document information Info Keywords Abstract Content LPC3130, LPC3131, SPI flash Example for programming SPI flash on EA3131 boards. Revision history Rev Date Description
The Advanced JTAG Bridge. Nathan Yawn [email protected] 05/12/09
The Advanced JTAG Bridge Nathan Yawn [email protected] 05/12/09 Copyright (C) 2008-2009 Nathan Yawn Permission is granted to copy, distribute and/or modify this document under the terms of the
SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual
SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual Version 1.0 - January 20, 2015 CHANGE HISTORY Version Date Description of Changes 1.0 January 20, 2015 Initial Publication
AN3998 Application note
Application note PDM audio software decoding on STM32 microcontrollers 1 Introduction This application note presents the algorithms and architecture of an optimized software implementation for PDM signal
SKP16C62P Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc.
SKP16C62P Tutorial 1 Software Development Process using HEW Renesas Technology America Inc. 1 Overview The following tutorial is a brief introduction on how to develop and debug programs using HEW (Highperformance
1-of-4 decoder/demultiplexer
Rev. 6 1 April 2016 Product data sheet 1. General description 2. Features and benefits 3. Applications The contains two 1-of-4 decoders/demultiplexers. Each has two address inputs (na0 and na1, an active
IBM Emulation Mode Printer Commands
IBM Emulation Mode Printer Commands Section 3 This section provides a detailed description of IBM emulation mode commands you can use with your printer. Control Codes Control codes are one-character printer
CY8CKIT-001. PSoC Development Kit Guide. Doc. # 001-48651 Rev. *N November 25, 2013
CY8CKIT-001 PSoC Development Kit Guide Doc. # 001-48651 Rev. *N November 25, 2013 Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600
Planar PIN diode in a SOD323 very small plastic SMD package.
Rev. 8 12 May 2015 Product data sheet 1. Product profile 1.1 General description Planar PIN diode in a SOD323 very small plastic SMD package. 1.2 Features and benefits High voltage, current controlled
USER GUIDE EDBG. Description
USER GUIDE EDBG Description The Atmel Embedded Debugger (EDBG) is an onboard debugger for integration into development kits with Atmel MCUs. In addition to programming and debugging support through Atmel
How To Develop A Toolstick
TOOLSTICK BASE ADAPTER USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent damage to
UG103.8 APPLICATION DEVELOPMENT FUNDAMENTALS: TOOLS
APPLICATION DEVELOPMENT FUNDAMENTALS: TOOLS This document provides an overview of the toolchain used to develop, build, and deploy EmberZNet and Silicon Labs Thread applications, and discusses some additional
UM0985 User manual. Developing your STM32VLDISCOVERY application using the IAR Embedded Workbench software. Introduction
User manual Developing your STM32VLDISCOVERY application using the IAR Embedded Workbench software Introduction This document provides an introduction on how to use IAR Embedded Workbench for ARM software
7 OUT1 8 OUT2 9 OUT3 10 OUT4 11 OUT5 12 OUT6 13 OUT7 14 OUT8 15 OUT9 16 OUT10 17 OUT11 18 OUT12 19 OUT13 20 OUT14 21 OUT15 22 OUT16 OUT17 23 OUT18
18 CHANNELS LED DRIVER GENERAL DESCRIPTION IS31FL3218 is comprised of 18 constant current channels each with independent PWM control, designed for driving LEDs. The output current of each channel can be
Block 3 Size 0 KB 0 KB 16KB 32KB. Start Address N/A N/A F4000H F0000H. Start Address FA000H F8000H F8000H F8000H. Block 2 Size 8KB 16KB 16KB 16KB
APPLICATION NOTE M16C/26 1.0 Abstract The following article describes using a synchronous serial port and the FoUSB (Flash-over-USB ) Programmer application to program the user flash memory of the M16C/26
DATASHEET. ADAM Arduino Display Adaptor Module. Arduino Compatible Shield P/N: 4Display-Shield-FT843 For the 4D Systems 4DLCD-FT843 Display
DATASHEET ADAM Arduino Display Adaptor Module Arduino Compatible Shield P/N: 4Display-Shield-FT843 For the 4D Systems 4DLCD-FT843 Display Document Date: 8 th January 2014 Document Revision: 1.0 Uncontrolled
AN3252 Application note
Application note Building a wave generator using STM8L-DISCOVERY Application overview This application note provides a short description of how to use the STM8L-DISCOVERY as a basic wave generator for
PROGRAMMABLE LOGIC CONTROLLERS Unit code: A/601/1625 QCF level: 4 Credit value: 15 TUTORIAL OUTCOME 2 Part 1
UNIT 22: PROGRAMMABLE LOGIC CONTROLLERS Unit code: A/601/1625 QCF level: 4 Credit value: 15 TUTORIAL OUTCOME 2 Part 1 This work covers part of outcome 2 of the Edexcel standard module. The material is
PSoC Programmer Release Notes
PSoC Programmer Release Notes Version 3.18 Release Date: April 1, 2013 Thank you for your interest in the PSoC Programmer. The release notes lists all the new features, installation requirements, supported
User Manual Microsoft Dynamics AX Add-on LabAX Label Printing
User Manual Microsoft Dynamics AX Add-on LabAX Label Printing Version 1.7 Last Update: 17.04.2011 User Manual Microsoft Dynamics AX Add-on LabAX Label Printing Page 2 / 23 Contents 1 Introduction... 3
Base Conversion written by Cathy Saxton
Base Conversion written by Cathy Saxton 1. Base 10 In base 10, the digits, from right to left, specify the 1 s, 10 s, 100 s, 1000 s, etc. These are powers of 10 (10 x ): 10 0 = 1, 10 1 = 10, 10 2 = 100,
Quad 2-input NAND Schmitt trigger
Rev. 9 15 December 2015 Product data sheet 1. General description 2. Features and benefits 3. Applications The is a quad two-input NAND gate. Each input has a Schmitt trigger circuit. The gate switches
CodeWarrior Development Studio for Freescale S12(X) Microcontrollers Quick Start
CodeWarrior Development Studio for Freescale S12(X) Microcontrollers Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space PC with 1 GHz Intel Pentum -compatible processor 512 MB of RAM
Standard [CRC-1 (parity bit), CRC-4 (ITU-T G.704), CRC-5-USB, etc.] or custom polynomial
2.10 Features 1 to 64 bits Time Division Multiplexing mode Requires clock and data for serial bit stream input Serial data in, parallel result Standard [CRC-1 (parity bit), CRC-4 (ITU-T G.704), CRC-5-USB,
ST19NP18-TPM-I2C. Trusted Platform Module (TPM) with I²C Interface. Features
Trusted Platform Module (TPM) with I²C Interface Data brief Features Single-chip Trusted Platform Module (TPM) Embedded TPM 1.2 firmware I²C communication interface (Slave mode) Architecture based on ST19N
73M1866B/73M1966B FXOCTL Application User Guide November 2, 2009 Rev. 4.1 UG_1x66B_009
Simplifying System Integration TM 73M1866B/73M1966B FXOCTL Application User Guide November 2, 2009 Rev. 4.1 73M1866B/73M1966B FXOCTL Application User Guide 2009 Teridian Semiconductor Corporation. All
udrive-usd-g1 Embedded DOS micro-drive Module Data Sheet
4D SYSTEMS udrie-usd-g1 Embedded DOS micro-drive Module Document Date: 2nd April 2009 Document Revision: 2.0 Page 1 of 9 udrie-usd-g1 Embedded DOS micro-drive 4D SYSTEMS Description Features The is an
SMARTCARD XPRO. Preface. SMART ARM-based Microcontrollers USER GUIDE
SMART ARM-based Microcontrollers SMARTCARD XPRO USER GUIDE Preface Atmel SMARTCARD Xplained Pro is an extension board to the Atmel Xplained Pro evaluation platform. Atmel SMARTCARD Xplained Pro is designed
BV4512. I2C-LCD- 128 x 64 Graphic Controller. Product specification. November 2008 V0.a. ByVac Page 1 of 14
Product specification November 2008 V0.a ByVac Page 1 of 14 Contents 1. Introduction...4 2. Features...4 Power...4 3. Connection Specification...4 3.1. LCD Display Interface...5 4. Device Description...5
Scanner Wedge for Windows Software User Guide
Scanner Wedge for Windows Software User Guide Contents INSTALLING THE SCANNER WEDGE SOFTWARE 2 ACTIVATING THE SCANNER CONNECTION 3 TRACING SCANNER OUTPUT 7 FORMATTING OUTPUT 9 SELECTING START-UP OPTIONS
RS-485 Protocol Manual
RS-485 Protocol Manual Revision: 1.0 January 11, 2000 RS-485 Protocol Guidelines and Description Page i Table of Contents 1.0 COMMUNICATIONS BUS OVERVIEW... 1 2.0 DESIGN GUIDELINES... 1 2.1 Hardware Design
Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.
Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format
AVR Butterfly Training. Atmel Norway, AVR Applications Group
AVR Butterfly Training Atmel Norway, AVR Applications Group 1 Table of Contents INTRODUCTION...3 GETTING STARTED...4 REQUIRED SOFTWARE AND HARDWARE...4 SETTING UP THE HARDWARE...4 SETTING UP THE SOFTWARE...5
AN4128 Application note
Application note Demonstration board for Bluetooth module class 1 SBT2632C1A.AT2 Introduction This document describes the STEVAL-SPBT4ATV3 demonstration board (dongle) for the Bluetooth class 1 SPBT2632C1A.AT2
ic-mq EVAL MQ1D EVALUATION BOARD DESCRIPTION
Rev A3, Page 1/7 ORDERING INFORMATION Type Order Designation Description and Options Evaluation Board ic-mq EVAL MQ1D ic-mq Evaluation Board ready to operate, accessible through GUI via PC adapter Software
Ethernet/IP Explicit Messaging Using Unity Software
Data Bulletin 8000DB1025 07/2010 Raleigh, NC, USA Ethernet/IP Explicit Messaging Using Unity Software Retain for future use. Overview Presumption Requirements This data bulletin illustrates how to setup
76-77 GHz RF Transmitter Front-end for W-band Radar Applications
Freescale Semiconductor Data Sheet Summary for MC33 7-77 GHz RF Transmitter Front-end for W-band Radar Applications The MR2001 is a scalable three package solution for automotive radar modules. The chipset
LCD I 2 C/Serial RX Backpack. Data Sheet. LCD to I2C/Serial RX Backpack I2C or Serial RX communication with Standard 16 Pin LCD modules
LCD I 2 C/Serial RX Backpack Data Sheet LCD to I2C/Serial RX Backpack I2C or Serial RX communication with Standard 16 Pin LCD modules Version 203 Sep 2013 Contents Contents 2 Introduction3 Voltage Levels3
