C8051F350单片机24位AD采样程序
上传时间: 2015-05-15
上传用户:asdfjkl
尺寸:检测板尺寸;长80mmX宽54mm 电路板尺寸长32mmX宽11mmX高20mm 二、 主要芯片:LM393、雨水检测板 三、 工作电压:直流5~24伏 四、 特点:1、具有信号输出指示。 2、单路信号输出。 3、输出有效信号为低电平。 4、灵敏度可调(精调)。 5、用于检测湿度的场合输出开关量(无法测出具体湿度的百分比) 6、电路板输出开关量! 五、有详细使用说明书
标签: 雨水传感器
上传时间: 2015-05-30
上传用户:yyt994
用vhdl实现数字钟 其一,具有时,分,秒计数显示功能,其中,要求以二十四小时循环及 时; 其二,具有清零,调节小时,分钟功能; 其三,具有整点报时功能,而且在整点报时的同时 LED 灯花样显示。 其一,具有时,分,秒计数显示功能,其中,要求以二十四小时循环及 时; 其二,具有清零,调节小时,分钟功能; 其三,具有整点报时功能,而且在整点报时的同时 LED 灯花样显示。 其一,具有时,分,秒计数显示功能,其中,要求以二十四小时循环及
标签: 用vhdl实现数字钟
上传时间: 2015-06-24
上传用户:吧和GV会比较好
24点游戏计算程序。不仅可以算24点,还可以自定义计算25点,20点等。
标签: 小游戏
上传时间: 2015-10-19
上传用户:dumpsoft
用java做的一个小游戏,经典的24点游戏,内带课程设计报告
上传时间: 2016-01-02
上传用户:hgcliu
简单命令使用grep等的使用 [zorro@isch ~]$ history 1 ifconfig 2 su 3 exit 4 ls 5 cd Desktop/ 6 ls 7 tar zxcf VMwareTools-8.4.5-324285.tar.gz 8 tar zxvf VMwareTools-8.4.5-324285.tar.gz 9 cd vmware-tools-distrib/ 10 ls 11 ./vmware-install.pl 12 su 13 ls 14 cd .. 15 ls 16 rm VMwareTools-8.4.5-324285.tar.gz 17 rm -r vmware-tools-distrib 18 ls 19 make 20 ls 21 cd redis/ 22 quit 23 ls 24 ca redis/ 25 cd redis/ 26 cd redis-2.8.17 27 make 28 cd redis-2.8.17 29 ls 30 cd redis-2.8.17 31 cd str 32 cd src 33 ls 34 ./redis-cli 35 ls 36 cd redis-2.8.17 tar.gz 37 make 38 cd src 39 ./redis-server .. /redis.conf 40 ./redis-cli 41 ./redis-server ../redis.conf 42 vi test1.sh 43 ./test1.sh 44 vi test.sh 45 ./test.sh 46 ls 47 chmod 777 test.sh 48 ./test.sh 49 vi express 50 $ grep –n ‘the’ express 51 clear 52 grep -n 'the' express 53 vi express 54 grep -n 'the' express 55 grep -vn 'the'express 56 grep -vn 'the' express 57 grep -in 'the' express 58 vi test2.c 59 grep -l 'the' *.c 60 grep -n 't[ae]st' express 61 grep -n 'oo' express 62 grep -n '[^g]oo' express 63 grep -n '[a^z]oo' express 64 grep -n '[0^9]' express 65 grep -n '^the' express 66 vi express 67 sed -e 'd' express 68 sed -e '1d' express 69 sed -e '1~7d' express 70 sed -e '$d' express 71 sed -e '1,/^$/d' express 72 ls 73 cd 74 pwd 75 history [zorro@isch ~]$
标签: 简单命令使用
上传时间: 2016-05-24
上传用户:12345678gan
用于单片机24小时始终proteus仿真
标签: 电子时钟
上传时间: 2016-06-09
上传用户:a6942318
针对传统的系统级标定方法状态变量维数高、标定参数可观测性差等特点,提出一种十位置系统级标 定方法。该方法以分立式标定结果为初值,以速度误差和姿态误差作为观测量,合并加速度计标定误差和光 纤陀螺标定误差,降低Kalman滤波器维数。设计10个位置对SINS标定误差进行估计,然后将估计值进行解 耦,计算SINS标定参数。仿真和转台实验结果表明:十位置系统级标定方法可以一次性标定出标度因数、安 装误差和零位等24个标定参数。
上传时间: 2016-10-23
上传用户:260970449
CH341A做的烧录器,用来读写RTD2120 RTD2122 RTD2660 RTD2270 24 25 WT6702等IC的软件
标签: 2120 341A 6702 341 RTD CH 24 25 WT 烧写
上传时间: 2017-06-11
上传用户:xtoqm
题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少? //这是一个菲波拉契数列问题 public class lianxi01 { public static void main(String[] args) { System.out.println("第1个月的兔子对数: 1"); System.out.println("第2个月的兔子对数: 1"); int f1 = 1, f2 = 1, f, M=24; for(int i=3; i<=M; i++) { f = f2; f2 = f1 + f2; f1 = f; System.out.println("第" + i +"个月的兔子对数: "+f2); } } } 【程序2】 题目:判断101-200之间有多少个素数,并输出所有素数。 程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除, 则表明此数不是素数,反之是素数。 public class lianxi02 { public static void main(String[] args) { int count = 0; for(int i=101; i<200; i+=2) { boolean b = false; for(int j=2; j<=Math.sqrt(i); j++) { if(i % j == 0) { b = false; break; } else { b = true; } } if(b == true) {count ++;System.out.println(i );} } System.out.println( "素数个数是: " + count); } } 【程序3】 题目:打印出所有的 "水仙花数 ",所谓 "水仙花数 "是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个 "水仙花数 ",因为153=1的三次方+5的三次方+3的三次方。 public class lianxi03 { public static void main(String[] args) { int b1, b2, b3;
上传时间: 2017-12-24
上传用户:Ariza