Ivanmason/lcd16x2x5button/updowncount Cant get to work :(

Hey

This should be something very simple but its driving me a little mad this node as you can see is a simple up down counter

https://xod.io/libs/ivanmason/lcd16x2x5button/updowncount/

It all works apart from the COUNT (number) Counting by input

My understanding was you can take what ever number you want withing reason
(only stepping by 1000)

Every time you pulse add or subtract it will do that by the amount that you have on that input…

but it doesn’t :pensive: it will only go up or down by 1 no matter what counting by input I use

any help would be great thanks

It is broken.

  ++result;

Should be

  result += count;

and

  --result;

Should be

  result -= count;
1 Like

Also, max and min not implemented.

Here’s a revised version of the node:
https://xod.io/libs/wayland/up-down-count/

1 Like

Thanks for the rapid reply’s all perfect now :slight_smile:

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.