Luxmart-GitHub / luxmart-attiny85

0 stars 0 forks source link

Implement LED support #3

Open dmikushin opened 1 year ago

dmikushin commented 1 year ago

Implement LED blinking according to the scenario provided by the user.

Scenario could be:

enum BlinkPlan
{
    Off = '0',
    On = 'm',
    Slow1 = '1',
    Slow2 = '2',
    Slow3 = '3',
    Fast1 = 'a',
    Fast2 = 'b',
    Fast3 = 'c'
};