LCD
 
Component LCD
Liquid Crystal Display
Component Level: Low
Events:
(Events are call-back functions called when an important event occurrs. Please see the Embedded Components page for more information.)
  • EventModule - Name of the user module (without extension), where the events from this component are placed.
  • BeforeNewSpeed - This event is called when the CPU speed mode is being changed (using CPU methods) - before the change. The event is enabled only if speed modes are supported in the target CPU component (more than one speed mode).

      ANSIC prototype: void BeforeNewSpeed(void)

  • AfterNewSpeed - This event is called when the CPU speed mode is being changed (using CPU methods) - after the change. The event is enabled only if speed modes are supported in the target CPU component (more than one speed mode).

      ANSIC prototype: void AfterNewSpeed(void)

  • OnInterrupt - When LCD module interrupt occurs this event is called (only when the component is enabled - "Enable" and the events are enabled - "EnableEvent"). This event is enabled only if a "Interrupt service/event" is enabled. The interrupt is invoked with LCD module frame frequency (waveform = Normal) or sub-frame frequency (waveform = Low-power).

      ANSIC prototype: void OnInterrupt(void)


For each generated event it is possible to set:
  • Procedure Name - name of procedure (written by user) that handles the event.