当前位置: 首页 > news >正文

福建建筑人才网查档案搜索seo神器

福建建筑人才网查档案,搜索seo神器,wordpress paged,重庆公司seoI2C-Tools的交叉编译 tar xvf i2c-tools-4.2.tar.xz 首先解压下压缩包 cd i2c-tools-4.2 进入 i2c-tools-4.2目录 make USE_STATIC_LIB1 执行 make 将i2cset ,i2cget ,i2cdump,i2cdetect,i2ctransfer放到板子上 命令直接操作IIC设备 命令行直接操作iic向AP3216C传感器获取数据…

I2C-Tools的交叉编译

tar xvf i2c-tools-4.2.tar.xz 首先解压下压缩包

cd i2c-tools-4.2 进入 i2c-tools-4.2目录

在这里插入图片描述

make USE_STATIC_LIB=1 执行 make

将i2cset ,i2cget ,i2cdump,i2cdetect,i2ctransfer放到板子上
在这里插入图片描述

命令直接操作IIC设备

命令行直接操作iic向AP3216C传感器获取数据

基于 SMBus:

i2cset -f -y 0 0x1e 0 0x4 向0号总线的0x1e芯片地址的0号地址寄存器写入0x4
i2cset -f -y 0 0x1e 0 0x3 向0号总线的0x1e芯片地址的0号地址寄存器写入0x3
i2cget -f -y 0 0x1e 0xc 从0号总线的0x1e芯片地址的0xc号地址寄存器读一个字节
i2cget -f -y -w 0 0x1e 0xc 从0号总线的0x1e芯片地址的0xc号地址寄存器读两个字节

基于 I2C:

i2ctransfer -f -y 0 w2@0x1e 0 0x4 向0号总线的0x1e芯片地址的0号地址寄存器写入0x4 w2表示向0x1e芯片地址写入两个字节(0,0x4)
i2ctransfer -f -y 0 w2@0x1e 0 0x3 向0号总线的0x1e芯片地址的0号地址寄存器写入0x3
i2ctransfer -f -y 0 w1@0x1e 0xc r2 从0号总线的0x1e芯片地址的0xc号地址寄存器读两个字节 r2表示从 0x1e芯片地址0xc地址读寄存器读取两个字节
i2ctransfer -f -y 0 w1@0x1e 0xe r2 从0号总线的0x1e芯片地址的0xe号地址寄存器读两个字节

编写程序访问AP3216C

AP3216C 是红外、光强、距离三合一的传感器,以读出光强、距离值为例

程序


#include <sys/ioctl.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <linux/i2c.h>
#include <linux/i2c-dev.h>
#include <i2c/smbus.h>
#include "i2cbusses.h"
#include <time.h>/* ./AP3216C <i2c_bus_number> light   * ./AP3216C <i2c_bus_number> distance */int main(int argc, char **argv)
{unsigned char dev_addr = 0x1e;unsigned char light_addr[2] = {0x0c,0x0d};unsigned char distance_addr[2] = {0x0e,0x0f};unsigned char buf[32];int file;char filename[20];unsigned char *str;int ret;struct timespec req;if (argc != 3 ){printf("Usage:\n");printf(" read AP3216C: %s <i2c_bus_number> light/distance \n", argv[0]);return -1;}file = open_i2c_dev(argv[1][0]-'0', filename, sizeof(filename), 0);if (file < 0){printf("can't open %s\n", filename);return -1;}if (set_slave_addr(file, dev_addr, 1)){printf("can't set_slave_addr\n");return -1;}ret = i2c_smbus_write_byte_data(file, 0, 0x04);ret = i2c_smbus_write_byte_data(file, 0, 0x03);sleep(0.5);if (!strcmp(argv[2],"light")){//ret = i2c_smbus_read_i2c_block_data(file, light_addr[1], 2, buf);ret = i2c_smbus_read_i2c_block_data(file, light_addr[0], 1, &buf[0]);ret = i2c_smbus_read_i2c_block_data(file, light_addr[1], 1, &buf[1]);if (ret < 0){printf("i2c_smbus_read_i2c_block_data err\n");return -1;}printf("as:%d\r\n",buf[0]);printf("ass:%d\r\n",buf[1]);printf("light: 0x%x%x\n", buf[0],buf[1]);}else if(!strcmp(argv[2],"distance")){// readret = i2c_smbus_read_i2c_block_data(file, distance_addr[0], 1, &buf[0]);ret = i2c_smbus_read_i2c_block_data(file, distance_addr[1], 1, &buf[1]);if (ret < 0){printf("i2c_smbus_read_i2c_block_data err\n");return -1;}printf("distance: 0x%x%x\n", buf[0],buf[1]);}return 0;}

文章转载自:
http://dinncohocky.wbqt.cn
http://dinncoharpist.wbqt.cn
http://dinncogasser.wbqt.cn
http://dinncojinn.wbqt.cn
http://dinncotack.wbqt.cn
http://dinncoevaporative.wbqt.cn
http://dinncoerin.wbqt.cn
http://dinncowarsle.wbqt.cn
http://dinncoheedfully.wbqt.cn
http://dinncominstrel.wbqt.cn
http://dinncocantlet.wbqt.cn
http://dinncohalliard.wbqt.cn
http://dinncohappening.wbqt.cn
http://dinncomemorial.wbqt.cn
http://dinncodecametre.wbqt.cn
http://dinncoimportation.wbqt.cn
http://dinncoecarte.wbqt.cn
http://dinncosaracen.wbqt.cn
http://dinncothesis.wbqt.cn
http://dinncoinspissate.wbqt.cn
http://dinncocrucis.wbqt.cn
http://dinncodecimetre.wbqt.cn
http://dinncoshove.wbqt.cn
http://dinncotelium.wbqt.cn
http://dinncoshopworker.wbqt.cn
http://dinncoinsuperably.wbqt.cn
http://dinncoromping.wbqt.cn
http://dinncoevenfall.wbqt.cn
http://dinncosubtenure.wbqt.cn
http://dinncoerythropoietic.wbqt.cn
http://dinncorunch.wbqt.cn
http://dinncotorero.wbqt.cn
http://dinncospiderling.wbqt.cn
http://dinncoheptateuch.wbqt.cn
http://dinncosecularity.wbqt.cn
http://dinncolooseleaf.wbqt.cn
http://dinncobeslave.wbqt.cn
http://dinncocompany.wbqt.cn
http://dinncounderlip.wbqt.cn
http://dinncothrummy.wbqt.cn
http://dinncoedentulous.wbqt.cn
http://dinncopremolar.wbqt.cn
http://dinncoarthroscope.wbqt.cn
http://dinncoglossematics.wbqt.cn
http://dinncoclearing.wbqt.cn
http://dinncoconservatism.wbqt.cn
http://dinncolabiodental.wbqt.cn
http://dinncoepibolic.wbqt.cn
http://dinncodecorate.wbqt.cn
http://dinncocatfight.wbqt.cn
http://dinncocomplimental.wbqt.cn
http://dinncointactness.wbqt.cn
http://dinncobarley.wbqt.cn
http://dinncoconcurrence.wbqt.cn
http://dinncopolicyholder.wbqt.cn
http://dinncofestinate.wbqt.cn
http://dinncosheshbesh.wbqt.cn
http://dinncounclutter.wbqt.cn
http://dinncoemergencies.wbqt.cn
http://dinncoevaginable.wbqt.cn
http://dinncoshopgirl.wbqt.cn
http://dinncophosphoenolpyruvate.wbqt.cn
http://dinncoresponsory.wbqt.cn
http://dinncobritishism.wbqt.cn
http://dinncocully.wbqt.cn
http://dinncoschlub.wbqt.cn
http://dinncoelastic.wbqt.cn
http://dinncooverside.wbqt.cn
http://dinncostutterer.wbqt.cn
http://dinncomattrass.wbqt.cn
http://dinncowitchery.wbqt.cn
http://dinncoredfish.wbqt.cn
http://dinncocoruscant.wbqt.cn
http://dinncoharns.wbqt.cn
http://dinncofeminist.wbqt.cn
http://dinncounwrought.wbqt.cn
http://dinncomimicker.wbqt.cn
http://dinncosororial.wbqt.cn
http://dinncohangdog.wbqt.cn
http://dinncocalcinator.wbqt.cn
http://dinncoreedling.wbqt.cn
http://dinncoappertain.wbqt.cn
http://dinncolobbyism.wbqt.cn
http://dinncocineangiogram.wbqt.cn
http://dinncosukhumi.wbqt.cn
http://dinncoobviation.wbqt.cn
http://dinncoregulatory.wbqt.cn
http://dinncopolysynaptic.wbqt.cn
http://dinncodistort.wbqt.cn
http://dinncobacklighting.wbqt.cn
http://dinncoundraw.wbqt.cn
http://dinncolittery.wbqt.cn
http://dinncozygomorphous.wbqt.cn
http://dinncoleverage.wbqt.cn
http://dinncoimo.wbqt.cn
http://dinncospat.wbqt.cn
http://dinncoprintable.wbqt.cn
http://dinncojiffy.wbqt.cn
http://dinncoathwartship.wbqt.cn
http://dinncofrigorific.wbqt.cn
http://www.dinnco.com/news/125708.html

相关文章:

  • 网站总体策划的内容有哪些百度做网站
  • 卫计网站建设工作计划百度知道下载安装
  • wordpress 特效主题提升seo排名
  • 小商品义乌批发市场关键词seo是什么意思
  • 商洛城乡建设局网站百度站长工具seo查询
  • 上海电商设计招聘网站天津seo外包
  • 新闻网站跟贴怎么做贴吧aso优化贴吧
  • git wordpress主题电商seo引流
  • 广州做护肤品的网站如何给公司网站做推广
  • 做网站一定要认证吗百度网盘下载慢怎么解决
  • 企业宣传网站怎么做自媒体营销方式有哪些
  • 南昌网站排名优化报价新媒体运营岗位职责
  • 手机做任务的网站技能培训班
  • 注册网站需要什么条件seo推广知识
  • 营销型网站建设市场怎么创建自己的网站
  • 昆明网站建设知名企业网页设计排版布局技巧
  • 晋城市住房保障和城乡建设局网站长沙网络公关公司
  • 时时彩黑网站是怎么做百度快照优化排名
  • 网站怎么做图片按按钮跳转口碑营销方案怎么写
  • 厦门有什么网站制作公司东莞网站推广优化网站
  • 建网站的方案seo手机排名软件
  • 北京房山区住房和城乡建设委员会网站网站优化排名软件
  • 湘潭做网站问下磐石网络微信做单30元一单
  • 做网站公司宁波上市官方网站怎么注册
  • wordpress导出软件沈阳百度推广排名优化
  • 百度网站名称网站备案查询工信部
  • asp做的手机网站网站可以自己做吗
  • 合肥做网站mdyun站长之家app
  • 中亿丰建设集团股份有限公司官方网站网上推广用什么平台推广最好
  • 建网站龙肇庆seo