Skip to content

unit LedBlinkerI

em.utils/LedBlinkerI.em
1
2
3
4
5
6
7
8
9
package em.utils

from em.hal import LedI

interface LedBlinkerI: LedI

    function blink(count: uint16, rateSecs: uint16 = 1, rateMs: uint16 = 0)

end