-
MediaPlayer_Service
MP3音乐播放器代码,主要实现从sd卡中读取MP3文件,界面有播放暂停,上一首,下一首四个按钮(MP3 music player code, the main implementation MP3 files, read the sd card interface are suspended, a song, a four button)
- 2020-09-29 09:37:43下载
- 积分:1
-
Scroll
这个源码是一个简单的andorid跑马灯滚动效果,可以运行(This source is a simple andorid Marquee scrolling effect, you can run)
- 2012-07-25 09:28:05下载
- 积分:1
-
Rtp2H264
h264 RTP包的解包、拼帧源码,适合android平台,实测可用。(H264 RTP packet unpacking, fight the frame source, suitable for the android platform, the measured available.)
- 2013-05-16 10:38:11下载
- 积分:1
-
AndroidNTRIPClient-Source
Android 版的GPS NTRIP协议的客户端源码。通过网络TCP/IP通信。(Android version of the GPS NTRIP protocol client source code. Through the network TCP/IP communication.)
- 2013-04-23 11:27:48下载
- 积分:1
-
android-tcp
android使用TCP协议传输数据的例子和教程,具有很好的参考价值(Examples of android using the TCP protocol to transmit data and tutorials, has the very good reference value)
- 2013-09-30 10:19:55下载
- 积分:1
-
TravelApp-(1)
一个简单的安卓app应用程序,类似于滴答拼车,但是拼游的,大家可以通过此软件找到一起出游的小伙伴(A simple Android app applications, similar to the ticking carpool, but to fight tour, we can travel together by this software to find a small partner)
- 2020-10-22 16:17:23下载
- 积分:1
-
TastyToast
实现自定义toast,可以随意定制样式,位置,替代系统toast(mplementing custom toast)
- 2017-07-07 17:21:11下载
- 积分:1
-
Android System startup process
说明: Android System startup process
- 2019-05-17 09:50:37下载
- 积分:1
-
migong-game
android中一个迷宫小球游戏,很好的一个学习例子。(android in a maze of small ball game, a good example of a learning.)
- 2013-04-08 15:34:35下载
- 积分: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