Files
picoGraph/scripts/nodes/library/gpio/index.js
Max Litruv Boonzaayer e64f3e881e Initial commit
moved from private version control
2025-10-19 21:12:41 +11:00

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 },
];