diff options
| author | Uri Shaked | 2020-01-08 12:20:38 +0200 |
|---|---|---|
| committer | Uri Shaked | 2020-01-08 12:20:38 +0200 |
| commit | 6a9f238969fc0e877c7bef103a4953dabf0f2936 (patch) | |
| tree | 1f3b639f2309e26624beec31649e7c4037526945 /src/index.ts | |
| parent | chore: release 0.5.0 (diff) | |
| download | avr8js-6a9f238969fc0e877c7bef103a4953dabf0f2936.tar.gz avr8js-6a9f238969fc0e877c7bef103a4953dabf0f2936.tar.bz2 avr8js-6a9f238969fc0e877c7bef103a4953dabf0f2936.zip | |
feat(gpio): add pinState() method
close #8
Diffstat (limited to '')
| -rw-r--r-- | src/index.ts | 9 |
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'; |
