Hey
I'm programming my Arduino to run an AI program that learns how to do Logic Gates, but at the moment it has to relearn everything whenever it powers on.
Is it possible to write an array like this:
LOGIC GATE TYPE
X1 * X2 * OUTPUT
0 0 0
0 1 1
1 0 1
1 1 1
In a sort of table like that in permanent memory, so that whenever the Arduino is turned on or restarted, it will have any Logic Gates it has learnt in its memory so it can check whether it has learnt it or not
Anyone know how?
Thanks