概述
1.go操作modubus库
https://github.com/things-go/go-modbus
https://github.com/goburrow/modbus
推荐使用things-go的库,因为他的API更人性化一点,例如:
https://github.com/goburrow/modbus:写入寄存器的值还要自己转换byte,还有返回byte,什么鬼
// WriteMultipleRegisters writes a block of contiguous registers
// (1 to 123 registers) in a remote device and returns quantity of
// registers.
WriteMultipleRegisters(address, quantity uint16, value []byte) (results []byte, err error)
https://github.com/things-go/go-modbus:这个库就好的多,不用自己转换
// WriteMultipleRegisters writes a block of contiguous registers
// (1 to 123 registers) in a remote device and returns success or failed.
WriteMultipleRegisters(slaveID byte, address, quantity uint16, value []uint16) error
使用自己封装的库:https://github.com/lishuangquan1987/modbusplus
2.go-linq
使用这个库,可以像C#操作linq一样写go
package main
import (
"fmt"
"github.com/ahmetb/go-linq/v3"
)
func main() {
people := make([]Person, 0)
people = append(people, Person{
Name: "tony",
Age: 20,
})
people = append(people, Person{
Name: "li",
Age: 20,
})
people = append(people, Person{
Name: "tony1",
Age: 30,
})
people = append(people, Person{
Name: "li1",
Age: 30,
})
result := make([]linq.Group, 0)
linq.From(people).GroupBy(func(x interface{}) interface{} { return x.(Person).Age }, func(x interface{}) interface{} { return x }).ToSlice(&result)
for _, group := range result {
fmt.Println(group.Key)
for _, g := range group.Group {
fmt.Printf("Name:%s,Age:%dn", g.(Person).Name, g.(Person).Age)
}
}
}
type Person struct {
Name string
Age int
}
最后
以上就是傻傻路人为你收集整理的github上好用的库(持续更新)1.go操作modubus库2.go-linq的全部内容,希望文章能够帮你解决github上好用的库(持续更新)1.go操作modubus库2.go-linq所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复