mirror of
https://github.com/litruv/picoGraph.git
synced 2026-07-24 18:56:04 +10:00
Initial commit
moved from private version control
This commit is contained in:
16
scripts/nodes/library/gpio/index.js
Normal file
16
scripts/nodes/library/gpio/index.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import { gpioReadNode } from "./gpioRead.js";
|
||||
import { gpioWriteNode } from "./gpioWrite.js";
|
||||
|
||||
/**
|
||||
* Node modules covering GPIO helpers.
|
||||
*/
|
||||
export const gpioNodes = [gpioReadNode, gpioWriteNode];
|
||||
|
||||
/**
|
||||
* Checklist tracking coverage of GPIO read/write helpers.
|
||||
* @type {Array<{ function: string, nodeId: string, implemented: boolean }>}
|
||||
*/
|
||||
export const gpioFunctionChecklist = [
|
||||
{ function: "GPIO (read)", nodeId: "gpio_read", implemented: true },
|
||||
{ function: "GPIO (write)", nodeId: "gpio_write", implemented: true },
|
||||
];
|
||||
Reference in New Issue
Block a user