代码搜索:数字对讲机

找到约 10,000 项符合「数字对讲机」的源代码

代码结果 10,000
www.eeworm.com/read/439176/7715343

vhd decoder_display.vhd

library ieee; use ieee.std_logic_1164.all; entity decoder_display is port( clk : in std_logic; data : in std_logic_vector(9 downto 0); --用于数字键0-9输入 q : out std_logic_vector(6 downto
www.eeworm.com/read/438832/7725401

sh numbers.sh

#!/bin/bash # numbers.sh: 几种不同数制的数字表示法. # 10进制: 默认情况 let "dec = 32" echo "decimal number = $dec" # 32 # 这没什么特别的. # 8进制: 以'0'(零)开头 let "oct = 032" echo "octal number = $oct"
www.eeworm.com/read/435783/7784834

cpp 1.cpp

#include #include #include #include #include int A,B; void get(char num[])//由游戏自动获取所猜数字 { int x; int i,j; srand(unsigned(time(0))); for(
www.eeworm.com/read/332434/12758325

h digitbp.h

#pragma once #ifndef __AFXWIN_H__ #error 在包含用于 PCH 的此文件之前包含“stdafx.h” #endif #include "resource.h" // 主符号 // CDigitBpApp: // 有关此类的实现,请参阅 手写数字识别系统.cpp // class CDigitBpApp : public
www.eeworm.com/read/332234/12772200

c 7-39.c

/* 将字符串a 与字符串b转换成数字后相加*/ #include main() { char *a="–100.23"; char *b="200e-2"; float c; c=atof(a)+atof(b); printf("c=%.2f\n",c); }
www.eeworm.com/read/329713/12937355

c shu_ma_guan.c

/********************************************* 实验任务:学习数码管的动态显示 实验功能:数码管显示1028四个数字 *********************************************/ #include code unsigned char seg7code[]={0xc0,0xf9
www.eeworm.com/read/242794/12985569

c text.c

/******************************************************** 压力测试仪 系统描述;输入 15--115kPA压力信号 输出 00h--ffh数字信号(adc0809) 在LED上显示实际的压力值,如果超限则报警 线性区间标度变换公式: y=(11
www.eeworm.com/read/327967/13053273

h devicecontrolcommand.h

#include "publicparam.h" //遥控器命令字 #define YKCMD_LEN 16 //遥控器命令长度 #define YKCMD_NUM 0X80 //数字 #define YKCMD_AUTOOPEN 0X71 //轮训开 #define YKCMD_AUTOCLOSE
www.eeworm.com/read/327492/13075234

m cirshift.m

function y = cirshift(x,m,N) %《数字信号处理教程——MATLAB释义与实现》子程序 % 循环移位子程序 % 电子工业出版社出版 陈怀琛编著 2004年9月 % % [y] = cirshift(x,m,N) % ------------------------------------------------------------------- %
www.eeworm.com/read/240662/13208018

c 7-39.c

/* 将字符串a 与字符串b转换成数字后相加*/ #include main() { char *a="–100.23"; char *b="200e-2"; float c; c=atof(a)+atof(b); printf("c=%.2f\n",c); }