登录
首页 » c » 大学毕设电子锁lcd12864显示代码

大学毕设电子锁lcd12864显示代码

于 2022-02-21 发布 文件大小:34.39 kB
0 87
下载积分: 2 下载次数: 1

代码说明:

简单的大学毕设作品,用MSP430f149驱动12864显示汉字的代码

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

发表评论

0 个回复

  • c# 二十多种设计模式实例源码下载-完整版
    二十多种设计模式实例源码下载-完整版
    2013-08-30下载
    积分:1
  • 视频采集卡读写实例
    视频采集卡读写实例
    2013-02-01下载
    积分:1
  • 卫星轨道程序
    主要实现卫星的轨道仿真,能够用三维界面显示卫星的实时轨道,具有很好的参考价值。
    2022-10-01 02:50:04下载
    积分:1
  • cet4-words
    对四级单词进行记忆,通过各种形式:按天记忆,随机记忆等模式。(Remaber the CET4 words.)
    2011-06-22 23:19:37下载
    积分:1
  • 02-histogramme
    License Plate Recognition or LPR is an image-processing technology used to identify vehicles by their license plates. This technology is used in various applications involving security, traffic, law enforcement, public safety and transportation sectors. It mainly uses software code that enables computer systems to read automatically the registration number (license number) of vehicles digital pictures.
    2016-04-19 02:26:11下载
    积分:1
  • 截屏软件代码
    【核心代码】//********************************************************************************//文件:Screenshot.CPP//作者:feiren//时间:2014-1-1//用途:封装截图功能的主窗口实现//版本:1.0.0.0//联系:feirench@gmail.com//********************************************************************************#include "stdafx.h"#include "Screenshot.h"#include "ShotImplement.h"extern TAppData g_Data;LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;bool         bClose    = false;int WINAPI ScreenshotWinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,                    PSTR szCmdLine, int iCmdShow){    static TCHAR szAppName[] = TEXT ("AWin") ;    HWND         hwnd ;    MSG          msg ;    WNDCLASS     wndclass ;    BOOL         fMessage;    wndclass.style         = CS_CLASSDC | CS_DBLCLKS;    wndclass.lpfnWndProc   = WndProc ;    wndclass.cbClsExtra    = 0 ;    wndclass.cbWndExtra    = 0 ;    wndclass.hInstance     = hInstance ;    wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;    wndclass.hCursor       = LoadCursor (NULL, IDC_CROSS) ;    wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;    wndclass.lpszMenuName  = NULL ;    wndclass.lpszClassName = szAppName ;    g_Data.mResult = 0;    if (!RegisterClass (&wndclass))    {        return 0;    }    hwnd=CreateWindowEx(WS_EX_TOOLWINDOW,szAppName,TEXT ("The SH"),WS_POPUP|WS_VISIBLE,        CW_USEDEFAULT,CW_USEDEFAULT,CW_USEDEFAULT,CW_USEDEFAULT,NULL,NULL,hInstance,NULL);    ShowWindow (hwnd, iCmdShow) ;    UpdateWindow (hwnd) ;    bClose = false;    PeekMessage(&msg, NULL, 0U, 0U, PM_NOREMOVE);    while(msg.message != WM_QUIT)    // 消息循环    {           fMessage = PeekMessage(&msg, NULL, 0U, 0U, PM_REMOVE);        if(fMessage)                //有消息        {             TranslateMessage(&msg);            DispatchMessage(&msg);        }else        {            if(bClose)break;            else Sleep(1);        }    }    UnregisterClass(szAppName,hInstance);    return g_Data.mResult ;    }LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam){    HDC         hdc ;    PAINTSTRUCT ps ;    switch (message)    {            case WM_CREATE:          g_Data.Initialize(hwnd,GetModuleHandle(NULL));        return 0;    case WM_PAINT:        hdc = BeginPaint (hwnd, &ps) ;        //g_Data.OnPain(hdc);        EndPaint (hwnd, &ps) ;        return 0 ;    case WM_MOUSEMOVE:        hdc = GetDC(hwnd);        g_Data.OnMouseMove(hdc,wParam,lParam);        break;    case WM_LBUTTONDBLCLK:        hdc = GetDC(hwnd);        g_Data.OnLButtonDBLClick(hdc,wParam,lParam);        break;    case WM_LBUTTONDOWN:         hdc = GetDC(hwnd);        g_Data.OnLButtonDown(hdc,wParam,lParam);        break;// 鼠标左键按键,射击用    case WM_LBUTTONUP:             hdc = GetDC(hwnd);        g_Data.OnLButtonUp(hdc,wParam,lParam);        break;// 鼠标左键松开    case WM_RBUTTONDOWN:         hdc = GetDC(hwnd);        g_Data.OnRButtonDown(hdc,wParam,lParam);        break;// 鼠标右键按键,拖动对象用    case WM_RBUTTONUP:             hdc = GetDC(hwnd);        g_Data.OnRButtonUp(hdc,wParam,lParam);        break;// 鼠标右键松开    case WM_MOUSEWHEEL:          hdc = GetDC(hwnd);        g_Data.OnMouseWheel(hdc,wParam,lParam);        break;    case WM_KEYDOWN:                                hdc = GetDC(hwnd);        g_Data.OnKeyDown(hdc,wParam,lParam);        break;    case WM_KEYUP:                        // 按ESC退出        hdc = GetDC(hwnd);        g_Data.OnKeyUp(hdc,wParam,lParam);        break;    case WM_SETCURSOR:        g_Data.OnSetCursor();        break;    case WM_DESTROY:        g_Data.Release();            bClose = true;        //PostQuitMessage (0) ;        return 0 ;    default:        return DefWindowProc (hwnd, message, wParam, lParam) ;    }    return 0;}SCREENSHOT_API int fnScreenshot(void){    return ScreenshotWinMain(GetModuleHandle(NULL),NULL,NULL,SW_SHOWNORMAL|SW_MAXIMIZE);}
    2014-03-04下载
    积分:1
  • verticle-handoff
    垂直切换的matlab仿真。有仿真结果分析,程序还未调试,还有待完善。(Matlab simulation of vertical handover. Analysis of simulation results, the program has not yet debugging, yet to be perfected.)
    2013-05-16 15:05:43下载
    积分:1
  • wpf GraphSharp 画图实例源码下载
    wpf GraphSharp 画图实例源码下载
    2015-03-05下载
    积分:1
  • 遗传算法路径规划
    遗传算法的路径规划利用栅格法C++开发平台。10x10的栅格 1)与任何障碍物不发生碰撞;2)路径尽可能短,运行时间尽可能少;3)应与障碍物保持一定的安全距离;4)路径曲线尽可能平滑。
    2022-01-25 14:17:45下载
    积分:1
  • Mars_v2
    GPU实现的MapReduce framework,对于学习并行编程和cuda平台的编程方面有着极好的参考价值,里面附带论文。用户要求有NViDIA显卡,并且安装cuda编程环境。(We design and implement Mars, a MapReduce framework, on graphics processors (GPUs). MapReduce is a distributed programming framework originally proposed by Google for the ease of development of web search applications on a large number of commodity CPUs. Compared with CPUs, GPUs have an order of magnitude higher computation power and memory bandwidth, but are harder to program since their architectures are designed as a special-purpose co-processor and their programming interfaces are typically for graphics applications.)
    2009-03-17 11:22:47下载
    积分:1
  • 696518资源总数
  • 106208会员总数
  • 21今日下载