gweimer/utils now has a hex-to-number node for converting a hex string into a number. This will be useful for I2C address pins that require a decimal number, but users generally know the I2C address in hex.
“0x” prefix is required on input string. An invalid string will result in “random” output. Maybe I will get ambitious in the future and add error-checking and return -1 for invalid string if there are requests for it…
Currently input strings >15 characters will cause a buffer over-flow that is likely to cause very unpredictable results in your program.