-
Uart
51单片机串口实验,有proteus仿真原理图,一个发送,一个接收(51 microcontroller serial experiments, proteus simulation schematic, a sending, receiving)
- 2020-11-10 08:49:45下载
- 积分:1
-
基于Qt的聊天室
创建了QTcpSokcet类的实例后,可以用conncetToHost()与服务器进行连接:
QHostAddress *serverIP = new QHostAddress();
QString ip = serverIPLineEdit->text();
serverIP->setAddress(ip);
int port = 8010;
tcpSocket->connectToHost(*serverIP, port);
如果成功,将返回connected()信号,错误则返回error(QAbstrackSocket::SocketError socketError)信号
连接成功后可发送或接收数据:
发送:qunit64 write(const QByteArray &byteArray),发挥实际发送字节数,出错返回-1
接收:readyRead()信号被发送,在槽函数中编写处理数据代码,为避免错误解析数据,可用bytesAvailable()返回缓存中接收到的字节数。
- 2022-02-11 15:48:03下载
- 积分:1
-
StateAndNotificationBrokerViewer
有关用C# 开发的API函数源码,state values and state change
notifications from the State and Notification Broker.(This sample demonstrates how to get both state values and state change
notifications from the State and Notification Broker.)
- 2013-10-07 15:51:17下载
- 积分:1
-
UR5_User_Manual_CN
ur机器人中文参考手册,一本很好的机器人入门书籍(Ur robot Chinese reference manual, a good robot entry books)
- 2015-06-09 10:04:59下载
- 积分:1
-
石器时代gmsv源代码支持ABLUA修正大量BUG
石器时代gmsv源代码支持ABLUA修正大量BUG
- 2022-01-25 14:57:03下载
- 积分:1
-
温度计(包含负温度)
这是基于单片机的温度计,包含负温度。文件里包含了仿真图和C语言源码,真实有效。
- 2022-10-06 23:25:03下载
- 积分:1
-
STM32工程模板
STM32工程模板 【文件目录】└─STM32工程模板 │ Template.build_log.htm │ Template.uvgui.shenyinghang │ Template.uvgui_shenyinghang.bak │ Template.uvopt │ Template.uvproj │ Template_Template.dep │ Template_uvopt.bak │ Template_uvproj.bak │ 启动文件选择.jpg │ ├─Doc ├─Libraries │ ├─CMSIS │ │ │ core_cm3.c │ │ │ core_cm3.h │ │ │ stm32f10x.h │ │ │ system_stm32f10x.c │ │ │ system_stm32f10x.h │ │ │ │ │ └─startup │ │ startup_stm32f10x_cl.s │ │ startup_stm32f10x_hd.s │ │ startup_stm32f10x_hd_vl.s │ │ startup_stm32f10x_ld.s │ │ startup_stm32f10x_ld_vl.s │ │ startup_stm32f10x_md.s │ │ startup_stm32f10x_md_vl.s │ │ startup_stm32f10x_xl.s │ │ │ └─FWlib │ ├─inc │ │ misc.h │ │ stm32f10x_adc.h │ │ stm32f10x_bkp.h │ │ stm32f10x_can.h │ │ stm32f10x_cec.h │ │ stm32f10x_crc.h │ │ stm32f10x_dac.h │ │ stm32f10x_dbgmcu.h │ │ stm32f10x_dma.h │ │ stm32f10x_exti.h │ │ stm32f10x_flash.h │ │ stm32f10x_fsmc.h │ │ stm32f10x_gpio.h │ │ stm32f10x_i2c.h │ │ stm32f10x_iwdg.h │ │ stm32f10x_pwr.h │ │ stm32f10x_rcc.h │ │ stm32f10x_rtc.h │ │ stm32f10x_sdio.h │ │ stm32f10x_spi.h │ │ stm32f10x_tim.h │ │ stm32f10x_usart.h │ │ stm32f10x_wwdg.h │ │ │ └─src │ misc.c │ stm32f10x_adc.c │ stm32f10x_bkp.c │ stm32f10x_can.c │ stm32f10x_cec.c │ stm32f10x_crc.c │ stm32f10x_dac.c │ stm32f10x_dbgmcu.c │ stm32f10x_dma.c │ stm32f10x_exti.c │ stm32f10x_flash.c │ stm32f10x_fsmc.c │ stm32f10x_gpio.c │ stm32f10x_i2c.c │ stm32f10x_iwdg.c │ stm32f10x_pwr.c │ stm32f10x_rcc.c │ stm32f10x_rtc.c │ stm32f10x_sdio.c │ stm32f10x_spi.c │ stm32f10x_tim.c │ stm32f10x_usart.c │ stm32f10x_wwdg.c │ ├─Listing │ startup_stm32f10x_cl.lst │ startup_stm32f10x_hd.lst │ startup_stm32f10x_hd_vl.lst │ startup_stm32f10x_ld.lst │ startup_stm32f10x_ld_vl.lst │ startup_stm32f10x_md.lst │ startup_stm32f10x_md_vl.lst │ startup_stm32f10x_xl.lst │ Template.map │ ├─Output │ core_cm3.crf │ core_cm3.d │ core_cm3.o │ main.crf │ main.d │ main.o │ misc.crf │ misc.d │ misc.o │ startup_stm32f10x_cl.d │ startup_stm32f10x_cl.o │ startup_stm32f10x_hd.d │ startup_stm32f10x_hd.o │ startup_stm32f10x_hd_vl.d │ startup_stm32f10x_hd_vl.o │ startup_stm32f10x_ld.d │ startup_stm32f10x_ld.o │ startup_stm32f10x_ld_vl.d │ startup_stm32f10x_ld_vl.o │ startup_stm32f10x_md.d │ startup_stm32f10x_md.o │ startup_stm32f10x_md_vl.d │ startup_stm32f10x_md_vl.o │ startup_stm32f10x_xl.d │ startup_stm32f10x_xl.o │ stm32f10x_adc.crf │ stm32f10x_adc.d │ stm32f10x_adc.o │ stm32f10x_bkp.crf │ stm32f10x_bkp.d │ stm32f10x_bkp.o │ stm32f10x_can.crf │ stm32f10x_can.d │ stm32f10x_can.o │ stm32f10x_cec.crf │ stm32f10x_cec.d │ stm32f10x_cec.o │ stm32f10x_crc.crf │ stm32f10x_crc.d │ stm32f10x_crc.o │ stm32f10x_dac.crf │ stm32f10x_dac.d │ stm32f10x_dac.o │ stm32f10x_dbgmcu.crf │ stm32f10x_dbgmcu.d │ stm32f10x_dbgmcu.o │ stm32f10x_dma.crf │ stm32f10x_dma.d │ stm32f10x_dma.o │ stm32f10x_exti.crf │ stm32f10x_exti.d │ stm32f10x_exti.o │ stm32f10x_flash.crf │ stm32f10x_flash.d │ stm32f10x_flash.o │ stm32f10x_fsmc.crf │ stm32f10x_fsmc.d │ stm32f10x_fsmc.o │ stm32f10x_gpio.crf │ stm32f10x_gpio.d │ stm32f10x_gpio.o │ stm32f10x_i2c.crf │ stm32f10x_i2c.d │ stm32f10x_i2c.o │ stm32f10x_it.crf │ stm32f10x_it.d │ stm32f10x_it.o │ stm32f10x_iwdg.crf │ stm32f10x_iwdg.d │ stm32f10x_iwdg.o │ stm32f10x_pwr.crf │ stm32f10x_pwr.d │ stm32f10x_pwr.o │ stm32f10x_rcc.crf │ stm32f10x_rcc.d │ stm32f10x_rcc.o │ stm32f10x_rtc.crf │ stm32f10x_rtc.d │ stm32f10x_rtc.o │ stm32f10x_sdio.crf │ stm32f10x_sdio.d │ stm32f10x_sdio.o │ stm32f10x_spi.crf │ stm32f10x_spi.d │ stm32f10x_spi.o │ stm32f10x_tim.crf │ stm32f10x_tim.d │ stm32f10x_tim.o │ stm32f10x_usart.crf │ stm32f10x_usart.d │ stm32f10x_usart.o │ stm32f10x_wwdg.crf │ stm32f10x_wwdg.d │ stm32f10x_wwdg.o │ system_stm32f10x.crf │ system_stm32f10x.d │ system_stm32f10x.o │ Template.axf │ Template.build_log.htm │ Template.hex │ Template.htm │ Template.lnp │ Template.sct │ ├─Project └─User main.c stm32f10x_conf.h stm32f10x_it.c stm32f10x_it.h
- 2020-04-13下载
- 积分:1
-
GPSGSM
说明: G P S和G S M 双定位终端的软硬件设计与实现
:随着移动定位技术的发展, 单纯的签子G P S 的定位终端或者荃于移动网络的定位终端都将无法浦足用户的俩求。前者的G P S定
位信号受地形及建筑物的影晌,会存在定位盲区 后者定位精度和定位能力受到移动网 络的限制。该文提出一种集成了G P S定位和G S M
网络定位技术的定位终端,阐述了它的软硬件的设计和实现。实验结果表明,该定位终端结合了G P S和G S M网络两种定位方式的优点,(D e s i g n a n d I m p l e me n t a t i o n o f t h e T r a c k i n g T e r mi n a l I n t e g r a t i n g
GP S wi t h GS M P o s i t i o n i n g T e c h n o l o g y
J I A NG X i r u i , C HE N G Z h e n l i n , F AN G J i n y u n , Z HA NG L i v n g
( I n s t i t u t e o f C o m p u t e T e c h n o l o g y , C h i n e s e A c a d e m y o f S c i e n c e s , B e i j i n g 1 0 0 0 8 0 )
b s t r a c t ] Th e t r a c k i n g t e r mi n a l p l a y s a n i mp o r a n t rl e i n t h e n a v i g a t i o n a n d p o s i t i o n i n g s y s t e m. Ho w t o
t h e t r a c k i n g t e r mi n a l i s a k e y p rb l e m t o t h e d e s i g n e r a n d u s e r . T h i s p a p e r p r e s e n t s a me t h o d wh i c h
i mpr v e t
i n t e g r a t e s
p e r f o r m a n c e a n d p r e c i s i o
GP S wi 比GS M p o s i t i o n i n g
h n o l o g y i n o n e t e r mi n a l , a n d s p e c i f i e s t h e s o f)
- 2009-08-27 09:06:42下载
- 积分:1
-
cavity2d
说明: palabos基本的经典方腔流动,2d模型,初学者必备(Palabos classical square cavity flow, 2d model.Essential for beginners)
- 2020-06-23 12:20:02下载
- 积分:1
-
STM32LED
STM32F103ZET6的LED实现,对IO的操作实现LED的控制
- 2022-05-27 07:36:35下载
- 积分:1