libsensor
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的更多相关文章
随机推荐
- BZOJ4832 抵制克苏恩(概率期望+动态规划)
注意到A+B+C很小,容易想到设f[i][A][B][C]为第i次攻击后有A个血量为1.B个血量为2.C个血量为3的期望伤害,倒推暴力转移即可. #include<iostream> #i ...
- jQuery全选反选实例
1. $('#tb:checkbox').each(function(){ 每次都会执行 全选-取消操作,注意$('#tb :checkbox').prop('checked',true); tb后面 ...
- [洛谷P3950]部落冲突
题目大意:给你一棵树,有$3$个操作: $Q\;p\;q:$询问$p,q$是否连通 $C\;p\;q:$把$p->q$这条边割断 $U\;x:$恢复第$x$次操作二 题解:可以在割断时把这条边赋 ...
- Android 内核--Context对象
Context(在Android中翻译为场景):一个Activity就是一个Context,一个Service也是一个Context,应用程序中有多少个Activity或者Service,就会有多少个 ...
- BZOJ3938 & UOJ88:[集训队互测2015]Robot——题解
https://www.lydsy.com/JudgeOnline/problem.php?id=3938 http://uoj.ac/problem/88 小q有n只机器人,一开始他把机器人放在了一 ...
- thread-wait/sleep
对于sleep()方法,我们首先要知道该方法是属于Thread类中的.而wait()方法,则是属于Object类中的. sleep()方法导致了程序暂停执行指定的时间,让出cpu该其他线程,但是他的监 ...
- JavaScript in 操作符
JavaScript的in操作符可以用来判断一个属性是否属于一个对象,也可以用来变量一个对象的属性 1. 判断属性属于对象 var mycar = {make: "Honda", ...
- POI 2018.10.21
[POI2008]TRO-Triangles https://www.cnblogs.com/GXZlegend/p/7509699.html 平面上有N个点. 求出所有以这N个点为顶点的三角形的面积 ...
- Redis 的安装配置介绍
redis 是一个高性能的key-value数据库. redis的出现,很大程度补偿了memcached这类keyvalue存储的不足,在部 分场合可以对关系数据库起到很好的补充作用.它提供了Pyth ...
- 【系统设计】432. 全 O(1) 的数据结构
题目: 使用栈实现队列的下列操作: push(x) -- 将一个元素放入队列的尾部. pop() -- 从队列首部移除元素. peek() -- 返回队列首部的元素. empty() -- 返回队列是 ...