🕸️ NeuralNetworks
- Fixed:
-
- #37 issue due to binary constants marked as deprecated in new cores
Warning
Due to #37 being an issue for many versions of new arduino-cores, I highly-suggest to replace binary-constants in your sketches with the prefix 0
like so: #define _1_OPTIMIZE B00000000
--> #define _1_OPTIMIZE 0B00000000
.