登录
首页 » c » 基于STM3和sim900信息传输代码

基于STM3和sim900信息传输代码

于 2022-07-28 发布 文件大小:2.33 MB
0 131
下载积分: 2 下载次数: 1

代码说明:

如今社会是科学技术及仪器设备发展的信息社会,电子科学技术的进步,给人们带来了根本性的转变,随着全球定位系统的不断改进,硬、软件的不断完善,应用领域正在不断地开拓,目前已遍及国民经济各种部门,并开始逐步深入人们的日常生活。GPS模块通过接收卫星的信息可以准确的记录受控终端的位置信息、速度信息、海拔高度等等。这些数据通过串行输入口把数据送给控制器处理,控制器把处理好的数据转换成固定格式的数据,通过串行输出口送给手机模块发送给监控终端。报告受控终端的位置信息。本系统基于SIM900的GPS定位系统,具有一定的实时性,非常适合用于车辆或大型设备的的定位、数据反馈和远程监控。

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

发表评论

0 个回复

  • Chessy-Online
    Is a verry simple Chess exemle
    2012-05-14 19:55:37下载
    积分:1
  • Full-Face-Detector
    说明:  网上下载的外国的人脸检测程序,不知道有没有,传上来与大家分享(Download the foreign face detection program, do not know not, pass up and share)
    2011-03-22 09:34:46下载
    积分:1
  • C# 制作系统服务 实例源码下载
    附件中有详细的安装使用文档,大概步骤如下:1.新建Windows项目,选择"Windows服务"类型的工程。2.生成的Program.cs文件中,定义了服务启动的Main函数。 代码 namespace WindowsService1{    static class Program    {        ///         /// 应用程序的主入口点。        ///         static void Main()        {            ServiceBase[] ServicesToRun;            ServicesToRun = new ServiceBase[]             {                 new Service1()             };            ServiceBase.Run(ServicesToRun);        }    }}  3.在新建的工程中,点击Service1.cs文件,切换到代码视图,生成的代码继承于ServiceBase基类,并重载了OnStart和OnStop方法。我在这个文件中进行了一些简单的操作,就是在服务开始的时候,定义一个定时器,然后每隔1秒钟,向文件中写入当前时间。 代码 namespace WindowsService1{    public partial class Service1 : ServiceBase    {        Timer timer;        public Service1()        {            InitializeComponent();        }        protected override void OnStart(string[] args)        {            timer = new Timer(1000);            timer.Elapsed  = new ElapsedEventHandler(timer_Elapsed);            timer.Start();        }        protected override void OnStop()        {            timer.Stop();            timer.Dispose();        }        void timer_Elapsed(object sender, ElapsedEventArgs e)        {            string filePath = AppDomain.CurrentDomain.BaseDirectory   "test.txt";            StreamWriter sw = null;            if (!File.Exists(filePath))            {                sw = File.CreateText(filePath);            }            else            {                sw = File.AppendText(filePath);            }            sw.Write("访问时间:" DateTime.Now.ToString() Environment.NewLine);            sw.Close();        }    }}4.向工程中添加一个安装程序类。 4.在新添加的安装程序类中,设定服务的名称,启动方式,账号名和密码等信息。 代码 namespace WindowsService1{    partial class Installer1    {        ///         /// 必需的设计器变量。        ///         private System.ComponentModel.IContainer components = null;        private System.ServiceProcess.ServiceProcessInstaller spInstaller;        private System.ServiceProcess.ServiceInstaller sInstaller;        ///          /// 清理所有正在使用的资源。        ///         /// 如果应释放托管资源,为 true;否则为 false。        protected override void Dispose(bool disposing)        {            if (disposing && (components != null))            {                components.Dispose();            }            base.Dispose(disposing);        }        #region 组件设计器生成的代码        ///         /// 设计器支持所需的方法 - 不要        /// 使用代码编辑器修改此方法的内容。        ///         private void InitializeComponent()        {            components = new System.ComponentModel.Container();            // 创建ServiceProcessInstaller对象和ServiceInstaller对象            this.spInstaller =new System.ServiceProcess.ServiceProcessInstaller();            this.sInstaller = new System.ServiceProcess.ServiceInstaller();            // 设定ServiceProcessInstaller对象的帐号、用户名和密码等信息            this.spInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;            this.spInstaller.Password = null;            this.spInstaller.Username = null;            // 设定服务的名称            this.sInstaller.ServiceName = "WindowsService1";            //设定服务启动的方式            this.sInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;            this.Installers.AddRange(new System.Configuration.Install.Installer[] {            this.spInstaller,this.sInstaller});        }        #endregion    }}5.生成工程,在bin目录下会生成exe文件。如果直接运行exe文件的话,是不能执行的,需要使用安装Windows服务用到一个名为InstallUtil.exe的命令行工具,打开命令行工具,转到InstallUtil.exe的目录下,我安装的是VS 2010,对应的目录为:C:WindowsMicrosoft.NETFrameworkv4.0.30319InstallUtil.exe,然后执行InstallUtil.exe 待执行的exe文件的目录,如:InstallUtil.exe F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe。执行成功后,会在Windows的服务中,出现了刚刚添加的服务的名称。 6.启动该服务,这时打开binDebug文件夹,发现已经生成了一个test.txt的文件,里面记录了时间。这说明服务已经正式开始执行。7.停止服务的操作也和简单,打开命令行工具,转到C:WindowsMicrosoft.NETFrameworkv4.0.30319目录,然后执行InstallUtil.exe - u F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe命令就可以了。
    2015-04-21下载
    积分:1
  • minigui3.0插图操作例子
    适用于minigui学习,简单的插图,改变字体颜色操作
    2023-07-04 03:10:03下载
    积分:1
  • ProgrammingApplicationsforWindows
    WINDOWS核心编程,已编译的htm格式,内容完整,只有3M多,比pdf文档节省。(WINDOWS core programming, compiled htm format, the content is complete, only 3M, pdf files than savings.)
    2007-06-27 17:19:45下载
    积分:1
  • osg_osgearth
    osgearth的文档资料不多,这里几乎是所有可以找到的中文资料,以及一些osg的中文资料(osgearth documentation much, here you can find almost all the Chinese data, as well as some of the Chinese data osg)
    2020-11-19 09:59:38下载
    积分:1
  • 语音小车
    智能语音小车标准程序,已经测试通过了的。完全没有问题。(The standard program of intelligent voice car has passed the test. No problem at all.)
    2020-06-17 20:20:07下载
    积分:1
  • STM32F103C8板子程序
    基于sx1278实现STM32F103C8和STM8L151间通讯(sx1278,STM32F103,STM8L151)
    2020-06-21 15:00:02下载
    积分:1
  • WPF通讯录
    WPF版通讯录,实现3D效果
    2014-06-05下载
    积分:1
  • FTP
    Ftp客户端与服务器VC++完整版,是一个比较简单的ftp程序,但是程序提供了各种接口,能够让读者看法出各种复杂的ftp程序,程序中的各个程序模块均已经实现,以上所有程序在VC6.0中调试通过   目录ftp服务器是一个基于控制台的ftp服务器程序,能够实现大部分的FTP的服务器程序;   注意:    a.帐号密码为toldo    b.主目录为c:/temp,在连接之前请先建立(Ftp client and server, the full version of VC++, is a relatively simple ftp program, but the program offers a variety of interfaces, allowing readers to view a variety of complex ftp program, proceedings have been achieved in all program modules, all of the above procedures In VC6.0 debug directory ftp server through a console-based ftp server program, able to achieve most of the FTP server program Note: a. account password toldo b. the main directory is c:/temp, in connection before you build)
    2010-06-17 20:31:49下载
    积分:1
  • 696516资源总数
  • 106442会员总数
  • 11今日下载