原理:Pi使用有线连入网络,然后接USB无线网卡作为热点,提供Wifi接入。 1、有线网络,如果是自动获取IP的,直接接上网线即可。 2、关于USB无线网卡驱动问题。 如果接上USB无线网卡,使用ifconfig命令,能直接看到wlan0,那么恭喜你,可以直接跳过这一步。 官方推荐的无线网卡是TL-...
分类:
其他好文 时间:
2014-07-12 13:16:32
阅读次数:
352
没耐心看这个Pi支持的无线网卡列表: http://elinux.org/RPi_VerifiedPeripherals#USB_Wi-Fi_Adapters 我就用自己之前买的一的斐讯的USB无线网卡,很小,35元还特么包邮!用的也很好! 插上去就能识别,而且,我是直接用USB线插在笔记上取的电,...
分类:
其他好文 时间:
2014-07-10 14:27:45
阅读次数:
200
1. install lrzsz $ sudo apt-get install lrzsz 2. If you want to send file from your pc to pi, just drag it to the Xshell window. Or, input $ sudo rz t...
分类:
其他好文 时间:
2014-07-10 14:21:55
阅读次数:
421
x=0:0.1:6*pi; for step=1:2:100 s=0; for i=1:2:step s = s+1/i*sin(i*x); end plot(s);set(figure(1),'visible','off'); filename=[num2str(step, '%04d'),'.p...
分类:
其他好文 时间:
2014-07-10 13:49:02
阅读次数:
922
1. Only version not older than R2013 supports Raspberry Pi. First, download support package in Matlab: http://www.mathworks.cn/matlabcentral/fx_files/...
分类:
其他好文 时间:
2014-07-10 13:42:50
阅读次数:
338
1 /* 字段 */ 2 Math.E; //2.71828182845905 3 Math.PI; //3.14159265358979 4 5 /* 静态方法 */ 6 Math.Abs; //绝对值 7 Mat...
分类:
Web程序 时间:
2014-07-07 19:45:31
阅读次数:
196
作者:tobecrazy 出处:http://www.cnblogs.com/tobecrazy 欢迎转载,转载请注明出处。thank you!基本概念 : 常量: 常量名全部大写,如PI 变量: python没有变量类型,也不必声明,直接赋值即可.变量可以是数字,字符串,布尔值(T...
分类:
编程语言 时间:
2014-07-07 18:25:55
阅读次数:
314
iBeacons
iBeacons最近是一个趋势的话题,它们允许室内定位,让你的电话知道你在基站的范围。这个能有许多应用:在停车场帮你找到你的车,零售商通过优惠券和基于位置的特别优惠,以至许多现在不敢想象的应用。
iBeacons关于iBeacons和如何使用它有许多博文,但从技术角度,他们如何工作,深层的技术是低功耗蓝牙,等等。。。
什么是低功耗蓝牙
低功耗蓝牙是发布在201...
分类:
其他好文 时间:
2014-06-30 08:30:36
阅读次数:
331
对每个圆二分半径寻找可行的最小半径,然后取最小的一个半径。
对于两圆相交就只要求到两个扇形,然后减去两个全等三角形就行了。
#include
#include
#include
#include
using namespace std;
#define pi acos(-1.0)
#define eps 1e-8
#define maxn 50
int n;
struct point{...
分类:
其他好文 时间:
2014-06-29 22:36:16
阅读次数:
247
Matlab代码:closeall;alpha=-pi:pi/50:pi;x=2*cos(alpha);y=2*sin(alpha);forp=1:length(x)alpha1=-pi:pi/100:pi;x1=1*cos(alpha1);y1=1*sin(alpha1);holdon;plot(x(1,p)+x1,y(1,p)+y1-1,‘g‘);endaxisoff;holdon;theta=-pi:pi/50:pi;rho=2*(1-sin(theta));polar(theta,rho,‘*r..
分类:
其他好文 时间:
2014-06-28 00:24:12
阅读次数:
381