Rename folder
This commit is contained in:
parent
651713c081
commit
daef7c97e4
11 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
from compLIB.ADC import ADC
|
from compLib.ADC import ADC
|
||||||
|
|
||||||
BATTERY_CHANNEL = 2
|
BATTERY_CHANNEL = 2
|
||||||
BATTERY_COUNT = 2
|
BATTERY_COUNT = 2
|
|
@ -1,6 +1,6 @@
|
||||||
import RPi.GPIO as GPIO
|
import RPi.GPIO as GPIO
|
||||||
|
|
||||||
from compLIB.ADC import ADC
|
from compLib.ADC import ADC
|
||||||
|
|
||||||
TOP_LEFT_CHANNEL = 0
|
TOP_LEFT_CHANNEL = 0
|
||||||
TOP_RIGHT_CHANNEL = 1
|
TOP_RIGHT_CHANNEL = 1
|
|
@ -1,6 +1,6 @@
|
||||||
import atexit
|
import atexit
|
||||||
|
|
||||||
from compLIB.PCA9685 import PCA9685
|
from compLib.PCA9685 import PCA9685
|
||||||
|
|
||||||
pwm = PCA9685(0x40, debug=True)
|
pwm = PCA9685(0x40, debug=True)
|
||||||
pwm.setPWMFreq(50)
|
pwm.setPWMFreq(50)
|
|
@ -1,4 +1,4 @@
|
||||||
from compLIB.PCA9685 import PCA9685
|
from compLib.PCA9685 import PCA9685
|
||||||
|
|
||||||
pwm = PCA9685(0x40, debug=True)
|
pwm = PCA9685(0x40, debug=True)
|
||||||
pwm.setPWMFreq(50)
|
pwm.setPWMFreq(50)
|
|
@ -35,7 +35,7 @@ extensions = [
|
||||||
'sphinx_rtd_theme'
|
'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.
|
# Add any paths that contain templates here, relative to this directory.
|
||||||
templates_path = ['_templates']
|
templates_path = ['_templates']
|
||||||
|
|
Reference in a new issue