.. _gint_quickref: Quick reference for the Gint module ===================================== Below is a quick reference for the gint module, which provides access to the calculator's screen and keyboard. If it is your first time working with this module, please read the main documentation first. .. toctree:: :maxdepth: 1 ../../library/gint.rst General Display Control ----------------------- See :mod:`gint`. :: import gint # It's good practice to initialize the screen at the start gint.dclear(gint.C_WHITE) gint.dupdate() # Fill the screen with black gint.dclear(gint.C_BLACK) # Update the display to show the changes gint.dupdate() Delay and timing ---------------- Use the :mod:`time