Introduction A couple of months ago I wrote an article about the WaveShare 1.54 inch e-paper display connected to an Arduino MKR1000. At some point of time, and for unknown reasons, the MKR1000 stopped working, and I didn’t want to shell out another freakin’ 35 bucks for a new one. In the meantime, I learned ..
Category : Uncategorized
Introduction Pathfinding algorithms find a path from point S (start) to point G (goal). The performance of such algorithms depend on the number of iterations in their core loop until a path is found. There are two popular pathfinding algorithms out there, the “Wavefront” and the “A*” (A Star) algorithm. It is my impression that ..