https://github.com/easyiot-china/libsensor

https://github.com/adafruit/DHT-sensor-library

https://github.com/pwuertz/fpga-device-server

https://github.com/ducgiang1405/Management-Power

https://github.com/hgst/dm-zoned-tools

https://github.com/berfenger/panicbutton_daemon

https://github.com/natatalex/device-manager-linux

https://github.com/MaG21/wavecom-console

https://github.com/binp-xenomai/libcandev

https://github.com/ivpi/lnvm-manager

https://github.com/ArhiChief/onvif

https://github.com/mkonnov/stm32_flash_partitions

https://github.com/raelix/Domotic-Modbus

https://github.com/petterreinholdtsen/ipmitool

https://github.com/westerndigitalcorporation/SMR-Simulator

https://github.com/linux-mobile-broadband/ModemManager

https://github.com/pmem/ndctl

https://github.com/libimobiledevice/sbmanager

https://github.com/khvzak/bluez-tools

https://github.com/aleksandrm8/ONVIF-Device-Manager

https://github.com/goodsogi/RS485DeviceManager

https://github.com/cjedic/DeviceManager

https://github.com/42ity/fty-sensor-gpio

https://github.com/FREEDM-DGI/FREEDM

https://github.com/suculent/thinx-firmware-esp8266

https://github.com/tianzhihen/Device-management

https://github.com/ms-iot/iot-core-azure-dm-client

https://github.com/01org/libdmclient

https://github.com/shinpei0208/gdev

https://github.com/opencpe/mand

libsensor的更多相关文章

随机推荐

  1. Go语言【第十三篇】:Go语言递归函数

    Go语言递归函数 递归,就是在运行的过程中调用自己,语法格式如下: func recursion() { recursion() /* 函数调用自身 */ } func main() { recurs ...

  2. Codeforces VK Cup 2015 A.And Yet Another Bracket Sequence(后缀数组+平衡树+字符串)

    这题做得比较复杂..应该有更好的做法 题目大意: 有一个括号序列,可以对其进行两种操作: ·        向里面加一个括号,可以在开头,在结尾,在两个括号之间加. ·        对当前括号序列进 ...

  3. [CodeVs1227]方格取数2(最大费用最大流)

    网络流24题的坑还没填完,真的要TJ? 题目大意:一个n*n的矩阵,每格有点权,从(1,1)出发,可以往右或者往下走,最后到达(n,n),每达到一格,把该格子的数取出来,该格子的数就变成0,这样一共走 ...

  4. JavaScript关键字return的用法

    return 语句从当前函数退出,并从那个函数返回一个值. 语法: 1 return[()[expression][]]; 可选项 expression 参数是要从函数返回的值.如果省略,则该函数不返 ...

  5. UIScrollView控件及其三个常用属性:contentSize、contentInset和contentOffset

    如果您对UIScrollView控件感到难以理解,下面是本人自己对UIScrollView控件的理解方式,按照我的思路,理解UIScrollView控件非常容易! 我对UIScrollView的构成理 ...

  6. C++智能指针 unique_ptr

    C++智能指针 unique_ptr unique_ptr 独占所指向的对象, 同一时刻只能有一个 unique_ptr 指向给定对象(通过禁止拷贝语义, 只有移动语义来实现), 定义于 memory ...

  7. hadoop压缩和解压

    最近有一个hadoop集群上的备份需求.源文件有几百G,如果直接复制太占用磁盘空间.将文件从hadoop集群下载到本地,压缩之后再上传到hadoop则太耗时间.于是想到能否直接在HDFS文件系统上进行 ...

  8. 基于tcp交互的python聊天程序

    语言:Python 工具:MySQL,Tkinter,图灵机器人 功能:图形聊天工具,可以选择自动回复或者人工回复. 注意:如果运行需要自建mysql数据库表.还有安装各种模块.还有到“图灵机器人”申 ...

  9. Spring @Async的异常处理

    楼主在前面的2篇文章中,分别介绍了Java子线程中通用的异常处理,以及Spring web应用中的异常处理.链接如下: Java子线程中的异常处理(通用) Spring web引用中的异常处理 今天, ...

  10. UVALive-4670 Dominating Patterns / 洛谷 3796 【模板】AC自动机

    https://vjudge.net/problem/UVALive-4670 中文题面:https://www.luogu.org/problem/show?pid=3796 AC自动机模板 注意如 ...