lcd_put_fuel

Puts a fuel level icon.

void lcd_put_fuel (
    int8_t val,    /* Icon type */
    uint8_t chr    /* User character */
)

Arguments

val
Specifies the icon type in range of -1 to 5. 0 represents empty cell, 5 represents full cell and -1 represents AC plug.
chr
Specifies the user character to be used for the icon.

Description

Puts a fuel level icon and moves cursor to next. The user character must not collide with a code that used by any other functions.

QuickInfo

Available when _USE_CGRAM == 1 and _USE_FUEL == 1.

Return