自作の便利スクリプトを便利に使う on Windows
Posted on Tue 29 January 2019 in misc
Posted on Tue 29 January 2019 in misc
Posted on Mon 28 January 2019 in misc
Posted on Sun 27 January 2019 in misc
Posted on Sat 26 January 2019 in misc
from board import D13
from digitalio import DigitalInOut, Direction
import time
if __name__ == '__main__':
led = DigitalInOut(D13)
led.direction = Direction.OUTPUT
while True:
led.value = True
print('LED On')
time.sleep(0.1)
led.value = False
print('LED Off')
time.sleep(0.5)
Posted on Fri 25 January 2019 in misc
Posted on Thu 24 January 2019 in misc
Posted on Wed 23 January 2019 in misc
Posted on Tue 22 January 2019 in misc
Posted on Mon 21 January 2019 in misc
Posted on Sun 20 January 2019 in misc