You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
285 B
Go

// Package hardware -----------------------------
// @file : interface.go
// @author : JJXu
// @contact : wavingbear@163.com
// @time : 2024/7/1 上午11:40
// -------------------------------------------
package embedded
type ILEDDriver interface {
Ping()
LEDSet()
}