Added license indicators at the beginning of all code files
This commit is contained in:
parent
e5f1a9542f
commit
59ced87139
@ -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
|
MIT License
|
||||||
|
|
||||||
|
@ -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 machine import Pin, I2C
|
||||||
from PCF8574 import I2C_LCD
|
from PCF8574 import I2C_LCD
|
||||||
import time
|
import time
|
||||||
|
@ -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
|
@ Feature: Fades "HELLO" over two lines in and out
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -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
|
from ProgramChooser import ProgramChooser
|
||||||
|
|
||||||
def micronec():
|
def micronec():
|
||||||
|
Reference in New Issue
Block a user