Pallet Example
Pallet Stretch-film Machine
Impulse Design
DSP Results
Topology
ImpulseBuffer
is a data structure that holds an array where you can push new values. When the buffer is full, it shifts the old elements out to make room for the new ones. This way, you have an “infinite” buffer that mimics the windowing scheme of Edge Impulse.
To perform the prediction over the window of collected data, you only need to call impulse.regression(buffer.values)
and use the result as per your project needs.
In this example, we stream the value over BLE. In your own project, you could also use the value to control an actuator or raise an alarm when certain weights are detected.
TM1637 Display