Results 153 comments of jabdoa2

Sweet. Maybe we have to generate separate images for separate wire harnesses eventually? I think I got a datasheet for the servo boards somewhere.

Have a look at: https://missionpinball.org/projects.html. In the bottom we got a list of machines with source.

Sorry I missed it. I can try to add something this weekend.

Capping balls at balls_installed might work. Maybe even a max_balls parameter? But that would require additional warnings/error states when we actually find more balls than expected. > This will prevent...

This is already implemented. We just lost the config setting along the way.

Agreed. However, i would implement this a bit more generically so it can be used for devices as well. Basically a state based on subscriptable events. We have to think...

Hi Luc, yes you can! The issue contains two devices. I suggest you start with achievements. The code for them is here: https://github.com/missionpinball/mpf/blob/dev/mpf/devices/achievement.py#L175. Config is here: https://github.com/missionpinball/mpf/blob/dev/mpf/config_spec.yaml#L30. Let me know...

Hi Luc, a good first step would be to install MPF in development mode: http://docs.missionpinball.org/en/dev/about/contributing_to_mpf.html#install-mpf-in-development-mode. Then play a game (such as demo_man) and get comfortable with the framework. Play around...

It should change the type of the variable in core/config-spec.py (from bool to template_bool). Templates are evaluated at runtime. Therefore we have to call evaluate() on usage of the variable...

Any of those points would be a good first issue if somebody is interested. You can have a look at existing devices (such as lights) in the service mode. Code...