tino / pyFirmata

Python interface for the Firmata (http://firmata.org/) protocol. It is compliant with Firmata 2.1. Any help with updating to 2.2 is welcome. The Capability Query is implemented, but the Pin State Query feature not yet.
MIT License
575 stars 193 forks source link

simplify code #86

Open ghost opened 4 years ago

ghost commented 4 years ago

in the example board dictionaries tuple(x for x in range(14)) can be simplified to tuple(range(14))