1
0

Added license indicators at the beginning of all code files

This commit is contained in:
BlueFox 2024-03-10 15:31:07 +01:00
parent e5f1a9542f
commit 59ced87139
4 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,6 @@
# https://github.com/T-622/RPI-PICO-I2C-LCD
# Original driver by Tyler Peppy, modified by Benjamin Burkhardt (2024)
"""
MIT License

View File

@ -1,3 +1,14 @@
"""
ProgramChooser - a program launcher for microPython
Copyright (C) 2024 Benjamin Burkhardt <bluefox@privacynerd.de>
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
from machine import Pin, I2C
from PCF8574 import I2C_LCD
import time

View File

@ -1,5 +1,15 @@
"""
@ Copyright: 2023, Benjamin Burkhardt
An example "program" which can be used with the ProgramChooser library, see also main.py
Copyright (C) 2024 Benjamin Burkhardt <bluefox@privacynerd.de>
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
"""
@ Feature: Fades "HELLO" over two lines in and out
"""

View File

@ -1,3 +1,14 @@
"""
An example main.py which makes use of the ProgramChooser library
Copyright (C) 2024 Benjamin Burkhardt <bluefox@privacynerd.de>
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
from ProgramChooser import ProgramChooser
def micronec():