5700eb1f43fcbc42ccd1eca876375cc6d83fabea
7 print("""light.py - Print readings from the LTR559 Light & Proximity sensor.
15 lux
= ltr559
.get_lux()
16 prox
= ltr559
.get_proximity()
17 print("""Light: {:05.02f} Lux
19 """.format(lux
, prox
))
21 except KeyboardInterrupt: