aboutsummaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
authorUri Shaked2020-01-08 12:20:38 +0200
committerUri Shaked2020-01-08 12:20:38 +0200
commit6a9f238969fc0e877c7bef103a4953dabf0f2936 (patch)
tree1f3b639f2309e26624beec31649e7c4037526945 /src/index.ts
parentchore: release 0.5.0 (diff)
downloadavr8js-6a9f238969fc0e877c7bef103a4953dabf0f2936.tar.gz
avr8js-6a9f238969fc0e877c7bef103a4953dabf0f2936.tar.bz2
avr8js-6a9f238969fc0e877c7bef103a4953dabf0f2936.zip
feat(gpio): add pinState() method
close #8
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts
index bdf7621..ead8081 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -1,3 +1,9 @@
+/**
+ * AVR8js
+ *
+ * Copyright (C) 2019, 2020, Uri Shaked
+ */
+
export { CPU, ICPU, CPUMemoryHook, CPUMemoryHooks } from './cpu';
export { avrInstruction } from './instruction';
export { avrInterrupt } from './interrupt';
@@ -16,6 +22,7 @@ export {
portHConfig,
portJConfig,
portKConfig,
- portLConfig
+ portLConfig,
+ PinState
} from './gpio';
export { AVRUSART, usart0Config } from './usart';