-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblink-express.py
60 lines (49 loc) · 1.74 KB
/
blink-express.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"""
Copyright (c) 2020 Alan Yorinks All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
Version 3 as published by the Free Software Foundation; either
or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
"""
import asyncio
import sys
from pymata_express import pymata_express
"""
Setup a pin for digital output and output a signal
and toggle the pin. Do this 4 times.
"""
# some globals
DIGITAL_PIN = 6 # arduino pin number
async def blink(my_board, pin):
"""
This function will to toggle a digital pin.
:param my_board: an PymataExpress instance
:param pin: pin to be controlled
"""
# set the pin mode
await my_board.set_pin_mode_digital_output(pin)
# toggle the pin 4 times and exit
for x in range(4):
print('ON')
await my_board.digital_write(pin, 1)
await asyncio.sleep(1)
print('OFF')
await my_board.digital_write(pin, 0)
await asyncio.sleep(1)
# get the event loop
loop = asyncio.get_event_loop()
# instantiate pymata_express
board = pymata_express.PymataExpress()
try:
# start the main function
loop.run_until_complete(blink(board, DIGITAL_PIN))
except KeyboardInterrupt:
loop.run_until_complete(board.shutdown())
sys.exit(0)