~luxferre/nntrac

a65f47ed06c288eacd75fb747b5f8b28d5eda884 — Luxferre 3 months ago 9acabe0
rdm fx
1 files changed, 1 insertions(+), 1 deletions(-)

M README.md
M README.md => README.md +1 -1
@@ 162,7 162,7 @@ char *pr_rgbled(char *arglist, char *res, int *reslen) {
  return res; /* return the result pointer */
}
```
Then you can register this primitive with `nnt_regprimitive("rgb", &pr_rgbled);` in your main C code, and then, calling `#(rgb,43,67,133)` in your script will return the string `R=43, G=67, B=133` if the API succeeds.
Then you can register this primitive with `nnt_regprimitive("rgb", &pr_rgbled);` in your main C code, and then, calling `##(rgb,43,67,133)` in your script will return the string `R=43, G=67, B=133` if the API succeeds.

## FAQ