(key=None, radius=30)
| 16 | |
| 17 | |
| 18 | def LEDIndicator(key=None, radius=30): |
| 19 | return sg.Graph(canvas_size=(radius, radius), |
| 20 | graph_bottom_left=(-radius, -radius), |
| 21 | graph_top_right=(radius, radius), |
| 22 | pad=(0, 0), key=key) |
| 23 | |
| 24 | def SetLED(window, key, color): |
| 25 | graph = window[key] |
no outgoing calls
no test coverage detected