登录
首页 » Android » 基于 android 的 RC 充电和放电

基于 android 的 RC 充电和放电

于 2022-01-31 发布 文件大小:33.51 MB
0 139
下载积分: 2 下载次数: 1

代码说明:

基于 android 的 RC 充电 d = 和履行项目在这个项目中具有 java 源文件代码完整表述存在

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • android 侧滑菜单 实例源码
    android 侧滑菜单 实例源码
    2014-05-30下载
    积分: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
  • 天气预测源码
    Android天气预报程序源代码,获取第三方API数据,有环境的就下载源码测试吧,Android天气预报WeatherForecast似乎是常见而又简单的Android初级例子,但想开发出一款既漂亮又功能丰富的天气预报应用的话,需要很多知识的完美结合。
    2022-08-11 03:47:48下载
    积分:1
  • Android仿淘宝自动填写短信验证码
    android仿淘宝自动获取短信验证码,当我们第一次监听到短信变化时,短信还没有写入到数据库,所以在此不应该做任何的操作,直接return,创建一个收件箱的uri,因为我们读取到的信息,最终是在收件箱中读取到的,当然我们还可以对这个程序做些修改,比如我只想接收10086发来的短信验证或者我只想接收“点融网”发来的短信,这个正则表达式的含义为:提取短信中连续6个数字的内容(这是因为验证 码一般为6位,当然这个是可以根据项目变化的),如果这条正则表达式能够成功匹配,就提取短信验证码,在日志中打印:提取到的验证码,用Handler发送消息:在非UI线程更新UI。
    2023-04-27 04:20:03下载
    积分:1
  • Android 阅读器 源码
    android阅读器               
    2022-12-15 23:55:03下载
    积分:1
  • 交警移动执法系统
    本资源的主要作用用于让初学android的朋友比较容易上手android开发,功能包括一些界面设计,service,消息传递等等,基本上囊括了android基本开发的知识点。
    2022-03-30 17:59:25下载
    积分:1
  • 《Android从入门到精通》源码
    《Android从入门到精通》一书的所以源代码.....
    2022-09-14 04:05:06下载
    积分:1
  • viepager联动效果
    能够实现画面的联动效果,点击一个button,viewpager会响应按钮的动作事件
    2022-02-20 19:29:03下载
    积分:1
  • 27-白光T12电烙铁控制板.rar
    27-白光T12电烙铁控制板.rar
    2019-08-21下载
    积分:1
  • android 异步 执行 任务 例子 附讲解
    Rules::The AsyncTask instance must be created in UI thread. .execute must be invoked on the UI thread.Never call  objMyTask.onPreExecute(), objMyTask.doInBackground(), objMyTask.onProgressUpdate(),  objMyTask.onPostExecute manually.The AsyncTask can be executed only once (an exception will be thrown if a second execution is attempted.)AsyncTask have Four Main Method... onPreExecute()  doInBackground() onProgressUpdate() onPostExecute()  onPreExecute-This method is called first when you start AsyncTask using objAsync.execute().And mostly this method is use for initializing dialog(ProgressDialog,CustomDialog) and showing. doInBackground-The main purpose of AsyncTask is accomplished by this method.Any non-UI thread process is running in this method.Such as Rss Feed Reader,Image and video Uploading and Downloading.You cant handle your View in this method.Because this method is non-UI thread.While any background process is running if you want to handle UI therea are  onProgressUpdate method. after completion of process this method send result to OnPostExecute. onProgressUpdate-While backgrounding task is running ,you can handle your UI using this method .Such as status of downloading or uploading task.and this method is called from  doInBackground.Using publishProgress() you can call onProgressUpdate method to update UI while process is running. onPostExecute -This method is called after the background computation finishes.The result of background process in passed in this method as parameters.And now you can dismiss progress dialog ,to indicate that background task is completed. You can cancel AsyncTask using objAsyncTask.cancel().then you just check in doInBackground, if (isCancelled()) { break; } else {        //continue... } See this Image For more Clear.
    2013-07-05下载
    积分:1
  • 696518资源总数
  • 106174会员总数
  • 31今日下载