mirror of
https://github.com/litruv/picoGraph.git
synced 2026-07-24 02:36:04 +10:00
17 lines
529 B
JavaScript
17 lines
529 B
JavaScript
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 },
|
|
];
|