uid | slug |
---|---|
Meadow.Foundation.mikroBUS.Sensors.Buttons.CButton | /docs/api/Meadow.Foundation.mikroBUS/Meadow.Foundation.mikroBUS.Sensors.Buttons.CButton |
CButton | |
---|---|
Status | <img src="https://img.shields.io/badge/Working-brightgreen" style={{ width: "auto", height: "-webkit-fill-available" }} alt="Status badge: working" /> |
Source code | GitHub |
NuGet package |
CButtonledButton;publicMeadowApp(){Console.WriteLine("Initializing ...");ledButton=newCButton(Device.Pins.D03,Device.Pins.D04);ledButton.StartPulse(TimeSpan.FromSeconds(2),0.75f,0);ledButton.Clicked+=(s,e)=>{Console.WriteLine("Button clicked");ledButton.IsOn=!ledButton.IsOn;};}