Rename folder

This commit is contained in:
Konstantin Lampalzer 2021-01-16 02:10:40 +01:00
parent 651713c081
commit daef7c97e4
No known key found for this signature in database
GPG key ID: 9A60A522835A2AD9
11 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
from compLIB.ADC import ADC
from compLib.ADC import ADC
BATTERY_CHANNEL = 2
BATTERY_COUNT = 2

View file

@ -1,6 +1,6 @@
import RPi.GPIO as GPIO
from compLIB.ADC import ADC
from compLib.ADC import ADC
TOP_LEFT_CHANNEL = 0
TOP_RIGHT_CHANNEL = 1

View file

@ -1,6 +1,6 @@
import atexit
from compLIB.PCA9685 import PCA9685
from compLib.PCA9685 import PCA9685
pwm = PCA9685(0x40, debug=True)
pwm.setPWMFreq(50)

View file

@ -1,4 +1,4 @@
from compLIB.PCA9685 import PCA9685
from compLib.PCA9685 import PCA9685
pwm = PCA9685(0x40, debug=True)
pwm.setPWMFreq(50)

View file

@ -35,7 +35,7 @@ extensions = [
'sphinx_rtd_theme'
]
autodoc_mock_imports = ["smbus", "compLIB.PCA9685", "RPi"]
autodoc_mock_imports = ["smbus", "compLib.PCA9685", "RPi"]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']