|
| 1 | +# |
| 2 | +# @section License |
| 3 | +# |
| 4 | +# The MIT License (MIT) |
| 5 | +# |
| 6 | +# Copyright (c) 2016, Erik Moqvist |
| 7 | +# |
| 8 | +# Permission is hereby granted, free of charge, to any person |
| 9 | +# obtaining a copy of this software and associated documentation |
| 10 | +# files (the "Software"), to deal in the Software without |
| 11 | +# restriction, including without limitation the rights to use, copy, |
| 12 | +# modify, merge, publish, distribute, sublicense, and/or sell copies |
| 13 | +# of the Software, and to permit persons to whom the Software is |
| 14 | +# furnished to do so, subject to the following conditions: |
| 15 | +# |
| 16 | +# The above copyright notice and this permission notice shall be |
| 17 | +# included in all copies or substantial portions of the Software. |
| 18 | +# |
| 19 | +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 20 | +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 21 | +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 22 | +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 23 | +# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 24 | +# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 25 | +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 26 | +# SOFTWARE. |
| 27 | +# |
| 28 | +# This file is part of the Pumbaa project. |
| 29 | +# |
| 30 | + |
| 31 | + |
| 32 | +import time |
| 33 | +import board |
| 34 | +from drivers import Pin |
| 35 | + |
| 36 | +LED = Pin(board.PIN_LED, Pin.OUTPUT) |
| 37 | + |
| 38 | +while True: |
| 39 | + LED.toggle() |
| 40 | + time.sleep(0.5) |
0 commit comments