Skip to content

Commit

Permalink
Fix file locations
Browse files Browse the repository at this point in the history
  • Loading branch information
kizniche committed Mar 14, 2024
1 parent 5763833 commit 9420c01
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion mycodo/inputs/dht11.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
'options_disabled': ['interface'],

'dependencies_module': [
('internal', 'file-exists /opt/mycodo/pigpio_installed', 'pigpio'),
('internal', 'file-exists /opt/Mycodo/pigpio_installed', 'pigpio'),
('pip-pypi', 'pigpio', 'pigpio==1.78')
],

Expand Down
2 changes: 1 addition & 1 deletion mycodo/inputs/dht22.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
'options_disabled': ['interface'],

'dependencies_module': [
('internal', 'file-exists /opt/mycodo/pigpio_installed', 'pigpio'),
('internal', 'file-exists /opt/Mycodo/pigpio_installed', 'pigpio'),
('pip-pypi', 'pigpio', 'pigpio==1.78')
],

Expand Down
2 changes: 1 addition & 1 deletion mycodo/inputs/examples/example_all_options_temperature.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def constraints_pass_measure_range(mod_input, value):
('pip-pypi', 'adafruit-bme280', 'git+https://github.com/adafruit/Adafruit_Python_BME280.git'),
('apt', 'whiptail', 'whiptail'),
('apt', 'zsh', 'zsh'),
('internal', 'file-exists /opt/mycodo/pigpio_installed', 'pigpio'),
('internal', 'file-exists /opt/Mycodo/pigpio_installed', 'pigpio'),
('pip-pypi', 'pigpio', 'pigpio==1.78'),
('internal', 'pip-exists wiringpi', 'wiringpi'),
('internal', 'file-exists /usr/local/include/bcm2835.h', 'bcm2835')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def constraints_pass_measure_range(mod_input, value):
('pip-pypi', 'adafruit-bme280', 'git+https://github.com/adafruit/Adafruit_Python_BME280.git'),
('apt', 'whiptail', 'whiptail'),
('apt', 'zsh', 'zsh'),
('internal', 'file-exists /opt/mycodo/pigpio_installed', 'pigpio'),
('internal', 'file-exists /opt/Mycodo/pigpio_installed', 'pigpio'),
('pip-pypi', 'pigpio', 'pigpio==1.78'),
('internal', 'pip-exists wiringpi', 'wiringpi'),
('internal', 'file-exists /usr/local/include/bcm2835.h', 'bcm2835')
Expand Down
2 changes: 1 addition & 1 deletion mycodo/inputs/hall_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
'options_disabled': ['interface'],

'dependencies_module': [
('internal', 'file-exists /opt/mycodo/pigpio_installed', 'pigpio'),
('internal', 'file-exists /opt/Mycodo/pigpio_installed', 'pigpio'),
('pip-pypi', 'pigpio', 'pigpio==1.78')
],

Expand Down
2 changes: 1 addition & 1 deletion mycodo/inputs/htu21d.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
'options_disabled': ['interface'],

'dependencies_module': [
('internal', 'file-exists /opt/mycodo/pigpio_installed', 'pigpio'),
('internal', 'file-exists /opt/Mycodo/pigpio_installed', 'pigpio'),
('pip-pypi', 'pigpio', 'pigpio==1.78')
],

Expand Down
2 changes: 1 addition & 1 deletion mycodo/inputs/rpi_signal_pwm.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
'options_disabled': ['interface'],

'dependencies_module': [
('internal', 'file-exists /opt/mycodo/pigpio_installed', 'pigpio'),
('internal', 'file-exists /opt/Mycodo/pigpio_installed', 'pigpio'),
('pip-pypi', 'pigpio', 'pigpio==1.78')
],

Expand Down
2 changes: 1 addition & 1 deletion mycodo/inputs/rpi_signal_revolutions.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
'options_disabled': ['interface'],

'dependencies_module': [
('internal', 'file-exists /opt/mycodo/pigpio_installed', 'pigpio'),
('internal', 'file-exists /opt/Mycodo/pigpio_installed', 'pigpio'),
('pip-pypi', 'pigpio', 'pigpio==1.78')
],

Expand Down
2 changes: 1 addition & 1 deletion mycodo/inputs/rpi_signal_revolutions_pigpio_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
'options_disabled': ['interface'],

'dependencies_module': [
('internal', 'file-exists /opt/mycodo/pigpio_installed', 'pigpio'),
('internal', 'file-exists /opt/Mycodo/pigpio_installed', 'pigpio'),
('pip-pypi', 'pigpio', 'pigpio==1.78')
],

Expand Down
2 changes: 1 addition & 1 deletion mycodo/outputs/pwm_gpio.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
'options_disabled': ['interface'],

'dependencies_module': [
('internal', 'file-exists /opt/mycodo/pigpio_installed', 'pigpio'),
('internal', 'file-exists /opt/Mycodo/pigpio_installed', 'pigpio'),
('pip-pypi', 'pigpio', 'pigpio==1.78')
],

Expand Down
2 changes: 1 addition & 1 deletion mycodo/scripts/upgrade_commands.sh
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ case "${1:-''}" in
/bin/bash "${MYCODO_PATH}"/mycodo/scripts/upgrade_commands.sh build-pigpiod
/bin/bash "${MYCODO_PATH}"/mycodo/scripts/upgrade_commands.sh disable-pigpiod
/bin/bash "${MYCODO_PATH}"/mycodo/scripts/upgrade_commands.sh enable-pigpiod-high
mkdir -p /opt/mycodo
mkdir -p /opt/Mycodo
touch /opt/Mycodo/pigpio_installed
;;
'uninstall-pigpiod')
Expand Down

0 comments on commit 9420c01

Please sign in to comment.