Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 218 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 218 Bytes

Webcam checker

Quick and easy way to check if your webcam is on. OSX only

ctx := comtext.Background()
isOn, err := webcamchecker.IsWebcamOn(ctx)
if err != nil {
  panic(err)
}
fmt.Println("webcam is", isOn)