hosaka / micropython-st7735

MicroPython driver and HAL example for Sitronix ST7735 TFT displays.
MIT License
26 stars 20 forks source link

Move commands and colours out of the driver. #4

Open hosaka opened 8 years ago

hosaka commented 8 years ago

Discussed on the micropython forums: const() variables still allocate memory when used. Until there is some enhancement in place to help save memory when using consts, I moved the register/commands definitions out of the driver into the TFT module and commented out those that are not in use.

Few references to commands in the driver itself, were replaced with a hardcoded value and a small comment, so shouldn't hinder readability.

I am also planning on having the same done for init functions of the TFT/TFT_GREEN and colours, perhaps having them in the separate file could be a good interim step.