Skip to content

Commit 0e6d922

Browse files
committed
Add additional documentation
1 parent 6b55adc commit 0e6d922

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

arduino/arduino.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@
1616
# If you're not using threads, you can set this to True
1717
NON_BLOCKING = False
1818

19-
HIGH = 1
20-
LOW = 0
21-
19+
HIGH = 1 # Voltage level HIGH
20+
LOW = 0 # Voltage level LOW
2221

2322
# UTILITY
2423
def map(x, in_min, in_max, out_min, out_max):
@@ -88,7 +87,6 @@ def delay(_ms):
8887
def get_template_path():
8988
return '/'.join(__file__.split('/')[:-1]) + '/template.tpl'
9089

91-
9290
def create_sketch(sketch_name = None, destination_path = '.', overwrite = False, source_path = None):
9391

9492
if sketch_name is None:

0 commit comments

Comments
 (0)