summaryrefslogtreecommitdiff
path: root/user-code/push/python/push-button-status.py
blob: 3e99c730ec3d68b3ab7adab023fd6b29052bfe01 (plain)
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
import os
import sys
cwd = os.getcwd()
(setpath,Examples) = os.path.split(cwd)
sys.path.append(setpath)

from Arduino.Arduino import Arduino
from time import sleep

class PUSHBUTTON:

	def __init__(self,baudrate):
		self.baudrate = baudrate
		self.setup()
		self.run()
		self.exit()

	def setup(self):
		self.obj_arduino = Arduino()
		self.port = self.obj_arduino.locateport()
		self.obj_arduino.open_serial(1, self.port, self.baudrate)

	def run(self):
		self.pushbutton = 12
		for i in range(20):
			val = self.obj_arduino.cmd_digital_in(1, self.pushbutton)
			print(val)
			sleep(0.5)

	def exit(self):
		self.obj_arduino.close_serial()

def main():
	obj_pushbutton = PUSHBUTTON(115200)

if __name__=='__main__':
	main()