-
xiaojipaodong
一个android下面的动画程序,描述的是一个小公鸡自己在屏幕上来回跑的(Android animation following a procedure described is a small cock their running back and forth on the screen)
- 2011-06-08 10:50:33下载
- 积分:1
-
AliasActivityStub
Alias Activity Test Source Code for Andriod.
- 2013-10-10 01:06:11下载
- 积分:1
-
android 调用webservice(json),在listview上显示数据
android 调用webservice(json),在listview上显示数据
- 2014-08-26下载
- 积分:1
-
automatically-send-text-messages
Android自动发送短信,可以让你的手机自动发送短信的代码(Android automatically send a text message that lets your phone automatically send SMS code)
- 2012-07-17 16:07:58下载
- 积分:1
-
MyGatt
BLE开发所需要的知识,通过官方demo,我们会发现很多service,点击service后,每个service下面是Characteristic,每个service和Characteristic都对应一个唯一的UUID。所以,在做BLE时候,首先你应该找出你的蓝牙外围设备uuid,不然会很头疼,这个UUID也可能是硬件给你的,也可以你自己试出来,当然自己试出来是个很烦的过程。自己试的方法就是根据demo,加上一份读写的协议,然后,排着点击,显示出来的蓝牙列表进行测试,看是否和协议对应。另外,BluetoothLeService类不用做太多的更改。(BLE develops the knowledge we need. Through official demo, we will find many service. After clicking service, every service is Characteristic, each service and Characteristic correspond to a unique UUID. So, when making BLE, first you should find out your Bluetooth peripheral device UUID, otherwise it will be very headache. This UUID may also be hardware for you, or you can try it out yourself, of course, trying out it yourself is a very boring process. The way to do it is to add a read and write protocol based on demo,then test the Bluetooth list displayed by clicking on it to see if it corresponds to the protocol. In addition, the BluetoothLeService class does not have to make too many changes.)
- 2018-02-07 11:55:52下载
- 积分:1
-
android 发短信打电话 实例源码下载
android 发短信打电话 实例源码下载
- 2014-05-10下载
- 积分:1
-
TI毫米波雷达例子程序
TI毫米波雷达例子程序
- 2020-12-08下载
- 积分:1
-
疯狂Android讲义(第2版)》.(李刚)源代码
疯狂Android讲义(第2版)》.(李刚)源代码
- 2015-03-15下载
- 积分:1
-
基于android平台的音频通信源码
主要是java部分,其中引用了一个so库。
- 2015-02-17下载
- 积分:1
-
基于STM32的温感GPS终端设计
【实例简介】
野火的指南者,GPS是ATGM332D,温度传感器是DHT11。实现定位温度的采集、LCD显示及WIFI传输
/**
温感GPS终端设计.rar
******************************************************************************
* @file main.c
* @author fire
* @version V1.0
* @date 2013-xx-xx
* @brief 对GPS模块传输的数据进行解码,获取定位信息。
******************************************************************************
* @attention
*
* 实验平台:秉火 STM32 F103-指南者 开发板
* 论坛 :http://www.firebbs.cn
* 淘宝 :https://fire-stm32.taobao.com
*
******************************************************************************
*/
#include "stm32f10x.h"
#include "./usart/bsp_usart.h"
#include "./gps/gps_config.h"
#include "./lcd/bsp_ili9341_lcd.h"
#include "./systick/bsp_SysTick.h"
#include "./dht11/bsp_dht11.h"
#include "./i2c/bsp_i2c_ee.h"
#include "./flash/bsp_spi_flash.h"
#include "usart1.h"
#include "test.h"
#include "bsp_esp8266.h"
#include
#include
extern void nmea_decode_test(void);
extern void ESP8266_StaTcpClient_UnvarnishTest2(void);
int main(void)
{
ILI9341_Init ();
SysTick_Init();
DHT11_Init ();
ILI9341_GramScan ( 6 );
USART_Config();
USARTx_Config();
ESP8266_Init ();
GPS_Config();
while(1)
{
ESP8266_StaTcpClient_UnvarnishTest2();
nmea_decode_test();
}
}
- 2021-10-16 00:31:16下载
- 积分:1