Ivaylo Fiziev4 days ago4 min readPractical use case: Traffic light controllerTraffic lights are simple devices that are quite common but do you know how they work? In this post I'll try to implement a traffic light...
Ivaylo FizievFeb 52 min readPractical use case: Frequency counterAs the name suggests this is a device that measures frequency. It counts the number of pulses in a periodic signal per second. Internally...
Ivaylo FizievOct 10, 20232 min readPractical use case: Output signal delayIntroducing delays is often needed in behavior modeling. Delays are usually required by the external circuit before which the data has to...
Ivaylo FizievApr 19, 20231 min readPractical use case: A Boolean signal that changes value every 500msRecently I was asked for such an example from customers so I decided to make a post out of it. Interestingly they struggle implementing...
Ivaylo FizievMar 2, 20232 min readSCL TimersTimers are used in order to introduce delays in your code. Delays are just time intervals between two events. However in this case we...