diff --git a/Code/Python_Code/00.0.0_Hello/Hello.py b/Code/Python_Code/00.0.0_Hello/Hello.py index 6421cee..fca6461 100644 --- a/Code/Python_Code/00.0.0_Hello/Hello.py +++ b/Code/Python_Code/00.0.0_Hello/Hello.py @@ -2,7 +2,7 @@ ######################################################################## # Filename : Hello.py # Description : Print "Hello World!". -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/27 ######################################################################## diff --git a/Code/Python_Code/01.1.1_Blink/Blink.py b/Code/Python_Code/01.1.1_Blink/Blink.py index 1a10acf..92449ba 100644 --- a/Code/Python_Code/01.1.1_Blink/Blink.py +++ b/Code/Python_Code/01.1.1_Blink/Blink.py @@ -2,7 +2,7 @@ ######################################################################## # Filename : Blink.py # Description : Basic usage of GPIO. Let led blink. -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/28 ######################################################################## import RPi.GPIO as GPIO diff --git a/Code/Python_Code/01.1.1_Blink/Blink2.py b/Code/Python_Code/01.1.1_Blink/Blink2.py index 3d8a0de..00ec1f4 100644 --- a/Code/Python_Code/01.1.1_Blink/Blink2.py +++ b/Code/Python_Code/01.1.1_Blink/Blink2.py @@ -2,7 +2,7 @@ ######################################################################## # Filename : Blink.py # Description : Basic usage of GPIO. Let led blink. -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/26 ######################################################################## from gpiozero import LED diff --git a/Code/Python_Code/02.1.1_ButtonLED/ButtonLED.py b/Code/Python_Code/02.1.1_ButtonLED/ButtonLED.py index 8b98fae..ef77cff 100644 --- a/Code/Python_Code/02.1.1_ButtonLED/ButtonLED.py +++ b/Code/Python_Code/02.1.1_ButtonLED/ButtonLED.py @@ -2,7 +2,7 @@ ######################################################################## # Filename : ButtonLED.py # Description : Control led with button -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/28 ######################################################################## import RPi.GPIO as GPIO diff --git a/Code/Python_Code/02.2.1_Tablelamp/Tablelamp.py b/Code/Python_Code/02.2.1_Tablelamp/Tablelamp.py index a4e7969..b22e217 100644 --- a/Code/Python_Code/02.2.1_Tablelamp/Tablelamp.py +++ b/Code/Python_Code/02.2.1_Tablelamp/Tablelamp.py @@ -2,7 +2,7 @@ ######################################################################## # Filename : Tablelamp.py # Description : a DIY MINI table lamp -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/28 ######################################################################## import RPi.GPIO as GPIO diff --git a/Code/Python_Code/03.1.1_LightWater/LightWater.py b/Code/Python_Code/03.1.1_LightWater/LightWater.py index 4fc8595..acf8583 100644 --- a/Code/Python_Code/03.1.1_LightWater/LightWater.py +++ b/Code/Python_Code/03.1.1_LightWater/LightWater.py @@ -2,7 +2,7 @@ ######################################################################## # Filename : LightWater.py # Description : Use LEDBar Graph(10 LED) -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/28 ######################################################################## import RPi.GPIO as GPIO diff --git a/Code/Python_Code/06.1.1_Doorbell/Doorbell.py b/Code/Python_Code/06.1.1_Doorbell/Doorbell.py index e62517f..4ea30cf 100644 --- a/Code/Python_Code/06.1.1_Doorbell/Doorbell.py +++ b/Code/Python_Code/06.1.1_Doorbell/Doorbell.py @@ -2,7 +2,7 @@ ######################################################################## # Filename : Doorbell.py # Description : Make doorbell with buzzer and button -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/28 ######################################################################## import RPi.GPIO as GPIO diff --git a/Code/Python_Code/19.1.1_LEDMatrix/LEDMatrix.py b/Code/Python_Code/19.1.1_LEDMatrix/LEDMatrix.py index 724bbb1..fa9b6b1 100644 --- a/Code/Python_Code/19.1.1_LEDMatrix/LEDMatrix.py +++ b/Code/Python_Code/19.1.1_LEDMatrix/LEDMatrix.py @@ -2,7 +2,7 @@ ############################################################################# # Filename : LEDMatrix.py # Description : Control LEDMatrix with 74HC595 -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/28 ######################################################################## import RPi.GPIO as GPIO diff --git a/Code/Python_Code/23.1.1_SenseLED/SenseLED.py b/Code/Python_Code/23.1.1_SenseLED/SenseLED.py index 8f816a3..6d52c94 100644 --- a/Code/Python_Code/23.1.1_SenseLED/SenseLED.py +++ b/Code/Python_Code/23.1.1_SenseLED/SenseLED.py @@ -2,7 +2,7 @@ ######################################################################## # Filename : SenseLED.py # Description : Control led with infrared Motion sensor. -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/28 ######################################################################## import RPi.GPIO as GPIO diff --git a/Code/Python_Code/24.1.1_UltrasonicRanging/UltrasonicRanging.py b/Code/Python_Code/24.1.1_UltrasonicRanging/UltrasonicRanging.py index c21def7..17f539a 100644 --- a/Code/Python_Code/24.1.1_UltrasonicRanging/UltrasonicRanging.py +++ b/Code/Python_Code/24.1.1_UltrasonicRanging/UltrasonicRanging.py @@ -2,7 +2,7 @@ ######################################################################## # Filename : UltrasonicRanging.py # Description : Get distance via UltrasonicRanging sensor -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/28 ######################################################################## import RPi.GPIO as GPIO diff --git a/Code/Python_Code/25.1.1_MPU6050/MPU6050RAW.py b/Code/Python_Code/25.1.1_MPU6050/MPU6050RAW.py index e964f06..5aa41fe 100644 --- a/Code/Python_Code/25.1.1_MPU6050/MPU6050RAW.py +++ b/Code/Python_Code/25.1.1_MPU6050/MPU6050RAW.py @@ -2,7 +2,7 @@ ######################################################################## # Filename : MPU6050RAW.py # Description : Read data of MPU6050. -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/28 ######################################################################## import MPU6050 diff --git a/Code/Python_Code/27.2.1_LightWater03/LightWater03.py b/Code/Python_Code/27.2.1_LightWater03/LightWater03.py index cf4fe9d..4b9bcfe 100644 --- a/Code/Python_Code/27.2.1_LightWater03/LightWater03.py +++ b/Code/Python_Code/27.2.1_LightWater03/LightWater03.py @@ -2,7 +2,7 @@ ############################################################################# # Filename : LightWater03.py # Description : Control LED with 74HC595 on the DIY circuit board -# auther : www.freenove.com +# Author : www.freenove.com # modification: 2019/12/28 ######################################################################## import RPi.GPIO as GPIO