https://github.com/kylecorry31/neuron
A simple C++ neuron library (designed for Arduinos)
https://github.com/kylecorry31/neuron
Last synced: 8 months ago
JSON representation
A simple C++ neuron library (designed for Arduinos)
- Host: GitHub
- URL: https://github.com/kylecorry31/neuron
- Owner: kylecorry31
- License: mit
- Created: 2020-02-10T23:17:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-10T23:28:25.000Z (over 6 years ago)
- Last Synced: 2025-07-05T01:41:22.849Z (12 months ago)
- Language: C++
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Neuron
A simple C++ neuron library (designed for Arduinos)
## Usage
Add the Neuron.zip file from the releases page to your Arduino project.
```cpp
Neuron* n = new Neuron(1, 0.01, 0.2, 0.2);
bool isOn = n->Receive(0.1, 0.02);
```