mpf 0.80.0.dev6__tar.gz → 0.80.0.dev7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/.github/workflows/build_wheels.yml +3 -3
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/PKG-INFO +7 -8
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/README.md +5 -5
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/_version.py +1 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_spec.yaml +16 -6
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/placeholder_manager.py +1 -17
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/segment_mappings.py +202 -101
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/servo.py +4 -2
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/stepper.py +36 -15
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/carousel/code/carousel.py +9 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/service/code/service.py +2 -2
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/communicators/exp.py +22 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/communicators/net_neuron.py +4 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast.py +38 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_defines.py +11 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_driver.py +1 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_servo.py +2 -1
- mpf-0.80.0.dev7/mpf/platforms/fast/fast_stepper.py +111 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/interfaces/stepper_platform_interface.py +1 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/p_roc_devices.py +1 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pin2dmd.py +19 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pololu/pololu_tic.py +1 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/spike/spike.py +2 -2
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/step_stick.py +1 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/trinamics_steprocker.py +1 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/virtual.py +54 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/carousel/config/config.yaml +1 -0
- mpf-0.80.0.dev7/mpf/tests/machine_files/carousel/modes/nowrap_carousel/config/nowrap_carousel.yaml +12 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_CarouselMode.py +48 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf.egg-info/PKG-INFO +7 -8
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf.egg-info/SOURCES.txt +2 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf.egg-info/requires.txt +0 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/pyproject.toml +0 -1
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/.bandit +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/.coveragerc +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/.github/dependabot.yml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/.github/workflows/prospector.yml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/.github/workflows/run_tests.yml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/.gitignore +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/.prospector.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/AUTHORS.md +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/CONTRIBUTING.md +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/LICENSE.md +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/Makefile +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/RELEASE.md +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/Makefile +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/apple-touch-icon-114x114.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/apple-touch-icon-120x120.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/apple-touch-icon-144x144.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/apple-touch-icon-152x152.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/apple-touch-icon-57x57.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/apple-touch-icon-60x60.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/apple-touch-icon-72x72.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/apple-touch-icon-76x76.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/favicon-128.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/favicon-16x16.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/favicon-196x196.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/favicon-32x32.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/favicon-96x96.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/favicon.ico +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/mstile-144x144.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/mstile-150x150.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/mstile-310x150.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/mstile-310x310.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/icons/mstile-70x70.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/mpf-logo-200.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/mpf-logo-tiny.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/images/mpf-logo-tiny@2x.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_static/mpf.css +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/config_players.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/config_players_overview.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/devices.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/devices_overview.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/index.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/machine.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/machine_overview.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/misc.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/misc_overview.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/modes.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/modes_overview.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/platforms.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/platforms_overview.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/self.machine.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/tests.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/_templates/tests_overview.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/ball_end.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/ball_start.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/device.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/error.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/goodbye.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/hello.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/index.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/machine_variable.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/mode_start.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/mode_stop.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/monitor_start.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/monitor_stop.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/player_added.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/player_turn_start.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/player_variable.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/register_trigger.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/remove_trigger.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/reset.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/reset_complete.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/switch.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/bcp/trigger.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/code/index.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/code/machine_code.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/code/mode_code.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/conf.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/dev/Send variables via self.machine.events.post.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/dev/dev_environment.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/dev/event_annotations.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/dev/hardware.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/dev/index.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/dev/mc.widget_player.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/dev/plugins.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/functions/index.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/functions/machine_variables.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/functions/player_variables.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/genindex.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/images/custom_mode_code.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/images/scriptlet.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/images/test_classes.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/index.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/make.bat +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/overview/boot_process.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/overview/files.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/overview/index.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/overview/installation.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/overview/yaml.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/requirements.txt +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/testing/fuzz_testing.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/testing/index.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/testing/running_mpf_tests.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/testing/tutorial/1.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/testing/tutorial/2.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/testing/writing_machine_tests.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/docs/testing/writing_mpf_tests.rst +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/get_version.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/__main__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/assets/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/assets/show.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/benchmarks/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/benchmarks/machine_files/events/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/benchmarks/machine_files/shows/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/benchmarks/machine_files/shows/shows/minimal_light_show.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/benchmarks/machine_files/shows/shows/minimal_light_show_token.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/benchmarks/machine_files/shows/shows/multi_step_tags.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/benchmarks/machine_files/shows/shows/single_step_tag.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/benchmarks/machine_files/switch_hits/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/benchmarks/test_benchmark_events.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/benchmarks/test_benchmark_light_shows.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/benchmarks/test_benchmark_switch_hits.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/both.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/build.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/core.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/create_config.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/diagnosis.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/game.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/hardware.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/init.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/logging_formatters.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/service.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/templates/attract.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/templates/base.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/templates/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/test.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/commands/wire.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/bcp_plugin_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/blinkenlight_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/block_event_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/bus_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/coil_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/device_config_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/event_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/flasher_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/flat_config_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/hardware_sound_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/light_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/plugin_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/queue_event_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/queue_relay_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/random_event_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/score_queue_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/segment_display_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/show_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/slide_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/sound_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/variable_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/config_players/widget_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/assets.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/async_mode.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/ball_controller.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/ball_search.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/bcp/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/bcp/bcp.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/bcp/bcp_client.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/bcp/bcp_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/bcp/bcp_pickle_client.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/bcp/bcp_server.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/bcp/bcp_socket_client.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/bcp/bcp_transport.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/case_insensitive_dict.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/clock.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/config_loader.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/config_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/config_processor.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/config_spec_loader.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/config_validator.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/crash_reporter.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/custom_code.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/data_manager.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/delays.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/device.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/device_manager.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/device_monitor.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/enable_disable_mixin.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/events.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/file_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/file_manager.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/light_controller.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/logging.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/machine.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/machine_vars.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/mode.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/mode_controller.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/mode_device.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/mpf_controller.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/platform.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/platform_batch_light_system.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/platform_controller.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/plugin.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/randomizer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/rgb_color.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/rgba_color.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/service_controller.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/settings_controller.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/show_controller.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/switch_controller.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/system_wide_device.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/text_ui.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/core/utility_functions.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/accelerometer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/achievement.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/achievement_group.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/autofire.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/ball_count_handler.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/ball_device.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/ball_device_ejector.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/ball_device_state_handler.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/default_ball_search.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/enable_coil_ejector.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/entrance_switch_counter.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/event_ejector.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/hold_coil_ejector.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/incoming_balls_handler.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/outgoing_balls_handler.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/physical_ball_counter.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/pulse_coil_ejector.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_device/switch_counter.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_hold.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_routing.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/ball_save.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/blinkenlight.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/combo_switch.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/device_mixins.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/digital_output.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/digital_score_reel.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/diverter.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/dmd.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/driver.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/drop_target.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/dual_wound_coil.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/extra_ball.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/extra_ball_group.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/flipper.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/hardware_sound_system.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/kickback.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/light.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/light_group.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/logic_blocks.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/magnet.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/motor.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/multiball.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/multiball_lock.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/playfield.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/playfield_transfer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/power_supply_unit.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/rgb_dmd.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/score_queue.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/score_reel.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/score_reel_controller.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/score_reel_group.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/segment_display/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/segment_display/segment_display.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/segment_display/segment_display_text.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/segment_display/text_stack_entry.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/segment_display/transition_manager.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/segment_display/transitions.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/sequence_shot.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/shot.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/shot_group.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/shot_profile.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/show_queue.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/speedometer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/spinner.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/state_machine.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/switch.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/timed_switch.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/devices/timer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/exceptions/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/exceptions/base_error.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/exceptions/config_file_error.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/exceptions/driver_limits_error.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/exceptions/runtime_error.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/file_interfaces/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/file_interfaces/pickle_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/file_interfaces/yaml_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/attract/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/attract/code/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/attract/code/attract.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/attract/config/attract.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/bonus/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/bonus/code/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/bonus/code/bonus.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/bonus/config/bonus.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/carousel/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/carousel/code/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/credits/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/credits/code/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/credits/code/credits.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/credits/config/credits.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/game/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/game/code/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/game/code/game.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/game/config/game.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/high_score/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/high_score/code/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/high_score/code/high_score.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/high_score/config/high_score.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/high_score/images/back_arrow_7x7.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/high_score/images/back_arrow_7x7_selected.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/high_score/images/end_11x7.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/high_score/images/end_11x7_selected.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/match/code/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/match/code/match.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/match/config/match.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/service/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/service/code/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/service/config/service.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/service/sounds/power_off.ogg +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/service/sounds/switch_hit.ogg +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/service_dmd/config/service_dmd.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/service_segment_display/config/service_segment_display.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/tilt/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/tilt/code/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/tilt/code/tilt.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/modes/tilt/config/tilt.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/mpfconfig.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/parsers/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/parsers/event_reference_parser.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/parsers/special_events.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/base_serial_communicator.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/driver_light_platform.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fadecandy.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/TODO.md +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/communicators/aud.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/communicators/base.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/communicators/dmd.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/communicators/emu.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/communicators/net_nano.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/communicators/net_retro.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/communicators/rgb.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/communicators/seg.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_audio.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_dmd.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_exp_board.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_gi.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_io_board.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_led.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_light.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_port_detector.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_segment_display.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/fast/fast_switch.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/i2c_servo_controller.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/interfaces/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/interfaces/accelerometer_platform_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/interfaces/dmd_platform.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/interfaces/driver_platform_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/interfaces/hardware_sound_platform_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/interfaces/i2c_platform_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/interfaces/light_platform_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/interfaces/segment_display_platform_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/interfaces/servo_platform_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/interfaces/switch_platform_interface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/light_segment_displays.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/lisy/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/lisy/defines.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/lisy/lisy.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/mma8451.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/mypinballs/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/mypinballs/mypinballs.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/openpixel.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/opp/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/opp/opp.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/opp/opp_coil.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/opp/opp_incand.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/opp/opp_modern_lights.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/opp/opp_rs232_intf.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/opp/opp_serial_communicator.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/opp/opp_servo.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/opp/opp_switch.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/osc.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/p3_roc.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/p_roc.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/p_roc_common.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pinproc/osx/pinproc.so +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pinproc/windows/pinproc.cp310-win32.pyd +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pinproc/windows/pinproc.cp310-win_amd64.pyd +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pinproc/windows/pinproc.cp311-win32.pyd +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pinproc/windows/pinproc.cp311-win_amd64.pyd +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pinproc/windows/pinproc.cp312-win32.pyd +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pinproc/windows/pinproc.cp312-win_amd64.pyd +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pinproc/windows/pinproc.cp38-win32.pyd +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pinproc/windows/pinproc.cp38-win_amd64.pyd +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pinproc/windows/pinproc.cp39-win32.pyd +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pinproc/windows/pinproc.cp39-win_amd64.pyd +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pkone/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pkone/pkone.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pkone/pkone_coil.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pkone/pkone_extension.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pkone/pkone_lights.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pkone/pkone_lightshow.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pkone/pkone_serial_communicator.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pkone/pkone_servo.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pkone/pkone_switch.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pololu/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pololu/pololu_ticcmd_wrapper.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/pololu_maestro.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/rpi/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/rpi/rpi.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/rpi_dmd.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/smart_virtual.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/smartmatrix.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/smbus2.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/snux.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/spi_bit_bang.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/spike/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/spike/spike_defines.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/system11.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/trinamics/README +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/trinamics/TMCL.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/trinamics/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/virtual_pinball/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/virtual_pinball/virtual_pinball.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/visual_pinball_engine/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/visual_pinball_engine/generate.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/visual_pinball_engine/platform_pb2.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/visual_pinball_engine/platform_pb2_grpc.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/visual_pinball_engine/protobuf/platform.proto +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/visual_pinball_engine/service.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/visual_pinball_engine/test_client.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/visual_pinball_engine/test_server.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/platforms/visual_pinball_engine/visual_pinball_engine.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/plugins/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/plugins/auditor.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/plugins/info_lights.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/plugins/platform_integration_test_runner.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/plugins/switch_player.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/plugins/twitch/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/plugins/twitch/twitch_client.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/plugins/twitch_bot.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/plugins/virtual_segment_display_connector.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/MpfBcpTestCase.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/MpfDocTestCase.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/MpfFakeGameTestCase.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/MpfGameTestCase.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/MpfIntegrationDocTestCase.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/MpfMachineTestCase.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/MpfPlatformIntegrationTest.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/MpfTestCase.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/README.md +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/TestDataManager.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/loop.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/accelerometer/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/achievement/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/achievement/modes/auto_select/config/auto_select.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/achievement/modes/base/config/base.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/achievement/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/apc/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/config/test_asset_loading.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/custom1/show8.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/mode_start/show9.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/on_demand/show10.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/preload/show7.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/show6.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/shows/custom1/show11.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/shows/custom1/show13.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/shows/on_demand/show5.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/shows/preload/show4.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/shows/preload/subfolder/show4b.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/shows/show1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/shows/show12.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/shows/show2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/asset_manager/shows/show3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/auditor/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/auditor/modes/base/config/base.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/autofire/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_controller/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_controller/config/regression.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_ball_device.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_ball_device_auto_manual_plunger.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_ball_device_event_confirmation.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_ball_device_event_ejector.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_ball_device_jam_switch.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_ball_device_jam_switch_initial.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_ball_device_manual_with_target.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_ball_device_no_plunger_switch.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_ball_device_routing.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_ball_device_switch_confirmation.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_ball_device_trigger_events.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_enable_coil.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_enable_coil_multiple.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_gottlieb_trough.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_gottlieb_trough_with_initial_balls.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_hold_coil.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_jam_and_ball_left.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_modern_trough_plunger_setup.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_player_controlled_eject.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_playfield_lock.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_pulse_eject.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_single_device.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_system_11_trough.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_system_11_trough_startup.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/test_too_long_exit_count_delay.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/trough_entrance_switch.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_device/config/trough_entrance_switch_initial_balls.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_holds/config/test_ball_holds.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_holds/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_routing/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_routing/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_save/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_save/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_save/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_search/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_search/config/config_ball_device.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_search/config/config_with_balls.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_search/config/mechanical_eject.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_search/config/missing_initial.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/ball_search/config/no_eject.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bcp/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bcp/config/multiple_connections_config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bcp/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bcp/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/blinkenlight/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/blinkenlight/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/blinkenlight/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/blocking_events/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/blocking_events/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/blocking_events/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/blocking_events/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus/modes/bonus/config/bonus.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus_additional_events/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus_additional_events/modes/bonus/config/bonus.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus_additional_events/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus_dynamic_keep_multiplier/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus_dynamic_keep_multiplier/modes/bonus/config/bonus.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus_dynamic_keep_multiplier/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus_no_keep_multiplier/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus_no_keep_multiplier/modes/bonus/config/bonus.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/bonus_no_keep_multiplier/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/carousel/modes/blocking_carousel/config/blocking_carousel.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/carousel/modes/carousel/config/carousel.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/carousel/modes/conditional_carousel/config/conditional_carousel.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/carousel/modes/second_carousel/config/second_carousel.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/coil_player/config/coil_player.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/coil_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/combo_switches/config/combo_switches.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/combo_switches/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_errors/broken_show/config/show.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_errors/broken_show/shows/broken_show.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_interface/config/test_config_interface.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_interface/config/test_config_interface_missing_version.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_interface/config/test_config_interface_old_version.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_loader/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_loader/modes/game/config/game.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_loader/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_loader/modes/mode1/shows/mode1_show.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_loader/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_loader/shows/show1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_players/config/test_config_players.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_players/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_players/modes/mode1/shows/mode1_show.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_players/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_players/shows/show1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_processor/typo.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_processor/working.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/config_processor/working_subconfig.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/counters/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/counters/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/credits/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/credits/config/config_credit_tiers.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/credits/config/config_freeplay.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/credits/config/config_inhibit.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/credits/modes/credits/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/custom_code/code/__init__.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/custom_code/code/test_code.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/custom_code/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/data_manager/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/device/config/coils.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/device/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/device/config/config_dual_wound_coil.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/device_collection/config/test_device_collection.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/digital_output/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/digital_score_reels/config/test_digital_score_reels.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/diverter_with_activation_events.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/only_events_no_coils.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/test_activation_switch_and_eject_confirm_switch.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/test_delayed_eject.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/test_diverter_auto_disable.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/test_diverter_dual_wound_coil.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/test_diverter_with_switch.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/test_eject_to_oposide_sides.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/test_eject_to_oposide_sides2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/test_hold_activation_time.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/test_hold_no_activation_time.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/test_missing_ball_at_source.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/diverter/config/test_pulsed_activation_time.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/dmd/config/testDmd.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/dmd/config/testRgbDmd.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/drop_targets/config/test_drop_targets.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/drop_targets/config/test_multiple_drop_resets_on_startup.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/drop_targets/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/event_manager/config/test_event_manager.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/event_manager/modes/game_mode/config/game_mode.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/event_manager/modes/test_mode/config/test_mode.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/event_players/config/test_event_player.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/event_players/config/test_queue_event_player.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/event_players/config/test_random_event_player.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/event_players/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/event_players/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/extra_ball/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/extra_ball/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/fast/config/audio.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/fast/config/audio2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/fast/config/dmd.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/fast/config/error_lights.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/fast/config/exp.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/fast/config/nano.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/fast/config/neuron.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/fast/config/retro.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/fast/config/seg.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/flippers/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/flippers/config/hold_no_eos.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/flippers/config/software_eos_repulse.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/game/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/game/config/config_with_balls.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/head2head/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/high_score/config/high_score.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/high_score/modes/high_score/config/high_score.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/high_score_reverse/config/high_score.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/high_score_reverse/modes/high_score/config/high_score.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/high_score_vars/config/high_score.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/high_score_vars/modes/high_score/config/high_score.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/i2c_servo_controller/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/info_lights/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/kickback/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light/config/light.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light/config/light_default_color_correction.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light/config/light_groups.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light/config/lights_on_drivers.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light/config/matrix_lights.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light_player/config/light_player.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light_player/config/light_player_named_colors.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light_player/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light_player/shows/show_ext1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light_player/shows/show_ext2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light_player/shows/show_ext3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light_segment_displays/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/light_segment_displays/config/config_dots.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/lisy/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/lisy/config/config_modern.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/lisy/config/config_system11.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/logic_blocks/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/logic_blocks/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/logic_blocks/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/logic_blocks/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/logic_blocks/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/machine_vars/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/magnet/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/match_mode/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/match_mode/config/config_highscore.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/match_mode/modes/match/config/match.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mma8451/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/config/test_broken_mode_config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/config/test_empty_modes_section.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/config/test_loading_invalid_modes.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/config/test_missing_mode_section.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/config/test_mode_without_config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/config/test_modes.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/config/test_modes_in_game.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/broken_mode/config/broken_mode.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/broken_mode2/config/broken_mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode1/config/test.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode3/code/mode3.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/config/mode5.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/config/test.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/mode8/config/mode8.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/mode8/config/test.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode6/config/mode6.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode6/config/test.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode7/config/mode7.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode7/config/test.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode_restart_on_next_ball/config/mode_restart_on_next_ball.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mode_tests/modes/mode_without_config/config/README +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/motor/config/drop_target.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/motor/config/ghostbusters.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/motor/config/multiposition_motor.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/motor/config/multiposition_motor_home_in_the_middle.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/motor/config/multiposition_motor_start_on_end_switch.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mpftestcase/config/test_mpftestcase.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball/modes/mode5/config/mode5.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/config/testDefault.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/config/testMinVirtualPhysical.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/config/testNoVirtual.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/config/testPhysicalOnly.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/config/testPhysicalOnlyNoStealing.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/config/testSourceDevices.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/config/testVirtualOnly.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/modes/blocking/config/blocking.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/modes/default/config/default.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/modes/min_virtual_physical/config/min_virtual_physical.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/modes/no_virtual/config/no_virtual.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/modes/physical_only/config/physical_only.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/modes/physical_only_no_stealing/config/physical_only_no_stealing.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/modes/source_devices/config/source_devices.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/multiball_locks/modes/virtual_only/config/virtual_only.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/mypinballs/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/null/config/null.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/openpixel/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/openpixel/config/fadecandy.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/opp/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/opp/config/config2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/opp/config/config_stm32.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/osc/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/p3_roc/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/p_roc/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/p_roc/config/snux.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/p_roc/config/wpc.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/pkone/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/platform/config/test_platform.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/platform/config/test_virtual.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/player_vars/config/player_vars.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/playfield/config/test_playfield.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/playfield_transfer/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/plugin_config_player/config/plugin_config_player.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/plugin_config_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/plugin_config_player/modes/mode1/shows/show2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/plugin_config_player/modes/mode1/shows/show3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/plugin_config_player/shows/show1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/pololu_maestro/config/pololu_maestro.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/pololu_tic/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/randomizer/config/randomizer.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/rpi/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/rpi_dmd/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/score_queue/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/score_queue/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/score_reels/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/segment_display/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/segment_display/config/config_colors.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/segment_display/config/config_flashing.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/segment_display/config/config_transition.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/segment_display/config/game.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/segment_display/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/sequence_shot/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/sequence_shot/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/service_mode/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/servo/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/settings/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shots/config/test_shot_group_rotate_with_exclude.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shots/config/test_shot_groups.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shots/config/test_shots.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shots/modes/base/config/base.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shots/modes/base2/config/base2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shots/modes/base3/config/base3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shots/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shots/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shots/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shots/modes/rotate_with_exclude/config/rotate_with_exclude.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/config/test_show_player_queue.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/config/test_show_pools.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/config/test_shows.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/config/test_sync_ms.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/shows/8linesweep.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/shows/myparentshow.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/shows/on_demand/mychildshow.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/shows/test_show1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/shows/test_show2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/shows/test_show3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/shows/test_show_key_token.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/shows/shows/test_variable_show.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/smart_matrix/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/smart_matrix/config/old_cookie.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/smart_virtual_platform/config/test_coil_fired_plunger.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/smart_virtual_platform/config/test_entrance_switch.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/smart_virtual_platform/config/test_smart_virtual.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/smart_virtual_platform/config/test_smart_virtual_initial.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/smbus2/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/snux/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/spi_bit_bang/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/spike/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/spinners/config/test_spinners.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/state_machine/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/state_machine/modes/game_mode/config/game_mode.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/state_machine/modes/non_game_mode/config/non_game_mode.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/step_stick/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/stepper/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/switch_controller/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/switch_player/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/tilt/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/tilt/config/config_mechanical_eject.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/tilt/config/config_system_11_trough.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/tilt/config/settings.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/tilt/modes/base/config/base.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/tilt/modes/tilt/config/tilt.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/tilt_defaults/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/timed_switches/config/timed_switches.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/timed_switches/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/timer/config/test_timer.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/timer/modes/mode_with_timers/config/mode_with_timers.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/timer/modes/mode_with_timers2/config/mode_with_timers2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/trinamics_steprocker/config/trinamics_steprocker.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/twitch_client/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/variable_player/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/variable_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/variable_player/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/variable_player/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/variable_player/modes/mode_for_logic_block/config/mode_for_logic_block.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/variable_player/modes/non_game_mode/config/non_game_mode.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/virtual_pinball/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/virtual_segment_display_connector/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/vpe/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/machine_files/vpx/config/config.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/platforms/fast.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/platforms/pinproc.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/regression_tests/light_player_subscriptions.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/regression_tests/shot_same_show_differnent_token.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/regression_tests/shots_with_token_in_profile_and_shot.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/regression_tests/show_player_subscriptions.yaml +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Accelerometer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Achievement.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_AssetManager.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Attract.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Auditor.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Autofire.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallController.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDevice.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceAutoManualPlunger.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceEnableCoil.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceEventConfirmation.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceEventEjector.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceHoldCoil.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceJamSwitch.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceManualWithTarget.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceModernTroughPlungerSetup.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceNoPlungerSwitch.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDevicePlayfieldLock.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDevicePulseEject.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceRouting.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceSingle.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceSwitchConfirmation.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDeviceTriggerEvents.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallDevice_SmartVirtual.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallHold.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallRouting.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallSave.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BallSearch.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BcpInterface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BcpMc.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BcpServer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BcpSocketClient.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Blinkenlight.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_BlockingEvents.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Bonus.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Clock.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_CoilPlayer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ComboSwitches.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_CommandCreateConfig.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Commands.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Config.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ConfigErrors.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ConfigLoader.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ConfigMissingVersion.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ConfigOldVersion.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ConfigPlayers.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ConfigProcessor.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_CreditsMode.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_CustomCode.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DataManager.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Delay.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DeviceCollection.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DeviceDriver.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DeviceFlasher.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DeviceGI.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DeviceLight.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DeviceManager.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DeviceMatrixLight.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DigitalOutput.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DigitalScoreReels.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Diverter.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Dmd.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DropTargets.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_DualWoundCoil.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_EventManager.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_EventPlayer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ExtraBall.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Fadecandy.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Fast.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Fast_Audio.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Fast_Dmd.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Fast_Exp.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Fast_Nano.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Fast_Neuron.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Fast_Retro.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Fast_Seg.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Flippers.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_FlippersHoldNoEos.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_FlippersSoftwareEosRepulse.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Game.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_GottliebTrough.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Head2Head.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_HighScoreMode.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_HighScoreModeWithVars.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_I2cServoController.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_InfoLights.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Kickback.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_LightGroups.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_LightPlayer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_LightPositions.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_LightSegmentDisplays.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Lisy.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_LogicBlocks.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_MMA8451.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_MachineVariables.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Magnet.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_MatchMode.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Modes.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ModesConfigValidation.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Motors.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_MpfTestCase.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_MultiBall.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_MultiballLock.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_MyPinballs.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_OPP.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Openpixel.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Osc.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_P3_Roc.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_PKONE.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_P_Roc.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_PlaceholderManager.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Platform.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_PlayerVars.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Playfield.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_PlayfieldTransfer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_PluginConfigPlayer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_PololuMaestro.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_PololuTic.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_QueueEventPlayer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_RGBColor.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_RandomEventPlayer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Randomizer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Rpi.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_RpiDmd.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ScoreQueue.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ScoreReels.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_SegmentDisplay.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_SegmentMappings.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_SequenceShot.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ServiceCli.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ServiceMode.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Servo.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Settings.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ShotGroups.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Shots.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_ShowPools.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Shows.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_SmartMatrix.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_SmartVirtualPlatform.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Smbus2.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Snux.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_SpiBitBang.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Spike.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Spinners.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_StateMachine.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_StepStick.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Stepper.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_SwitchController.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_SwitchPlayer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_SwitchPositions.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_System11Trough.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Tilt.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_TimedSwitch.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Timer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_TooLongExitCountDelay.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_TrinamicsStepRocker.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_TroughEntranceSwitch.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_TwitchClient.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Utility_Functions.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_VPX.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_VariablePlayer.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_Virtual.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_VirtualPinball.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_VirtualSegmentDisplayConnector.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_VisualPinballEngine.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/test_YamlInterface.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/tests/vpe_simulator.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/wire/base.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf/wire/fast.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf-logo-200.png +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf.egg-info/dependency_links.txt +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf.egg-info/entry_points.txt +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf.egg-info/top_level.txt +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mpf.spec +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/mypy.ini +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/setup.cfg +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/setup.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/sonar-project.properties +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/test_machine.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/test_regression.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/tools/afl_fuzz.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/tools/afl_howto.txt +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/tools/convert_segments.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/tools/debug_run_game.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/tools/p3_switch_test.py +0 -0
- {mpf-0.80.0.dev6 → mpf-0.80.0.dev7}/tools/smart_matrix_dmd_teensy_code/smart_matrix_dmd_teensy_code.ino +0 -0
|
@@ -17,10 +17,10 @@ jobs:
|
|
|
17
17
|
|
|
18
18
|
steps:
|
|
19
19
|
- name: Checkout MPF
|
|
20
|
-
uses: actions/checkout@
|
|
20
|
+
uses: actions/checkout@v4
|
|
21
21
|
|
|
22
22
|
- name: Setup python
|
|
23
|
-
uses: actions/setup-python@
|
|
23
|
+
uses: actions/setup-python@v5
|
|
24
24
|
with:
|
|
25
25
|
python-version: 3.11
|
|
26
26
|
|
|
@@ -35,7 +35,7 @@ jobs:
|
|
|
35
35
|
- name: Build wheel
|
|
36
36
|
run: python -m build
|
|
37
37
|
|
|
38
|
-
- uses: actions/upload-artifact@
|
|
38
|
+
- uses: actions/upload-artifact@v4
|
|
39
39
|
with:
|
|
40
40
|
path: ./dist/*.*
|
|
41
41
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: mpf
|
|
3
|
-
Version: 0.80.0.
|
|
3
|
+
Version: 0.80.0.dev7
|
|
4
4
|
Summary: The Mission Pinball Framework (MPF)
|
|
5
5
|
Author-email: The Mission Pinball Framework Team <brian@missionpinball.org>
|
|
6
6
|
License: MIT
|
|
@@ -35,7 +35,6 @@ Requires-Dist: ruamel.yaml==0.18.6
|
|
|
35
35
|
Requires-Dist: setuptools~=72.2.0
|
|
36
36
|
Requires-Dist: sortedcontainers==2.4.0
|
|
37
37
|
Requires-Dist: terminaltables==3.1.10
|
|
38
|
-
Requires-Dist: Pillow==9.5.0
|
|
39
38
|
Provides-Extra: crash-reporter
|
|
40
39
|
Requires-Dist: requests==2.28.2; extra == "crash-reporter"
|
|
41
40
|
Provides-Extra: irc
|
|
@@ -72,7 +71,7 @@ Requires-Dist: uvloop==0.19.0; extra == "all"
|
|
|
72
71
|
Mission Pinball Framework (MPF)
|
|
73
72
|
===============================
|
|
74
73
|
|
|
75
|
-
<img align="center" height="146" src="https://missionpinball.org/images/mpf-logo-full.png"/>
|
|
74
|
+
<img align="center" height="146" src="https://missionpinball.org/latest/images/mpf-logo-full.png"/>
|
|
76
75
|
|
|
77
76
|
<em>...Let's build a pinball machine!</em>
|
|
78
77
|
|
|
@@ -96,7 +95,7 @@ Documentation
|
|
|
96
95
|
Support
|
|
97
96
|
-------
|
|
98
97
|
|
|
99
|
-
MPF is an open source community project which has no official support. Some MPF users participate in the MPF-Users Google group or GitHub Discussion. Links [here](https://missionpinball.org/community/).
|
|
98
|
+
MPF is an open source community project which has no official support. Some MPF users participate in the MPF-Users Google group or GitHub Discussion. Links [here](https://missionpinball.org/latest/community/).
|
|
100
99
|
|
|
101
100
|
Individual pinball hardware companies may provide additional support for users of their hardware, often via their own Slack, Discord, or other chat groups. If you get stuck, you can ask for help in the MPF-users group, or you reach out to your hardware provider.
|
|
102
101
|
|
|
@@ -105,15 +104,15 @@ Maintenance, Pull Requests, & Bug Fixes
|
|
|
105
104
|
|
|
106
105
|
As a community project, we welcome pull requests and bug fixes. However, we do not have the resources to provide support for MPF. If you are interested in becoming a maintainer, please contact us at brian@missionpinball.org.
|
|
107
106
|
|
|
108
|
-
Bugs or other issues related to MPF itself can be posted to the [MPF Discussions page on GitHub](https://missionpinball.org/community/).
|
|
107
|
+
Bugs or other issues related to MPF itself can be posted to the [MPF Discussions page on GitHub](https://missionpinball.org/latest/community/).
|
|
109
108
|
|
|
110
109
|
Contributing
|
|
111
110
|
------------
|
|
112
111
|
|
|
113
112
|
Individual pinball hardware makers are responsible for their own platform interface maintenance and contributions.
|
|
114
113
|
|
|
115
|
-
MPF is a passion project created and maintained by volunteers. If you're a Python coder, documentation writer, or pinball maker, feel free to make a change and submit a pull request. For more information about contributing see the [Contributing Code](https://missionpinball.org/about/contributing_to_mpf/)
|
|
116
|
-
and [Contributing Documentation](https://missionpinball.org/about/help_docs/) pages.
|
|
114
|
+
MPF is a passion project created and maintained by volunteers. If you're a Python coder, documentation writer, or pinball maker, feel free to make a change and submit a pull request. For more information about contributing see the [Contributing Code](https://missionpinball.org/latest/about/contributing_to_mpf/)
|
|
115
|
+
and [Contributing Documentation](https://missionpinball.org/latest/about/help_docs/) pages.
|
|
117
116
|
|
|
118
117
|
License
|
|
119
118
|
-------
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Mission Pinball Framework (MPF)
|
|
2
2
|
===============================
|
|
3
3
|
|
|
4
|
-
<img align="center" height="146" src="https://missionpinball.org/images/mpf-logo-full.png"/>
|
|
4
|
+
<img align="center" height="146" src="https://missionpinball.org/latest/images/mpf-logo-full.png"/>
|
|
5
5
|
|
|
6
6
|
<em>...Let's build a pinball machine!</em>
|
|
7
7
|
|
|
@@ -25,7 +25,7 @@ Documentation
|
|
|
25
25
|
Support
|
|
26
26
|
-------
|
|
27
27
|
|
|
28
|
-
MPF is an open source community project which has no official support. Some MPF users participate in the MPF-Users Google group or GitHub Discussion. Links [here](https://missionpinball.org/community/).
|
|
28
|
+
MPF is an open source community project which has no official support. Some MPF users participate in the MPF-Users Google group or GitHub Discussion. Links [here](https://missionpinball.org/latest/community/).
|
|
29
29
|
|
|
30
30
|
Individual pinball hardware companies may provide additional support for users of their hardware, often via their own Slack, Discord, or other chat groups. If you get stuck, you can ask for help in the MPF-users group, or you reach out to your hardware provider.
|
|
31
31
|
|
|
@@ -34,15 +34,15 @@ Maintenance, Pull Requests, & Bug Fixes
|
|
|
34
34
|
|
|
35
35
|
As a community project, we welcome pull requests and bug fixes. However, we do not have the resources to provide support for MPF. If you are interested in becoming a maintainer, please contact us at brian@missionpinball.org.
|
|
36
36
|
|
|
37
|
-
Bugs or other issues related to MPF itself can be posted to the [MPF Discussions page on GitHub](https://missionpinball.org/community/).
|
|
37
|
+
Bugs or other issues related to MPF itself can be posted to the [MPF Discussions page on GitHub](https://missionpinball.org/latest/community/).
|
|
38
38
|
|
|
39
39
|
Contributing
|
|
40
40
|
------------
|
|
41
41
|
|
|
42
42
|
Individual pinball hardware makers are responsible for their own platform interface maintenance and contributions.
|
|
43
43
|
|
|
44
|
-
MPF is a passion project created and maintained by volunteers. If you're a Python coder, documentation writer, or pinball maker, feel free to make a change and submit a pull request. For more information about contributing see the [Contributing Code](https://missionpinball.org/about/contributing_to_mpf/)
|
|
45
|
-
and [Contributing Documentation](https://missionpinball.org/about/help_docs/) pages.
|
|
44
|
+
MPF is a passion project created and maintained by volunteers. If you're a Python coder, documentation writer, or pinball maker, feel free to make a change and submit a pull request. For more information about contributing see the [Contributing Code](https://missionpinball.org/latest/about/contributing_to_mpf/)
|
|
45
|
+
and [Contributing Documentation](https://missionpinball.org/latest/about/help_docs/) pages.
|
|
46
46
|
|
|
47
47
|
License
|
|
48
48
|
-------
|
|
@@ -754,6 +754,9 @@ fast_servos:
|
|
|
754
754
|
min_us: single|int|1000
|
|
755
755
|
home_us: single|int|1500
|
|
756
756
|
max_runtime: single|ms|2000 # 65535 max
|
|
757
|
+
fast_stepper_settings:
|
|
758
|
+
__valid_in__: machine # todo add to validator
|
|
759
|
+
default_speed: single|int|600
|
|
757
760
|
file_shows:
|
|
758
761
|
__valid_in__: machine, mode # todo add to validator
|
|
759
762
|
__type__: config_dict
|
|
@@ -1246,7 +1249,7 @@ pin2dmd:
|
|
|
1246
1249
|
debug: single|bool|false
|
|
1247
1250
|
console_log: single|enum(none,basic,full)|none
|
|
1248
1251
|
file_log: single|enum(none,basic,full)|basic
|
|
1249
|
-
resolution: single|enum(128x32,192x64)|128x32
|
|
1252
|
+
resolution: single|enum(128x32,192x64,256x64)|128x32
|
|
1250
1253
|
panel: single|enum(rgb,rbg)|rgb
|
|
1251
1254
|
pkone:
|
|
1252
1255
|
__valid_in__: machine
|
|
@@ -1663,10 +1666,11 @@ slide_player:
|
|
|
1663
1666
|
expire: single|secs|None
|
|
1664
1667
|
slide: single|str|None
|
|
1665
1668
|
tokens: dict|str:str|None
|
|
1666
|
-
action: single|enum(play,remove,method,update,preload,queue,queue_first,queue_immediate)|play
|
|
1669
|
+
action: single|enum(play,remove,method,animation,update,preload,queue,queue_first,queue_immediate)|play
|
|
1667
1670
|
queue: single|str|None
|
|
1668
1671
|
max_queue_time: single|secs|None
|
|
1669
|
-
|
|
1672
|
+
animation: ignore
|
|
1673
|
+
method: ignore
|
|
1670
1674
|
snux:
|
|
1671
1675
|
__valid_in__: machine
|
|
1672
1676
|
__type__: config
|
|
@@ -1785,23 +1789,28 @@ spinners:
|
|
|
1785
1789
|
steppers:
|
|
1786
1790
|
__valid_in__: machine
|
|
1787
1791
|
__type__: device
|
|
1788
|
-
named_positions: dict|float:str|None
|
|
1789
1792
|
home_events: event_handler|event_handler:ms|None
|
|
1793
|
+
home_on_startup: single|bool|true
|
|
1790
1794
|
homing_mode: single|enum(hardware,switch)|hardware
|
|
1791
1795
|
homing_switch: single|machine(switches)|None
|
|
1792
1796
|
homing_direction: single|enum(clockwise,counterclockwise)|clockwise
|
|
1797
|
+
homing_speed: single|int|None
|
|
1793
1798
|
pos_min: single|int|0
|
|
1794
1799
|
pos_max: single|int|1000
|
|
1795
1800
|
ball_search_min: single|int|0
|
|
1796
1801
|
ball_search_max: single|int|1
|
|
1797
1802
|
ball_search_wait: single|ms|5s
|
|
1798
1803
|
include_in_ball_search: single|bool|true
|
|
1799
|
-
relative_positions: dict|float:
|
|
1804
|
+
relative_positions: dict|float:subconfig(stepper_position_settings)|None
|
|
1800
1805
|
reset_position: single|int|0
|
|
1801
1806
|
reset_events: event_handler|event_handler:ms|machine_reset_phase_3, ball_starting, ball_will_end, service_mode_entered
|
|
1807
|
+
named_positions: dict|float:subconfig(stepper_position_settings)|None
|
|
1802
1808
|
number: single|str|
|
|
1803
1809
|
platform: single|str|None
|
|
1804
1810
|
platform_settings: single|dict|None
|
|
1811
|
+
stepper_position_settings:
|
|
1812
|
+
event: single|str|
|
|
1813
|
+
speed: single|int|None
|
|
1805
1814
|
spike_stepper_settings:
|
|
1806
1815
|
homing_speed: single|int|10
|
|
1807
1816
|
speed: single|int|20
|
|
@@ -2010,7 +2019,8 @@ widget_player:
|
|
|
2010
2019
|
__type__: config_player
|
|
2011
2020
|
priority: single|int_or_token|None
|
|
2012
2021
|
slide: single|str|None
|
|
2013
|
-
action: single|enum(play,remove,update,preload,method)|play
|
|
2022
|
+
action: single|enum(play,remove,update,preload,animation,method)|play
|
|
2023
|
+
animation: ignore
|
|
2014
2024
|
method: ignore
|
|
2015
2025
|
key: single|str|None
|
|
2016
2026
|
target: single|str|None
|
|
@@ -642,9 +642,7 @@ class BasePlaceholderManager(MpfController):
|
|
|
642
642
|
"""Initialize."""
|
|
643
643
|
super().__init__(machine)
|
|
644
644
|
self._eval_methods = {
|
|
645
|
-
ast.
|
|
646
|
-
ast.Str: self._eval_str,
|
|
647
|
-
ast.NameConstant: self._eval_constant,
|
|
645
|
+
ast.Constant: self._eval_constant,
|
|
648
646
|
ast.BinOp: self._eval_bin_op,
|
|
649
647
|
ast.UnaryOp: self._eval_unary_op,
|
|
650
648
|
ast.Compare: self._eval_compare,
|
|
@@ -655,8 +653,6 @@ class BasePlaceholderManager(MpfController):
|
|
|
655
653
|
ast.IfExp: self._eval_if,
|
|
656
654
|
ast.Tuple: self._eval_tuple,
|
|
657
655
|
}
|
|
658
|
-
if hasattr(ast, "Constant"):
|
|
659
|
-
self._eval_methods[ast.Constant] = self._eval_constant
|
|
660
656
|
|
|
661
657
|
def _eval_tuple(self, node, variables, subscribe):
|
|
662
658
|
return tuple([self._eval(x, variables, subscribe) for x in node.elts])
|
|
@@ -668,18 +664,6 @@ class BasePlaceholderManager(MpfController):
|
|
|
668
664
|
except SyntaxError:
|
|
669
665
|
raise AssertionError('Failed to parse template "{}"'.format(template_str))
|
|
670
666
|
|
|
671
|
-
@staticmethod
|
|
672
|
-
def _eval_num(node, variables, subscribe):
|
|
673
|
-
del variables
|
|
674
|
-
del subscribe
|
|
675
|
-
return node.n, []
|
|
676
|
-
|
|
677
|
-
@staticmethod
|
|
678
|
-
def _eval_str(node, variables, subscribe):
|
|
679
|
-
del variables
|
|
680
|
-
del subscribe
|
|
681
|
-
return node.s, []
|
|
682
|
-
|
|
683
667
|
@staticmethod
|
|
684
668
|
def _eval_constant(node, variables, subscribe):
|
|
685
669
|
del variables
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
# pylint: disable-msg=too-many-lines # noqa
|
|
1
2
|
"""Generic mappings for segment displays.
|
|
2
3
|
|
|
3
|
-
Those mappings are based on David Madison's awesome mappings:
|
|
4
|
-
|
|
4
|
+
Those mappings are based on David Madison's awesome mappings:
|
|
5
|
+
https://github.com/dmadison/LED-Segment-ASCII.
|
|
6
|
+
|
|
7
|
+
You can use convert_segments.py (based on
|
|
8
|
+
https://github.com/dmadison/LED-Segment-ASCII/issues/2) to recreate
|
|
9
|
+
them.
|
|
5
10
|
|
|
6
11
|
BCD were created by us.
|
|
7
12
|
"""
|
|
@@ -459,11 +464,12 @@ class FourteenSegments(Segment):
|
|
|
459
464
|
See segment order here: https://github.com/dmadison/LED-Segment-ASCII/blob/master/README.md.
|
|
460
465
|
"""
|
|
461
466
|
|
|
462
|
-
__slots__ = ["l", "m", "n", "k", "j", "h", "g2", "g1", "f", "e",
|
|
467
|
+
__slots__ = ["l", "m", "n", "k", "j", "h", "g2", "g1", "f", "e",
|
|
468
|
+
"d", "c", "b", "a"] # noqa: E741
|
|
463
469
|
|
|
464
470
|
# pylint: disable-msg=too-many-arguments
|
|
465
471
|
# pylint: disable-msg=too-many-locals
|
|
466
|
-
def __init__(self, dp, l, m, n, k, j, h, g2, g1, f, e, d, c, b, a, char): # noqa E741
|
|
472
|
+
def __init__(self, dp, l, m, n, k, j, h, g2, g1, f, e, d, c, b, a, char): # noqa: E741
|
|
467
473
|
"""Create segment entry."""
|
|
468
474
|
super().__init__(dp, char)
|
|
469
475
|
self.a = a
|
|
@@ -506,103 +512,198 @@ class FourteenSegments(Segment):
|
|
|
506
512
|
|
|
507
513
|
|
|
508
514
|
FOURTEEN_SEGMENTS = {
|
|
509
|
-
None: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
510
|
-
|
|
511
|
-
32: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
515
|
+
None: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
516
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="?"),
|
|
517
|
+
32: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
518
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char=" "), # noqa: E741
|
|
519
|
+
33: FourteenSegments(dp=1, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
520
|
+
g1=0, f=0, e=0, d=0, c=1, b=1, a=0, char="!"), # noqa: E741
|
|
521
|
+
34: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=1, h=0, g2=0,
|
|
522
|
+
g1=0, f=0, e=0, d=0, c=0, b=1, a=0, char="\""), # noqa: E741
|
|
523
|
+
35: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=1, h=0, g2=1,
|
|
524
|
+
g1=1, f=0, e=0, d=1, c=1, b=1, a=0, char="#"), # noqa: E741
|
|
525
|
+
36: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=1, h=0, g2=1,
|
|
526
|
+
g1=1, f=1, e=0, d=1, c=1, b=0, a=1, char="$"), # noqa: E741
|
|
527
|
+
37: FourteenSegments(dp=0, l=1, m=0, n=1, k=1, j=0, h=1, g2=1,
|
|
528
|
+
g1=1, f=1, e=0, d=0, c=1, b=0, a=0, char="%"), # noqa: E741
|
|
529
|
+
38: FourteenSegments(dp=0, l=1, m=0, n=0, k=0, j=1, h=1, g2=0,
|
|
530
|
+
g1=1, f=0, e=1, d=1, c=0, b=0, a=1, char="&"), # noqa: E741
|
|
531
|
+
39: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=1, h=0, g2=0,
|
|
532
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="'"), # noqa: E741
|
|
533
|
+
40: FourteenSegments(dp=0, l=1, m=0, n=0, k=1, j=0, h=0, g2=0,
|
|
534
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="("), # noqa: E741
|
|
535
|
+
41: FourteenSegments(dp=0, l=0, m=0, n=1, k=0, j=0, h=1, g2=0,
|
|
536
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char=")"), # noqa: E741
|
|
537
|
+
42: FourteenSegments(dp=0, l=1, m=1, n=1, k=1, j=1, h=1, g2=1,
|
|
538
|
+
g1=1, f=0, e=0, d=0, c=0, b=0, a=0, char="*"), # noqa: E741
|
|
539
|
+
43: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=1, h=0, g2=1,
|
|
540
|
+
g1=1, f=0, e=0, d=0, c=0, b=0, a=0, char="+"), # noqa: E741
|
|
541
|
+
44: FourteenSegments(dp=0, l=0, m=0, n=1, k=0, j=0, h=0, g2=0,
|
|
542
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char=","), # noqa: E741
|
|
543
|
+
45: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
544
|
+
g1=1, f=0, e=0, d=0, c=0, b=0, a=0, char="-"), # noqa: E741
|
|
545
|
+
46: FourteenSegments(dp=1, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
546
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="."), # noqa: E741
|
|
547
|
+
47: FourteenSegments(dp=0, l=0, m=0, n=1, k=1, j=0, h=0, g2=0,
|
|
548
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="/"), # noqa: E741
|
|
549
|
+
48: FourteenSegments(dp=0, l=0, m=0, n=1, k=1, j=0, h=0, g2=0,
|
|
550
|
+
g1=0, f=1, e=1, d=1, c=1, b=1, a=1, char="0"), # noqa: E741
|
|
551
|
+
49: FourteenSegments(dp=0, l=0, m=0, n=0, k=1, j=0, h=0, g2=0,
|
|
552
|
+
g1=0, f=0, e=0, d=0, c=1, b=1, a=0, char="1"), # noqa: E741
|
|
553
|
+
50: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
554
|
+
g1=1, f=0, e=1, d=1, c=0, b=1, a=1, char="2"), # noqa: E741
|
|
555
|
+
51: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
556
|
+
g1=0, f=0, e=0, d=1, c=1, b=1, a=1, char="3"), # noqa: E741
|
|
557
|
+
52: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
558
|
+
g1=1, f=1, e=0, d=0, c=1, b=1, a=0, char="4"), # noqa: E741
|
|
559
|
+
53: FourteenSegments(dp=0, l=1, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
560
|
+
g1=1, f=1, e=0, d=1, c=0, b=0, a=1, char="5"), # noqa: E741
|
|
561
|
+
54: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
562
|
+
g1=1, f=1, e=1, d=1, c=1, b=0, a=1, char="6"), # noqa: E741
|
|
563
|
+
55: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
564
|
+
g1=0, f=0, e=0, d=0, c=1, b=1, a=1, char="7"), # noqa: E741
|
|
565
|
+
56: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
566
|
+
g1=1, f=1, e=1, d=1, c=1, b=1, a=1, char="8"), # noqa: E741
|
|
567
|
+
57: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
568
|
+
g1=1, f=1, e=0, d=1, c=1, b=1, a=1, char="9"), # noqa: E741
|
|
569
|
+
58: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=1, h=0, g2=0,
|
|
570
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char=":"), # noqa: E741
|
|
571
|
+
59: FourteenSegments(dp=0, l=0, m=0, n=1, k=0, j=1, h=0, g2=0,
|
|
572
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char=";"), # noqa: E741
|
|
573
|
+
60: FourteenSegments(dp=0, l=1, m=0, n=0, k=1, j=0, h=0, g2=0,
|
|
574
|
+
g1=1, f=0, e=0, d=0, c=0, b=0, a=0, char="<"), # noqa: E741
|
|
575
|
+
61: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
576
|
+
g1=1, f=0, e=0, d=1, c=0, b=0, a=0, char="="), # noqa: E741
|
|
577
|
+
62: FourteenSegments(dp=0, l=0, m=0, n=1, k=0, j=0, h=1, g2=1,
|
|
578
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char=">"), # noqa: E741
|
|
579
|
+
63: FourteenSegments(dp=1, l=0, m=1, n=0, k=0, j=0, h=0, g2=1,
|
|
580
|
+
g1=0, f=0, e=0, d=0, c=0, b=1, a=1, char="?"), # noqa: E741
|
|
581
|
+
64: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=0, h=0, g2=0,
|
|
582
|
+
g1=1, f=0, e=1, d=1, c=1, b=1, a=1, char="@"), # noqa: E741
|
|
583
|
+
65: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
584
|
+
g1=1, f=1, e=1, d=0, c=1, b=1, a=1, char="A"), # noqa: E741
|
|
585
|
+
66: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=1, h=0, g2=1,
|
|
586
|
+
g1=0, f=0, e=0, d=1, c=1, b=1, a=1, char="B"), # noqa: E741
|
|
587
|
+
67: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
588
|
+
g1=0, f=1, e=1, d=1, c=0, b=0, a=1, char="C"), # noqa: E741
|
|
589
|
+
68: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=1, h=0, g2=0,
|
|
590
|
+
g1=0, f=0, e=0, d=1, c=1, b=1, a=1, char="D"), # noqa: E741
|
|
591
|
+
69: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
592
|
+
g1=1, f=1, e=1, d=1, c=0, b=0, a=1, char="E"), # noqa: E741
|
|
593
|
+
70: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
594
|
+
g1=1, f=1, e=1, d=0, c=0, b=0, a=1, char="F"), # noqa: E741
|
|
595
|
+
71: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
596
|
+
g1=0, f=1, e=1, d=1, c=1, b=0, a=1, char="G"), # noqa: E741
|
|
597
|
+
72: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
598
|
+
g1=1, f=1, e=1, d=0, c=1, b=1, a=0, char="H"), # noqa: E741
|
|
599
|
+
73: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=1, h=0, g2=0,
|
|
600
|
+
g1=0, f=0, e=0, d=1, c=0, b=0, a=1, char="I"), # noqa: E741
|
|
601
|
+
74: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
602
|
+
g1=0, f=0, e=1, d=1, c=1, b=1, a=0, char="J"), # noqa: E741
|
|
603
|
+
75: FourteenSegments(dp=0, l=1, m=0, n=0, k=1, j=0, h=0, g2=0,
|
|
604
|
+
g1=1, f=1, e=1, d=0, c=0, b=0, a=0, char="K"), # noqa: E741
|
|
605
|
+
76: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
606
|
+
g1=0, f=1, e=1, d=1, c=0, b=0, a=0, char="L"), # noqa: E741
|
|
607
|
+
77: FourteenSegments(dp=0, l=0, m=0, n=0, k=1, j=0, h=1, g2=0,
|
|
608
|
+
g1=0, f=1, e=1, d=0, c=1, b=1, a=0, char="M"), # noqa: E741
|
|
609
|
+
78: FourteenSegments(dp=0, l=1, m=0, n=0, k=0, j=0, h=1, g2=0,
|
|
610
|
+
g1=0, f=1, e=1, d=0, c=1, b=1, a=0, char="N"), # noqa: E741
|
|
611
|
+
79: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
612
|
+
g1=0, f=1, e=1, d=1, c=1, b=1, a=1, char="O"), # noqa: E741
|
|
613
|
+
80: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
614
|
+
g1=1, f=1, e=1, d=0, c=0, b=1, a=1, char="P"), # noqa: E741
|
|
615
|
+
81: FourteenSegments(dp=0, l=1, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
616
|
+
g1=0, f=1, e=1, d=1, c=1, b=1, a=1, char="Q"), # noqa: E741
|
|
617
|
+
82: FourteenSegments(dp=0, l=1, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
618
|
+
g1=1, f=1, e=1, d=0, c=0, b=1, a=1, char="R"), # noqa: E741
|
|
619
|
+
83: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
620
|
+
g1=1, f=1, e=0, d=1, c=1, b=0, a=1, char="S"), # noqa: E741
|
|
621
|
+
84: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=1, h=0, g2=0,
|
|
622
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=1, char="T"), # noqa: E741
|
|
623
|
+
85: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
624
|
+
g1=0, f=1, e=1, d=1, c=1, b=1, a=0, char="U"), # noqa: E741
|
|
625
|
+
86: FourteenSegments(dp=0, l=0, m=0, n=1, k=1, j=0, h=0, g2=0,
|
|
626
|
+
g1=0, f=1, e=1, d=0, c=0, b=0, a=0, char="V"), # noqa: E741
|
|
627
|
+
87: FourteenSegments(dp=0, l=1, m=0, n=1, k=0, j=0, h=0, g2=0,
|
|
628
|
+
g1=0, f=1, e=1, d=0, c=1, b=1, a=0, char="W"), # noqa: E741
|
|
629
|
+
88: FourteenSegments(dp=0, l=1, m=0, n=1, k=1, j=0, h=1, g2=0,
|
|
630
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="X"), # noqa: E741
|
|
631
|
+
89: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
632
|
+
g1=1, f=1, e=0, d=1, c=1, b=1, a=0, char="Y"), # noqa: E741
|
|
633
|
+
90: FourteenSegments(dp=0, l=0, m=0, n=1, k=1, j=0, h=0, g2=0,
|
|
634
|
+
g1=0, f=0, e=0, d=1, c=0, b=0, a=1, char="Z"), # noqa: E741
|
|
635
|
+
91: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
636
|
+
g1=0, f=1, e=1, d=1, c=0, b=0, a=1, char="["), # noqa: E741
|
|
637
|
+
92: FourteenSegments(dp=0, l=1, m=0, n=0, k=0, j=0, h=1, g2=0,
|
|
638
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="\""), # noqa: E741
|
|
639
|
+
93: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
640
|
+
g1=0, f=0, e=0, d=1, c=1, b=1, a=1, char="]"), # noqa: E741
|
|
641
|
+
94: FourteenSegments(dp=0, l=1, m=0, n=1, k=0, j=0, h=0, g2=0,
|
|
642
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="^"), # noqa: E741
|
|
643
|
+
95: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
644
|
+
g1=0, f=0, e=0, d=1, c=0, b=0, a=0, char="_"), # noqa: E741
|
|
645
|
+
96: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=1, g2=0,
|
|
646
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="`"), # noqa: E741
|
|
647
|
+
97: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=0, h=0, g2=0,
|
|
648
|
+
g1=1, f=0, e=1, d=1, c=0, b=0, a=0, char="a"), # noqa: E741
|
|
649
|
+
98: FourteenSegments(dp=0, l=1, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
650
|
+
g1=1, f=1, e=1, d=1, c=0, b=0, a=0, char="b"), # noqa: E741
|
|
651
|
+
99: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
652
|
+
g1=1, f=0, e=1, d=1, c=0, b=0, a=0, char="c"), # noqa: E741
|
|
653
|
+
100: FourteenSegments(dp=0, l=0, m=0, n=1, k=0, j=0, h=0, g2=1,
|
|
654
|
+
g1=0, f=0, e=0, d=1, c=1, b=1, a=0, char="d"), # noqa: E741
|
|
655
|
+
101: FourteenSegments(dp=0, l=0, m=0, n=1, k=0, j=0, h=0, g2=0,
|
|
656
|
+
g1=1, f=0, e=1, d=1, c=0, b=0, a=0, char="e"), # noqa: E741
|
|
657
|
+
102: FourteenSegments(dp=0, l=0, m=1, n=0, k=1, j=0, h=0, g2=1,
|
|
658
|
+
g1=1, f=0, e=0, d=0, c=0, b=0, a=0, char="f"), # noqa: E741
|
|
659
|
+
103: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=1, g2=1,
|
|
660
|
+
g1=0, f=0, e=0, d=1, c=1, b=1, a=1, char="g"), # noqa: E741
|
|
661
|
+
104: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
662
|
+
g1=1, f=1, e=1, d=0, c=1, b=0, a=0, char="h"), # noqa: E741
|
|
663
|
+
105: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=0, h=0, g2=0,
|
|
664
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="i"), # noqa: E741
|
|
665
|
+
106: FourteenSegments(dp=0, l=0, m=0, n=1, k=0, j=1, h=0, g2=0,
|
|
666
|
+
g1=0, f=0, e=1, d=0, c=0, b=0, a=0, char="j"), # noqa: E741
|
|
667
|
+
107: FourteenSegments(dp=0, l=1, m=1, n=0, k=1, j=1, h=0, g2=0,
|
|
668
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="k"), # noqa: E741
|
|
669
|
+
108: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=1, h=0, g2=0,
|
|
670
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="l"), # noqa: E741
|
|
671
|
+
109: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=0, h=0, g2=1,
|
|
672
|
+
g1=1, f=0, e=1, d=0, c=1, b=0, a=0, char="m"), # noqa: E741
|
|
673
|
+
110: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
674
|
+
g1=1, f=0, e=1, d=0, c=1, b=0, a=0, char="n"), # noqa: E741
|
|
675
|
+
111: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
676
|
+
g1=1, f=0, e=1, d=1, c=1, b=0, a=0, char="o"), # noqa: E741
|
|
677
|
+
112: FourteenSegments(dp=0, l=0, m=0, n=0, k=1, j=0, h=0, g2=0,
|
|
678
|
+
g1=1, f=1, e=1, d=0, c=0, b=0, a=1, char="p"), # noqa: E741
|
|
679
|
+
113: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=1, g2=1,
|
|
680
|
+
g1=0, f=0, e=0, d=0, c=1, b=1, a=1, char="q"), # noqa: E741
|
|
681
|
+
114: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
682
|
+
g1=1, f=0, e=1, d=0, c=0, b=0, a=0, char="r"), # noqa: E741
|
|
683
|
+
115: FourteenSegments(dp=0, l=1, m=0, n=0, k=0, j=0, h=0, g2=1,
|
|
684
|
+
g1=0, f=0, e=0, d=1, c=0, b=0, a=0, char="s"), # noqa: E741
|
|
685
|
+
116: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
686
|
+
g1=1, f=1, e=1, d=1, c=0, b=0, a=0, char="t"), # noqa: E741
|
|
687
|
+
117: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=0, h=0, g2=0,
|
|
688
|
+
g1=0, f=0, e=1, d=1, c=1, b=0, a=0, char="u"), # noqa: E741
|
|
689
|
+
118: FourteenSegments(dp=0, l=0, m=0, n=1, k=0, j=0, h=0, g2=0,
|
|
690
|
+
g1=0, f=0, e=1, d=0, c=0, b=0, a=0, char="v"), # noqa: E741
|
|
691
|
+
119: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=0, h=0, g2=0,
|
|
692
|
+
g1=0, f=0, e=1, d=1, c=1, b=0, a=0, char="w"), # noqa: E741
|
|
693
|
+
120: FourteenSegments(dp=0, l=1, m=0, n=1, k=1, j=0, h=1, g2=0,
|
|
694
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="x"), # noqa: E741
|
|
695
|
+
121: FourteenSegments(dp=0, l=0, m=0, n=0, k=0, j=1, h=0, g2=1,
|
|
696
|
+
g1=0, f=0, e=0, d=1, c=1, b=1, a=0, char="y"), # noqa: E741
|
|
697
|
+
122: FourteenSegments(dp=0, l=0, m=0, n=1, k=0, j=0, h=0, g2=0,
|
|
698
|
+
g1=1, f=0, e=0, d=1, c=0, b=0, a=0, char="z"), # noqa: E741
|
|
699
|
+
123: FourteenSegments(dp=0, l=0, m=0, n=1, k=0, j=0, h=1, g2=0,
|
|
700
|
+
g1=1, f=0, e=0, d=1, c=0, b=0, a=1, char="{"), # noqa: E741
|
|
701
|
+
124: FourteenSegments(dp=0, l=0, m=1, n=0, k=0, j=1, h=0, g2=0,
|
|
702
|
+
g1=0, f=0, e=0, d=0, c=0, b=0, a=0, char="|"), # noqa: E741
|
|
703
|
+
125: FourteenSegments(dp=0, l=1, m=0, n=0, k=1, j=0, h=0, g2=1,
|
|
704
|
+
g1=0, f=0, e=0, d=1, c=0, b=0, a=1, char="}"), # noqa: E741
|
|
705
|
+
126: FourteenSegments(dp=0, l=0, m=0, n=1, k=1, j=0, h=0, g2=1,
|
|
706
|
+
g1=1, f=0, e=0, d=0, c=0, b=0, a=0, char="~"), # noqa: E741
|
|
606
707
|
}
|
|
607
708
|
|
|
608
709
|
|
|
@@ -80,8 +80,10 @@ class Servo(SystemWideDevice):
|
|
|
80
80
|
|
|
81
81
|
This should either home the servo or disable the output.
|
|
82
82
|
"""
|
|
83
|
-
|
|
84
|
-
self.hw_servo
|
|
83
|
+
# A crash may occur during startup before hw_servo is instantiated
|
|
84
|
+
if self.hw_servo:
|
|
85
|
+
self.debug_log("Stopping servo")
|
|
86
|
+
self.hw_servo.stop()
|
|
85
87
|
|
|
86
88
|
@event_handler(5)
|
|
87
89
|
def _position_event(self, position, **kwargs):
|