trying to apply fuzzy logic in arduino

i just made some code but i still dont have the hardware yet so i dont know if the code can work ( input, output, algo ). the idea is putting 2 random input and 1 output based on the calculation.

fuzzyboi.ino (8.6 KB)

Do you have a question?
Do you want to post your code?

You seem to have copied some functions from the ArduinoFIS library and inserted setup() and loop() functions which do not use the FIS functions at all. Your setup function calls Serial.begin and randomSeed twice. Your loop function calls the random function twice but does not use the result.
That code does compile but it doesn't appear to do anything useful, certainly nothing to do with fuzzy logic.

Pete