#!/usr/bin/env python3 ################################################################################ # # # This file is part of the Buildbotics firmware. # # # # Copyright (c) 2015 - 2018, Buildbotics LLC # # All rights reserved. # # # # This file ("the software") is free software: you can redistribute it # # and/or modify it under the terms of the GNU General Public License, # # version 2 as published by the Free Software Foundation. You should # # have received a copy of the GNU General Public License, version 2 # # along with the software. If not, see . # # # # The software is distributed in the hope that it will be useful, but # # WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # # Lesser General Public License for more details. # # # # You should have received a copy of the GNU Lesser General Public # # License along with the software. If not, see # # . # # # # For information regarding this software email: # # "Joseph Coffland" # # # ################################################################################ import lcd if __name__ == "__main__": screen = lcd.LCD(1, 0x27) screen.clear() screen.display(0, 'Buildbotics', lcd.JUSTIFY_CENTER) screen.display(1, 'Controller', lcd.JUSTIFY_CENTER) screen.display(3, 'Booting...', lcd.JUSTIFY_CENTER)