手机中systemoemproylder是什么软件oem合作协议

先甩结论,这个叫TDMA noise,为什么会产生TDMA noise呢?&br&&br&那是由于GSM在每间隔200KHz频道上共用8个物理信道,即在同一个频率上进行8个用户的时分复用,也可以理解成为时分多址TDMA(Time Division Multiple Access),因此对于每个用户的手机来说,只有1/8的时间在通话,而其余7/8的时间空闲。手机射频PA每隔4.615ms会有一个发射信号,产生在该信号中包含900MHz/1800MHz或是1900MHz的2.0GGSM信号以及PA的包络线(envelope),我们所听到的嗡嗡声就是PA在发射时产生的的包络线(envelope)杂音,因为人的耳朵的听觉频率范围为20Hz~20KHz,216.8Hz确实是落在人耳可听到的范围,如果手机来电或短信,则在座机话筒中会听到“嗡嗡”的声音。&br&&br&&figure&&img src=&https://pic1.zhimg.com/8d5ccffaf7340_b.jpg& data-rawwidth=&469& data-rawheight=&198& class=&origin_image zh-lightbox-thumb& width=&469& data-original=&https://pic1.zhimg.com/8d5ccffaf7340_r.jpg&&&/figure&&br&TDMA noise传播方式有两种:传导和辐射&br&传播途径引入音频信号的主要三个途径:地,电源,射频信号。&br&&br&来看看有TDMA noise时候的频谱:&br&&figure&&img src=&https://pic2.zhimg.com/a4fc7ef1aff3fd77a5ba5_b.jpg& data-rawwidth=&955& data-rawheight=&416& class=&origin_image zh-lightbox-thumb& width=&955& data-original=&https://pic2.zhimg.com/a4fc7ef1aff3fd77a5ba5_r.jpg&&&/figure&对于存在TDMA noise的FFT频谱,会出现217Hz、434Hz或651Hz,即217Hz的倍频点的能量超出规定值(-64dBm)&br&&br&解决这种问题的方式其实也很简单,1、MIC或者SPK或者耳机走线要并行走且用地保护;2、GND要保护好;3、走线避免临近大信号区;4、音频电源要干净,音频滤波电容要做到很好的接地;5、音频相关GND,要单独接地,不要与其他GND相连后,再接地。&br&&br&另外就是并接滤波电容。通过并接电容形成RC滤波器。经验值22pF可以有效滤除GSM900频段干扰,47pF可以有效滤除DCS1800频段干扰,一般折中采用33pF电容兼顾两者。但实际因PCB板材、电容精度,在具体项目中容值的选择还需通过调试决定。&br&串接磁珠/电感。磁珠类似于电感,但磁珠等效阻抗要比电感高很多,即50Hz-20KHz的音频范围内磁珠对信号的衰减要比电感大。并且磁珠有其滤除频段的规格,如果其滤除频段不是噪声频段,那样使用磁珠就没有任何意义反而还增加了成本。磁珠与电感的区别就是在高频下表现为电阻特性,这样就可以有效的阻止一些无用的杂波,达到滤波效果。磁珠主要用于抑制电磁辐射干扰,而电感则侧重于抑制传导性干扰。两者都可用于处理EMI/EMC问题。考虑到成本会在电路中预留串接位置,默认使用0ohm电阻。同时在设计电路时还需注意所选用的磁珠、电感、电阻的额定电流都要满足电路正常工作电路的需要。&br&&br&在不布局设计方面,Audio电路串联的磁珠/电感以及并联的旁路电容都尽量靠近发声器件摆放;Audio电路中LDO电源滤波电容尽量靠近芯片摆放,走线一定要先经过电容再连接至电源输入端;发声器件在天线下方时,一定注意audio元器件尽量在天线禁布区外,靠近发声器件。如果在天线区内,一定在器件下方要保留地层,与主板接地良好;发声器件磁缸下方表层预留金属露铜,以备用于电声器件磁缸接地。&br&&br&还有就是器件本身的抗干扰能力,现在智能机用的比较多的MEMS MIC,抗TDMA noise干扰能力也是非常重要的指标之一。 MEMS MIC是如何做到这一点的呢? 除了MEMS MIC内部的ASIC电路中会有专门针对TDMA noise的部分,MEMS MIC外壳与PCB中的覆铜形成的法拉第笼,有效地阻止了TDMA noise通过辐射的方式直接耦合进MIC。
先甩结论,这个叫TDMA noise,为什么会产生TDMA noise呢? 那是由于GSM在每间隔200KHz频道上共用8个物理信道,即在同一个频率上进行8个用户的时分复用,也可以理解成为时分多址TDMA(Time Division Multiple Access),因此对于每个用户的手机来说,只有1/8的…
下面这些,都是我想对三年前的我说的,部分内容只代表自己的观点,当然你也应该有自己的思考,不要盲从:&br&1、为自己做一些小工具,解决自己平时的需求,这样可以增加兴趣,C#非常擅长做这块&br&2、购买或试用&a href=&//link.zhihu.com/?target=https%3A//www.jetbrains.com/resharper/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&ReSharper :: The Most Intelligent Extension for Visual Studio&/a&,写代码时照着Reshaper的提示改,可以很快熟悉C#的高级语法&br&举个例子,取Age大于20的User的Name,用循环可以这样做:&br&&div class=&highlight&&&pre&&code class=&language-text&&List&string& names = new List&string&();
for (int i = 0; i & users.C i++)
User u = users[i];
if (u.Age & 20)
names.Add(u.Name);
&/code&&/pre&&/div&可以被resharper格式化成:&br&&div class=&highlight&&&pre&&code class=&language-text&&var names = new List&string&();
for (var i = 0; i & users.C i++)
var u = users[i];
if (u.Age & 20)
names.Add(u.Name);
&/code&&/pre&&/div&这样就知道了var关键字。这时候resharper会提示for循环可以写成这样:&br&&div class=&highlight&&&pre&&code class=&language-text&&var names = new List&string&();
foreach (var u in users)
if (u.Age & 20)
names.Add(u.Name);
&/code&&/pre&&/div&这样就知道了foreach语法。这时候resharper会提示还可以写成这样:&br&&div class=&highlight&&&pre&&code class=&language-text&&var names = users.Where(u =& u.Age & 20).Select(u =& u.Name).ToList();
&/code&&/pre&&/div&这样就知道了LINQ,看LINQ的表达能力多么强大。resharper就像一个随时能给你反馈的老师一样。一旦你学会的这些高级语法,完全可以不再使用resharper的。&br&3、在 &a href=&//link.zhihu.com/?target=https%3A//leetcode.com/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&LeetCode Online Judge&/a& 上刷题,可以练习编程基本功和C#语法,同时对面试有益&br&4、如果做Web的话,不要使用Webform&br&5、遇到问题,调试、&a href=&//link.zhihu.com/?target=https%3A//www.google.com/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Google&/a&(或者一些代理,如&a href=&//link.zhihu.com/?target=http%3A//www.886404.com/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&天外天搜索 - 基于Google的搜索引擎&/a&)、在&a href=&//link.zhihu.com/?target=http%3A//stackoverflow.com/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Stack Overflow&/a&上提问&br&6、没事逛逛&a href=&//link.zhihu.com/?target=https%3A//github.com/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&GitHub · Build software better, together.&/a&,特别是:&br&&a href=&//link.zhihu.com/?target=https%3A//github.com/quozd/awesome-dotnet& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&quozd/awesome-dotnet · GitHub&/a&&br&&a href=&//link.zhihu.com/?target=https%3A//github.com/dotnet& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&.NET Foundation · GitHub&/a&&br&&a href=&//link.zhihu.com/?target=https%3A//github.com/aspnet& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&aspnet · GitHub&/a&&br&例如:&br&如果想参与C#的设计:&br&&a href=&//link.zhihu.com/?target=https%3A//github.com/dotnet/roslyn/issues/2136& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&C# 7 Work List of Features · Issue #2136 · dotnet/roslyn · GitHub&/a&&br&&a href=&//link.zhihu.com/?target=https%3A//github.com/dotnet/roslyn/issues/2134& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&C# Design Meeting Notes for Apr 14, 2015 · Issue #2134 · dotnet/roslyn · GitHub&/a&&br&&a href=&//link.zhihu.com/?target=https%3A//github.com/dotnet/roslyn/issues/2144& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&C# should support indexed property · Issue #2144 · dotnet/roslyn · GitHub&/a&&br&如果想参与.Net框架库的设计:&br&&a href=&//link.zhihu.com/?target=https%3A//github.com/dotnet/corefx/issues/1415& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Propose: new method Enumerable.IndexOf
· Issue #1415 · dotnet/corefx · GitHub&/a&&br&&a href=&//link.zhihu.com/?target=https%3A//github.com/dotnet/corefx/issues/1244& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Add overloads to string trimming · Issue #1244 · dotnet/corefx · GitHub&/a&&br&&a href=&//link.zhihu.com/?target=https%3A//github.com/dotnet/corefx/issues/1151& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&New API for single-precision math · Issue #1151 · dotnet/corefx · GitHub&/a&&br&如果想参与CLR的设计:&br&&a href=&//link.zhihu.com/?target=https%3A//github.com/dotnet/coreclr/issues/430& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Consider reference counter as alternative garbage collector · Issue #430 · dotnet/coreclr · GitHub&/a&&br&&a href=&//link.zhihu.com/?target=https%3A//github.com/dotnet/coreclr/issues/111& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&(Discussion) Lightweight Boxing? · Issue #111 · dotnet/coreclr · GitHub&/a&&br&7、《CLR via C#》是迟早要看的,配合工具&a href=&//link.zhihu.com/?target=http%3A//ilspy.net/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&ILSpy&/a&看,其它C#书没事翻一翻就好了&br&8、其它通用的书:《编码的奥秘》、《编写可读代码的艺术》、《编写高质量代码》、《编译原理》、《程序员的自我修养—链接、装载与库》、《程序员修炼之道:从小工到专家》、《代码大全》、《代码整洁之道》、《算法导论》、《重构.改善既有代码的设计》等&br&9、不要局限在C#或.Net上,C++、node、linux、mysql、js等等,如果感兴趣,都可以玩的,当然也不要局限在语言(咳咳...中文...咳咳)上
下面这些,都是我想对三年前的我说的,部分内容只代表自己的观点,当然你也应该有自己的思考,不要盲从: 1、为自己做一些小工具,解决自己平时的需求,这样可以增加兴趣,C#非常擅长做这块 2、购买或试用
&p&这个问题即好回答又不好回答,基本上一台远程电脑能干啥,vps就能干啥,毕竟vps实际上就是一个远程虚拟机。&/p&&p&来点详细的吧:&/p&&p&1.可以放自己的外汇ea,让vps替我炒外汇,从此躺着睡觉也来钱(妈妈我今天又爆仓啦!)&/p&&p&&br&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-49ddcfaf4d79_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1349& data-rawheight=&528& class=&origin_image zh-lightbox-thumb& width=&1349& data-original=&https://pic2.zhimg.com/v2-49ddcfaf4d79_r.jpg&&&/figure&&p&&br&&/p&&p&2.可以搭建一个网盘,看各种小姐姐;&/p&&figure&&img src=&https://pic3.zhimg.com/v2-613af91fbc8bf8d336de_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&600& data-rawheight=&289& class=&origin_image zh-lightbox-thumb& width=&600& data-original=&https://pic3.zhimg.com/v2-613af91fbc8bf8d336de_r.jpg&&&/figure&&p&我直接同步了我的硬盘,再也不用担心百度网盘里的姐姐们变成8秒了!&/p&&p&教程地址:&a href=&//link.zhihu.com/?target=http%3A//www.vpsdaquan.cn/vpsdajianowncloud.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&vps搭建owncloud - VPS大全&/a& &/p&&p&&br&&/p&&p&3.可以搭建一个邮局。&/p&&p&给别人留邮箱的时候各种装逼:大妹子你看过@&a href=&//link.zhihu.com/?target=http%3A//piyanjiaoyi.com& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&piyanjiaoyi.com&/span&&span class=&invisible&&&/span&&/a& 这种邮箱后缀吗?&/p&&p&当然,胆子肥的还可以去发spam email赚点外快.&/p&&p&&br&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-2ac11c833b109cf28dd635_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&963& data-rawheight=&506& class=&origin_image zh-lightbox-thumb& width=&963& data-original=&https://pic2.zhimg.com/v2-2ac11c833b109cf28dd635_r.jpg&&&/figure&&p&&br&&/p&&p&教程地址:&a href=&//link.zhihu.com/?target=http%3A//www.vpsdaquan.cn/pmtaanzhuang.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&PMTA+OEMPRO安装指南 - VPS大全&/a&&/p&&p&&br&&/p&&p&4.可以挂上国外的挂机软件赚钱&/p&&p&国外有很多挂机联盟,你挂上他们的软件,可以帮别人刷u2b视频排名或者帮一些个人站长做做seo,你自己也能拿到钱(u2b,ggad:老子的意大利炮呢!)&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-138b4dbdf_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&490& data-rawheight=&414& class=&origin_image zh-lightbox-thumb& width=&490& data-original=&https://pic1.zhimg.com/v2-138b4dbdf_r.jpg&&&/figure&&p&(盗图)&/p&&p&&br&&/p&&p&5.可以拿来建网站&/p&&p&建个站,挂上广告联盟的ad,躺在床上数钱还不是美滋滋~~&/p&&p&&a href=&//link.zhihu.com/?target=http%3A//www.vpsdaquan.cn/%25E6%%25E6%E6%E7%25A8%258B%25E4%25BA%2594%25EF%25BC%259A%25E5%25AE%%25A3%2585amh%25E9%259D%25A2%25E6%259D%25BF%25E5%25B9%25B6%25E6%2590%25AD%25E5%25BB%25BA%25E7%25BD%%25AB%2599.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&新手教程五:安装AMH面板并搭建网站 - VPS大全&/a&&/p&&p&&br&&/p&&p&6.魔法上网&/p&&p&不解释,谁用谁知道。&/p&&p&&br&&/p&&p&7.手机免流&/p&&p&注意,这是犯法的!盗窃三大电信运营商的流量是盗窃国有资产罪,进局子前记得准备好开塞露哦!&/p&&p&&br&&/p&&p&8.当黄牛,低价买入高价卖出。&/p&&p&详情请看我专栏文章:&a href=&https://zhuanlan.zhihu.com/p/& class=&internal&&VPS黑话大全 - 知乎专栏&/a&&/p&&p&&br&&/p&&p&9.搭建私服&/p&&p&&br&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-6e986dadcc2c6_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&731& data-rawheight=&455& class=&origin_image zh-lightbox-thumb& width=&731& data-original=&https://pic3.zhimg.com/v2-6e986dadcc2c6_r.jpg&&&/figure&&p&想宰了谁,就宰了谁&/p&&p&同样违法,不解释&/p&&p&10.搭建外服网游加速器&/p&&p&我自己买的日本vps,搭建了个h1z1的加速器,ping从150降低到100左右,成本仅2.5刀每月,比外面卖的加速器便宜多了&/p&&p&&br&&/p&&p&相关阅读:&a href=&https://www.zhihu.com/question//answer/& class=&internal&&&span class=&invisible&&https://www.&/span&&span class=&visible&&zhihu.com/question/2078&/span&&span class=&invisible&&4987/answer/&/span&&span class=&ellipsis&&&/span&&/a&&/p&&p&先写这么多吧,想起来再补充。顺便求个赞!&/p&&p&对vps有兴趣的可以关注我的专栏,不定时送我不用了的vps: &a href=&https://zhuanlan.zhihu.com/VPS-youhuima& class=&internal&&VPS 艹机狂魔&/a&&/p&
这个问题即好回答又不好回答,基本上一台远程电脑能干啥,vps就能干啥,毕竟vps实际上就是一个远程虚拟机。来点详细的吧:1.可以放自己的外汇ea,让vps替我炒外汇,从此躺着睡觉也来钱(妈妈我今天又爆仓啦!) 2.可以搭建一个网盘,看各种小姐姐;我直接同…
&figure&&img src=&https://pic4.zhimg.com/v2-c36c79d0af9f3b7e08979c_b.jpg& data-rawwidth=&1354& data-rawheight=&802& class=&origin_image zh-lightbox-thumb& width=&1354& data-original=&https://pic4.zhimg.com/v2-c36c79d0af9f3b7e08979c_r.jpg&&&/figure&&p&今天咱们要讲的不是一款BIM软件,而是一款有趣的3D体素建模软件。&/p&&p&体素英文名叫Voxel,是把像素风格中的小方块引申到三维空间里,让图像呈现一小块一小块的鲜明风格。比如《我的世界》和最近非常火的《纪念碑谷2》就是这样的风格。&/p&&figure&&img src=&https://pic2.zhimg.com/v2-926fddc36bf4_b.jpg& data-rawwidth=&1088& data-rawheight=&452& class=&origin_image zh-lightbox-thumb& width=&1088& data-original=&https://pic2.zhimg.com/v2-926fddc36bf4_r.jpg&&&/figure&&p&&br&&/p&&p&这款软件叫做MagicaVoxel,你可以用它来还原纪念碑谷的场景,也可以做一些其他有意思的事儿,比如做一个朋友的体素肖像:&/p&&figure&&img src=&https://pic3.zhimg.com/v2-4e819d6a80d4b86abad8_b.jpg& data-rawwidth=&1071& data-rawheight=&578& class=&origin_image zh-lightbox-thumb& width=&1071& data-original=&https://pic3.zhimg.com/v2-4e819d6a80d4b86abad8_r.jpg&&&/figure&&p&&br&&/p&&p&做一个你自己房间的模型:&/p&&figure&&img src=&https://pic1.zhimg.com/v2-6c2fe932cd_b.jpg& data-rawwidth=&800& data-rawheight=&600& class=&origin_image zh-lightbox-thumb& width=&800& data-original=&https://pic1.zhimg.com/v2-6c2fe932cd_r.jpg&&&/figure&&p&&br&&/p&&p&它的光影效果也非常棒,你很难想象这样的图是用一个不到2M的软件做出来的。&/p&&figure&&img src=&https://pic3.zhimg.com/v2-ce0bc905acdcf5e1dbb7_b.jpg& data-rawwidth=&3217& data-rawheight=&1809& class=&origin_image zh-lightbox-thumb& width=&3217& data-original=&https://pic3.zhimg.com/v2-ce0bc905acdcf5e1dbb7_r.jpg&&&/figure&&p&&br&&/p&&p&今天我们要做的,是用它来给BIMBOX做几张海报:&/p&&figure&&img src=&https://pic4.zhimg.com/v2-086c3c5c6a37f292b615_b.jpg& data-rawwidth=&1354& data-rawheight=&802& class=&origin_image zh-lightbox-thumb& width=&1354& data-original=&https://pic4.zhimg.com/v2-086c3c5c6a37f292b615_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-c36c79d0af9f3b7e08979c_b.jpg& data-rawwidth=&1354& data-rawheight=&802& class=&origin_image zh-lightbox-thumb& width=&1354& data-original=&https://pic4.zhimg.com/v2-c36c79d0af9f3b7e08979c_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-3a4342cab56dcbbde2b71_b.jpg& data-rawwidth=&1354& data-rawheight=&802& class=&origin_image zh-lightbox-thumb& width=&1354& data-original=&https://pic3.zhimg.com/v2-3a4342cab56dcbbde2b71_r.jpg&&&/figure&&p&&br&&/p&&p&最后这张,要让二维码可以被扫描:&/p&&figure&&img src=&https://pic4.zhimg.com/v2-499e7c697eeea5a610de0a_b.jpg& data-rawwidth=&970& data-rawheight=&613& class=&origin_image zh-lightbox-thumb& width=&970& data-original=&https://pic4.zhimg.com/v2-499e7c697eeea5a610de0a_r.jpg&&&/figure&&p&&br&&/p&&p&下面是视频教程。&/p&&p&视频教程之基础操作篇:&/p&&a class=&video-box& href=&https://link.zhihu.com/?target=https%3A//v.qq.com/x/cover/u0523apjhug/u0523apjhug.html& target=&_blank& data-video-id=&815936& data-video-playable=&true& data-name=&MagicaVoxcel教学-基础篇.mp4_腾讯视频& data-poster=&https://pic2.zhimg.com/v2-4ad421d43d41bd190f851cd.jpg& data-lens-id=&&&
&img class=&thumbnail& src=&https://pic2.zhimg.com/v2-4ad421d43d41bd190f851cd.jpg&&&span class=&content&&
&span class=&title&&MagicaVoxcel教学-基础篇.mp4_腾讯视频&span class=&z-ico-extern-gray&&&/span&&span class=&z-ico-extern-blue&&&/span&&/span&
&span class=&url&&&span class=&z-ico-video&&&/span&https://v.qq.com/x/cover/u0523apjhug/u0523apjhug.html&/span&
&p&&br&&/p&&p&视频教程之实战篇:&/p&&a class=&video-box& href=&https://link.zhihu.com/?target=https%3A//v.qq.com/x/cover/a05235e5bad/a05235e5bad.html& target=&_blank& data-video-id=&030848& data-video-playable=&true& data-name=&MagicaVoxcel教学——实战篇_腾讯视频& data-poster=&https://pic2.zhimg.com/v2-53cd53e28c2d6aa0ff156a19.jpg& data-lens-id=&&&
&img class=&thumbnail& src=&https://pic2.zhimg.com/v2-53cd53e28c2d6aa0ff156a19.jpg&&&span class=&content&&
&span class=&title&&MagicaVoxcel教学——实战篇_腾讯视频&span class=&z-ico-extern-gray&&&/span&&span class=&z-ico-extern-blue&&&/span&&/span&
&span class=&url&&&span class=&z-ico-video&&&/span&https://v.qq.com/x/cover/a05235e5bad/a05235e5bad.html&/span&
&p&&br&&/p&&p&下面是视频中的重点内容,视频教学说的比图文内容详细,建议你先看视频,以后可以在图文说明里复习。&/p&&h2&基础操作篇&/h2&&p&&b&开始上手:&/b&&/p&&p&软件不需要安装,直接双击就能运行。&/p&&ul&&li&按住鼠标右键:旋转&/li&&li&按住鼠标中键:平移&/li&&li&鼠标滚轮:缩放&/li&&/ul&&p&我们先找到右侧的Edit-Tool-Zero把场景清零,一会我们回来再讲具体功能。&/p&&figure&&img src=&https://pic3.zhimg.com/v2-bdde652ddbd70ddcd8216c_b.jpg& data-rawwidth=&409& data-rawheight=&194& class=&content_image& width=&409&&&/figure&&p&&br&&/p&&p&Size这里能看到三个数字40 40 40,代表我们能画小方块的区域是40块见方的空间,超出这个范围就不能画了。软件单个场景最大允许是126见方,可以每次都把这个范围改到最大,随意画。画完之后保存之前在按Size框右侧的「F」按钮,软件会自动把区域收缩到刚好包住我们模型的大小。&/p&&figure&&img src=&https://pic3.zhimg.com/v2-0eaff917dc2d_b.jpg& data-rawwidth=&1074& data-rawheight=&660& class=&origin_image zh-lightbox-thumb& width=&1074& data-original=&https://pic3.zhimg.com/v2-0eaff917dc2d_r.jpg&&&/figure&&p&&br&&/p&&p&软件基本操作都靠下面这五个面板。&/p&&figure&&img src=&https://pic4.zhimg.com/v2-61c9f937b300d644c5e8eaeb_b.jpg& data-rawwidth=&1083& data-rawheight=&586& class=&origin_image zh-lightbox-thumb& width=&1083& data-original=&https://pic4.zhimg.com/v2-61c9f937b300d644c5e8eaeb_r.jpg&&&/figure&&p&&br&&/p&&ul&&li&颜色面板:控制小方块的颜色&/li&&li&笔刷面板:给不同形状的方块组添加/删除/上色&/li&&li&视图显示:控制地板、边缘线、阴影等东西是否显示&/li&&li&编辑面板:复制旋转阵列等批量操作都在这儿&/li&&li&文件存储面板:把建好的模型存储为文件,或者储存成小零件&/li&&/ul&&p&下面先随便在颜色面板上选则一个颜色,了解一下笔刷面板的功能。&/p&&p&&b&笔刷面板(Brush)&/b&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-dc14a4aa234f30d3fe1bccd_b.jpg& data-rawwidth=&1147& data-rawheight=&566& class=&origin_image zh-lightbox-thumb& width=&1147& data-original=&https://pic4.zhimg.com/v2-dc14a4aa234f30d3fe1bccd_r.jpg&&&/figure&&p&&br&&/p&&p&笔刷是建模的基础,思路就是现在三种笔杆子里挑出一种来,然后给他装上一个笔尖。&/p&&p&&b&三种笔杆子对应的三种模式:&/b&&/p&&p&Attach:增加方块&/p&&p&Erase:删除方块&/p&&p&Paint:给方块上色&/p&&p&&b&六种笔尖对应的是绘制六种不同形状的小方块组:&/b&&/p&&p&L:绘制一条直线&/p&&p&C:以点击处为中心画一层方形或圆形&/p&&p&P:把保存的小模块扔到项目里(组装小零件)&/p&&p&V:自由放置小方块&/p&&p&F:把一个面拉高(类似拉伸功能)&/p&&p&B:以点击处为左上角,画一层方形&/p&&p&&b&笔刷和笔尖可以自由组合,比如:&/b&&/p&&p&Attach+V:自由添加小方块&/p&&p&Erase+L:删除一条直线上的方块&/p&&p&Paint+B:给一个方形区域上色&/p&&p&&b&镜像功能(Mirror)&/b&&/p&&p&沿X、Y、Z某个或多个方向镜像操作,比如点亮X轴镜像,绘制直线:&/p&&figure&&img src=&https://pic4.zhimg.com/v2-cf0c386c8f87a2ceabf755_b.jpg& data-rawwidth=&1001& data-rawheight=&617& data-thumbnail=&https://pic4.zhimg.com/v2-cf0c386c8f87a2ceabf755_b.jpg& class=&origin_image zh-lightbox-thumb& width=&1001& data-original=&https://pic4.zhimg.com/v2-cf0c386c8f87a2ceabf755_r.gif&&&/figure&&p&&br&&/p&&p&&b&轴线功能(Axis)&/b&&/p&&p&让你的操作沿整个被激活的轴线进行,比如激活Y轴,删除一个矩形区域:&/p&&figure&&img src=&https://pic3.zhimg.com/v2-7d1da7ac610bbeaeba3470_b.jpg& data-rawwidth=&912& data-rawheight=&521& data-thumbnail=&https://pic3.zhimg.com/v2-7d1da7ac610bbeaeba3470_b.jpg& class=&origin_image zh-lightbox-thumb& width=&912& data-original=&https://pic3.zhimg.com/v2-7d1da7ac610bbeaeba3470_r.gif&&&/figure&&p&&br&&/p&&p&在Axis下方还有一个选项,随着选择每种笔尖,选项也各不相同,详见视频教程内容。&/p&&p&&b&颜色面板(Palette)&/b&&/p&&figure&&img src=&https://pic2.zhimg.com/v2-31fe3e4bd480d065306f_b.jpg& data-rawwidth=&1215& data-rawheight=&798& class=&origin_image zh-lightbox-thumb& width=&1215& data-original=&https://pic2.zhimg.com/v2-31fe3e4bd480d065306f_r.jpg&&&/figure&&p&&br&&/p&&p&0、1、2、3分别对应四套颜色,其中3号色板是空的,用来自己定义颜色。可以任意修改其中的颜色,也可以保存色板。&/p&&p&软件记录的是颜色在色板中的位置,比如第三行左数第一块是绿色,如果切换到色板2,这个位置变成了粉色,那所有绿色的方块都会跟着变成粉色。&/p&&figure&&img src=&https://pic1.zhimg.com/v2-cd17b4b72a61c226b316b6a2e59b91dc_b.jpg& data-rawwidth=&949& data-rawheight=&547& data-thumbnail=&https://pic1.zhimg.com/v2-cd17b4b72a61c226b316b6a2e59b91dc_b.jpg& class=&origin_image zh-lightbox-thumb& width=&949& data-original=&https://pic1.zhimg.com/v2-cd17b4b72a61c226b316b6a2e59b91dc_r.gif&&&/figure&&p&&br&&/p&&p&注意,如果同样颜色的两个物体需要单独控制材质(比如一个是蓝色的塑料,另一个是蓝色的玻璃),则需要把这两个颜色分开在色板的不同位置,复制颜色的快捷键是在色板上Ctrl+鼠标左键拖动。&/p&&p&自定义色板的时候,在两个颜色之间按住shift+alt拖动鼠标左键,可以拉出一串渐变色。&/p&&figure&&img src=&https://pic1.zhimg.com/v2-eae8f480b8d7cbbaea44f1_b.jpg& data-rawwidth=&453& data-rawheight=&250& data-thumbnail=&https://pic1.zhimg.com/v2-eae8f480b8d7cbbaea44f1_b.jpg& class=&origin_image zh-lightbox-thumb& width=&453& data-original=&https://pic1.zhimg.com/v2-eae8f480b8d7cbbaea44f1_r.gif&&&/figure&&p&&br&&/p&&p&&b&颜色批量控制按键:&/b&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-35ba77f82ed092a6192fdfacbc1b835e_b.jpg& data-rawwidth=&1014& data-rawheight=&518& class=&origin_image zh-lightbox-thumb& width=&1014& data-original=&https://pic3.zhimg.com/v2-35ba77f82ed092a6192fdfacbc1b835e_r.jpg&&&/figure&&p&&br&&/p&&p&&b&&&/b&:拾取你点击处的颜色,后期颜色多了经常找不到那个物体是哪个颜色了,用这个快速找到&/p&&p&&b&-&/b&:删除所有同样颜色的方块&/p&&p&&b&&&/b&:用当前色板上激活的颜色批量替换点击方块的颜色&/p&&figure&&img src=&https://pic1.zhimg.com/v2-0bf5b25a06bd43341fd55_b.jpg& data-rawwidth=&885& data-rawheight=&488& data-thumbnail=&https://pic1.zhimg.com/v2-0bf5b25a06bd43341fd55_b.jpg& class=&origin_image zh-lightbox-thumb& width=&885& data-original=&https://pic1.zhimg.com/v2-0bf5b25a06bd43341fd55_r.gif&&&/figure&&p&&br&&/p&&p&&b&视图显示面板(View)&/b&&/p&&p&这几个按钮控制当前视图显示哪些内容,注意只影响建模界面,不影响最终出图效果。&/p&&figure&&img src=&https://pic4.zhimg.com/v2-cfa4f614a341431abb47a_b.jpg& data-rawwidth=&702& data-rawheight=&287& class=&origin_image zh-lightbox-thumb& width=&702& data-original=&https://pic4.zhimg.com/v2-cfa4f614a341431abb47a_r.jpg&&&/figure&&p&&br&&/p&&p&注意,色板左侧的E和G两个按钮,对应的是这里地板和边缘线的颜色。&/p&&p&&b&编辑面板(Edit)&/b&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-df_b.jpg& data-rawwidth=&1405& data-rawheight=&772& class=&origin_image zh-lightbox-thumb& width=&1405& data-original=&https://pic3.zhimg.com/v2-df_r.jpg&&&/figure&&p&&br&&/p&&p&左侧是选择按钮,左边为移动模型,中间为框选模型,右侧为点选模型。&/p&&p&右侧编辑功能见上图。&/p&&p&注意,移动功能和右侧的编辑功能,默认对整个项目中的所有模型产生影响。而当你用选择工具选择了一部分方块的时候,这些编辑就仅对被选择的物体产生影响。&/p&&p&框选模型和点选模型也有几个特殊选项,详见视频说明。&/p&&p&&b&文件面板(File)&/b&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-1bae73eb49dd_b.jpg& data-rawwidth=&1160& data-rawheight=&626& class=&origin_image zh-lightbox-thumb& width=&1160& data-original=&https://pic4.zhimg.com/v2-1bae73eb49dd_r.jpg&&&/figure&&p&&br&&/p&&p&文件保存没啥好说的,关键是保存的文件可以同时在模块(Pattern)面板出现,保存位置为:MagicaVoxel-0.98.2-win\vox 。激活笔刷Attach和笔尖P的时候,可以在Pattern面板中选择保存的小模型,放置到当前项目中。&/p&&p&放置小模型时,可以按 9 、0 、- 、+ 四个按键旋转放置的方向。&/p&&figure&&img src=&https://pic1.zhimg.com/v2-29173df86dcbf9c3c60ed81ed18279ef_b.jpg& data-rawwidth=&1133& data-rawheight=&658& data-thumbnail=&https://pic2.zhimg.com/v2-29173df86dcbf9c3c60ed81ed18279ef_b.jpg& class=&origin_image zh-lightbox-thumb& width=&1133& data-original=&https://pic2.zhimg.com/v2-29173df86dcbf9c3c60ed81ed18279ef_r.gif&&&/figure&&p&&br&&/p&&p&基础就说到这儿,下面是实战。&/p&&h2&&b&实战渲染篇:&/b&&/h2&&p&&b&海报制作思路&/b&&/p&&p&实际操作中,从零开始建立一整个模型是很费劲的,要找一些偷懒的办法。&/p&&p&制作这组BIMBOX海报的时候,我们想表现一期节目录制的场景,里面有参与录制的几个人、室内物品、一些三维文字和一个二维码画框。&/p&&p&我们的思路用现成的模型改,然后存成Pattern模块再组合到一起。&/p&&p&好在平时搜集整理了大量的现成素材,在里面挑出了一些人物、动物、墙和桌子等东西。&/p&&p&具体的改造过程用的都是基础篇的操作,参考视频教程,在这里不赘述了。&/p&&figure&&img src=&https://pic2.zhimg.com/v2-3ff2fe861f593b3b5a677_b.jpg& data-rawwidth=&1131& data-rawheight=&532& class=&origin_image zh-lightbox-thumb& width=&1131& data-original=&https://pic2.zhimg.com/v2-3ff2fe861f593b3b5a677_r.jpg&&&/figure&&p&&br&&/p&&p&&b&文字和二维码&/b&&/p&&p&文字和二维码是不用在软件里一块一块的堆砌的,软件可以直接导入PNG文件生成三维块,再用面功能拉伸即可。&/p&&p&软件中的一个方块对应的是PNG图片中的一个像素,也就是最大能放126X126这个尺寸的图片,所以第一步就是要把图片变小。&/p&&p&文字转换成像素图片用这个网站:&/p&&figure&&img src=&https://pic2.zhimg.com/v2-d584aac2a36b152a19687dfbeac79ab8_b.jpg& data-rawwidth=&857& data-rawheight=&257& class=&origin_image zh-lightbox-thumb& width=&857& data-original=&https://pic2.zhimg.com/v2-d584aac2a36b152a19687dfbeac79ab8_r.jpg&&&/figure&&p&&br&&/p&&p&选12号字体,宽度100即可。&/p&&p&二维码就必须用Photoshop了,下载好的二维码拽到PS里,按Ctrl+T自由变换,缩放到二维码中每一个方块对应一个像素点即可。注意在缩放的时候一定要把「插值」这一项设置成「临近」,否则缩小的图片是模糊的。&/p&&figure&&img src=&https://pic3.zhimg.com/v2-e05b9cbc01a2_b.jpg& data-rawwidth=&1041& data-rawheight=&716& class=&origin_image zh-lightbox-thumb& width=&1041& data-original=&https://pic3.zhimg.com/v2-e05b9cbc01a2_r.jpg&&&/figure&&p&&br&&/p&&p&文字和二维码图片准备好,直接拖拽到MagicaVoxcel里就能生成模型啦。&/p&&figure&&img src=&https://pic1.zhimg.com/v2-ecdbdc09cc0b786c957389d_b.jpg& data-rawwidth=&1133& data-rawheight=&658& data-thumbnail=&https://pic1.zhimg.com/v2-ecdbdc09cc0b786c957389d_b.jpg& class=&origin_image zh-lightbox-thumb& width=&1133& data-original=&https://pic1.zhimg.com/v2-ecdbdc09cc0b786c957389d_r.gif&&&/figure&&p&&br&&/p&&p&&b&渲染界面(Render)&/b&&/p&&p&点击左上方的Render按钮进入渲染界面,主要功能如下:&/p&&figure&&img src=&https://pic3.zhimg.com/v2-fe129bebc_b.jpg& data-rawwidth=&1388& data-rawheight=&811& class=&origin_image zh-lightbox-thumb& width=&1388& data-original=&https://pic3.zhimg.com/v2-fe129bebc_r.jpg&&&/figure&&p&&br&&/p&&p&&b&形状面板(Shape)&/b&&/p&&p&这一项,控制的是小方块的形状,一共7种:&/p&&figure&&img src=&https://pic4.zhimg.com/v2-951da8cdb98ebdf4d912f3_b.jpg& data-rawwidth=&1297& data-rawheight=&605& class=&origin_image zh-lightbox-thumb& width=&1297& data-original=&https://pic4.zhimg.com/v2-951da8cdb98ebdf4d912f3_r.jpg&&&/figure&&p&&br&&/p&&p&&b&视图面板(View)&/b&&/p&&p&和建模时的视图面板内容差不多,一样可以通过色板旁边的「E」和「G」两个按钮来控制边缘和地面的颜色。区别是,这里的设置会影响最终的效果图。&/p&&figure&&img src=&https://pic1.zhimg.com/v2-dc56e3d5fcb2c7a3d599a0_b.jpg& data-rawwidth=&839& data-rawheight=&257& class=&origin_image zh-lightbox-thumb& width=&839& data-original=&https://pic1.zhimg.com/v2-dc56e3d5fcb2c7a3d599a0_r.jpg&&&/figure&&p&&br&&/p&&p&&b&材质面板(Matter)&/b&&/p&&p&Sel 和All是用来切换材质的影响范围的。Sel控制单独颜色的方块(按住Alt点击想改变颜色的物体可以快速定位颜色),all则是控制全部方块。&/p&&p&每种材质的详细参数就不讲了,拖拽一下就知道效果。注意两点:&/p&&p&玻璃材质只能影响默认形状的方块,如果把方块形状设置成Lego就不能赋予玻璃材质了。&/p&&p&发光材质在白天看不出来,把日光(I-Sun)和天空散射光(I-Sky)拉低可以让灯光更明显。&/p&&figure&&img src=&https://pic1.zhimg.com/v2-7c58f5ebf21_b.jpg& data-rawwidth=&923& data-rawheight=&594& class=&origin_image zh-lightbox-thumb& width=&923& data-original=&https://pic1.zhimg.com/v2-7c58f5ebf21_r.jpg&&&/figure&&p&&br&&/p&&p&&b&相机面板(Camera)&/b&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-f5ae58f573dbc10df424867f_b.jpg& data-rawwidth=&916& data-rawheight=&543& class=&origin_image zh-lightbox-thumb& width=&916& data-original=&https://pic1.zhimg.com/v2-f5ae58f573dbc10df424867f_r.jpg&&&/figure&&p&&br&&/p&&p&这里比较有用的是dof,数值拉高后可以虚化背景,对焦的方式也很简单,直接点击你想保持清晰的部分,其他部分就自动模糊了。&/p&&figure&&img src=&https://pic4.zhimg.com/v2-a3f6468efc75ca807ee51dd2d8be4d0e_b.jpg& data-rawwidth=&629& data-rawheight=&353& class=&origin_image zh-lightbox-thumb& width=&629& data-original=&https://pic4.zhimg.com/v2-a3f6468efc75ca807ee51dd2d8be4d0e_r.jpg&&&/figure&&p&&br&&/p&&p&泛光效果(Bloom)只有场景中有发光的材质时才有效,注意调完数值之后需要点左侧的「&」按钮单独渲染一下才行。&/p&&p&渲染过程很快,看屏幕上方的蓝色进度条走到头就可以了,然后点下方的相机按钮就可以保存图片啦。&/p&&figure&&img src=&https://pic4.zhimg.com/v2-a349f36b3a123d89e28e_b.jpg& data-rawwidth=&716& data-rawheight=&165& class=&origin_image zh-lightbox-thumb& width=&716& data-original=&https://pic4.zhimg.com/v2-a349f36b3a123d89e28e_r.jpg&&&/figure&&p&&br&&/p&&h2&&b&获得Pattern素材:&/b&&/h2&&p&咱们说了在制作模型的时候可以用现成的素材,改一改存成Pattern就能直接调用了。平时我们搜集了很多别人做好的模型,整理成14个文件夹,500多个模型。常用的东西改一改都可以用,也可以看看别人的建模思路。&/p&&figure&&img src=&https://pic1.zhimg.com/v2-0b9a0f0c6ec64d02ee96_b.jpg& data-rawwidth=&683& data-rawheight=&318& class=&origin_image zh-lightbox-thumb& width=&683& data-original=&https://pic1.zhimg.com/v2-0b9a0f0c6ec64d02ee96_r.jpg&&&/figure&&p&&br&&/p&&p&此外,这个Magicavoxcel最新版本的软件,和一款专门用来看模型的MagicaVoxel Viewer,还有一些别人配好的色板文件,我们也都一起打包在一起了。&/p&&p&辛苦做了两期免费教程和图文,给你们个表达赞赏的机会吧——在我们的公众号「BIMBOX」这篇文章下打赏的用户,留下你的邮箱,我们把这两个软件、25个色板、还有500多个模型文件,一起打包发给你。&/p&&p&苹果用户在后台回复「打赏」两个字就会收到打赏二维码啦。&/p&&p&下面是一部分模型的截图:&/p&&figure&&img src=&https://pic3.zhimg.com/v2-568e1c48aac3e_b.jpg& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic3.zhimg.com/v2-568e1c48aac3e_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-4f99bd52b4cbbbb1f84ccc4fc62fcac1_b.jpg& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic4.zhimg.com/v2-4f99bd52b4cbbbb1f84ccc4fc62fcac1_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-eb3aa9bc299e5_b.jpg& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic1.zhimg.com/v2-eb3aa9bc299e5_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-8e0f4c40cd0cf9ceda96d_b.jpg& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic4.zhimg.com/v2-8e0f4c40cd0cf9ceda96d_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-e66a1e7f743db5_b.jpg& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic3.zhimg.com/v2-e66a1e7f743db5_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-e138cee0d05ea0b3faf79ae25465b42c_b.jpg& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic1.zhimg.com/v2-e138cee0d05ea0b3faf79ae25465b42c_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic3.zhimg.com/v2-733f2057cad39f63ec7df7ab2b5cb257_b.jpg& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic3.zhimg.com/v2-733f2057cad39f63ec7df7ab2b5cb257_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/v2-acadf5c32dfc838af70b78_b.jpg& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic1.zhimg.com/v2-acadf5c32dfc838af70b78_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-1f7190eaff95ea0465725c_b.jpg& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic4.zhimg.com/v2-1f7190eaff95ea0465725c_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/v2-9c3b3b9bd29d26b1accde8b5d0e194fd_b.jpg& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic4.zhimg.com/v2-9c3b3b9bd29d26b1accde8b5d0e194fd_r.jpg&&&/figure&&p&&br&&/p&&p&OK,这一期就到这儿,有态度,有深度,BIMBOX,下次见!&/p&&p&&/p&&p&&/p&
今天咱们要讲的不是一款BIM软件,而是一款有趣的3D体素建模软件。体素英文名叫Voxel,是把像素风格中的小方块引申到三维空间里,让图像呈现一小块一小块的鲜明风格。比如《我的世界》和最近非常火的《纪念碑谷2》就是这样的风格。 这款软件叫做MagicaVoxel…
1. 这里只讨论 2014 发布(或开始正式量产)的产品。2013年出现的产品我就不提了,那些从 2013 年跳票到 2014 年底都没有发布的更不会提到(没错,说的就是 Arduino Tre)。&br&2. 小模块之类的产品这里也不会提到。&br&3. Raspberry Pi 之类不算开源的开源产品也不会提到。&br&4. 所有产品仅代表个人意见。&br&5. 于我个人理解,“有一定的影响力” 仅指在各自的圈子的影响力。&br&6. 层出不穷的 3D 打印机也不会提到。&br&——————————————————————&br&&br&1. &a class=& wrap external& href=&//link.zhihu.com/?target=https%3A//greatscottgadgets.com/hackrf/& target=&_blank& rel=&nofollow noreferrer&&HackRF One &/a&&br&支持 GNURadio 的全开源软件无线电 (10MHz - 6GHz)&br&官方描述:&br&&blockquote&HackRF One from Great Scott Gadgets is a Software Defined Radio
peripheral capable of transmission or reception of radio signals
from 10 MHz to 6 GHz.
Designed to enable test and development of
modern and next generation radio technologies, HackRF One is an open
source hardware platform that can be used as a USB peripheral or
programmed for stand-alone operation.&/blockquote&&figure&&img data-rawheight=&280& data-rawwidth=&445& src=&https://pic3.zhimg.com/92f00e9bfab27012d65e_b.jpg& class=&origin_image zh-lightbox-thumb& width=&445& data-original=&https://pic3.zhimg.com/92f00e9bfab27012d65e_r.jpg&&&/figure&&br&HackRF 虽然是2013发布的项目,但其实 HackRF One 2014才生产发布。&br&&br&2. &a class=& wrap external& href=&//link.zhihu.com/?target=http%3A//redpitaya.com/& target=&_blank& rel=&nofollow noreferrer&&Red Pitaya&/a&&br&&b&Red Pitaya 可以让你的手机变成信号发生器,频谱仪,示波器。&/b&&br&&br&官方描述:&br&&blockquote&Red Pitaya is an open-source measurement and control tool
replacing many expensive laboratory instruments.&/blockquote&&figure&&img data-rawheight=&756& data-rawwidth=&640& src=&https://pic1.zhimg.com/e2f22bdcdbeb365fa1e4_b.jpg& class=&origin_image zh-lightbox-thumb& width=&640& data-original=&https://pic1.zhimg.com/e2f22bdcdbeb365fa1e4_r.jpg&&&/figure&&br&3.
&a class=& wrap external& href=&//link.zhihu.com/?target=https%3A//www.kickstarter.com/projects//microview-chip-sized-arduino-with-built-in-oled-di& target=&_blank& rel=&nofollow noreferrer&& MicroView: Chip-sized Arduino with built-in OLED Display&/a&&br&这个小玩意说简单了就是一个 Arduino + OLED。但有趣的地方就是,他会让你爱上编程。&br&&br&官方描述:&br&&blockquote&The MicroView is the first chip-sized Arduino compatible that lets you
see what your Arduino is thinking using a built-in OLED display.
&br&&/blockquote&&figure&&img data-rawheight=&400& data-rawwidth=&620& src=&https://pic4.zhimg.com/f32b9b124ad78dbbd8755f_b.jpg& class=&origin_image zh-lightbox-thumb& width=&620& data-original=&https://pic4.zhimg.com/f32b9b124ad78dbbd8755f_r.jpg&&&/figure&&br&4. &a href=&//link.zhihu.com/?target=https%3A//www.crowdsupply.com/chibitronics/circuit-stickers& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Circuit Stickers&/a&&br&&a class=& wrap external& href=&//link.zhihu.com/?target=http%3A//technolojie.com/& target=&_blank& rel=&nofollow noreferrer&&Jie Qi&/a&(齐洁)是一位教育学家和创客,她做的项目都会让人有动手去做的欲望。&br&&br&官方描述:&br&&blockquote&Circuit stickers are peel-and-stick electronics for crafting circuits. Use them to add electronics to any sticker-friendly surface: paper, fabric, plastic, the sky’s the limit!&br&&/blockquote&&figure&&img data-rawheight=&479& data-rawwidth=&640& src=&https://pic3.zhimg.com/8f8065396cca0de87f153f9fce4bcd7a_b.jpg& class=&origin_image zh-lightbox-thumb& width=&640& data-original=&https://pic3.zhimg.com/8f8065396cca0de87f153f9fce4bcd7a_r.jpg&&&/figure&&br&&figure&&img data-rawheight=&194& data-rawwidth=&640& src=&https://pic1.zhimg.com/878e90ba91aafd8c73a3c8_b.jpg& class=&origin_image zh-lightbox-thumb& width=&640& data-original=&https://pic1.zhimg.com/878e90ba91aafd8c73a3c8_r.jpg&&&/figure&&br&不仅仅是 Circuit Stickers,齐洁做的 &a href=&//link.zhihu.com/?target=http%3A//technolojie.com/pu-gong-ying-tu-dandelion-painting/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Jie Qi
Pu Gong Ying Tu (Dandelion Painting)&/a& 项目更是艺术和电子的完美结合。&br&&figure&&img data-rawheight=&480& data-rawwidth=&640& src=&https://pic2.zhimg.com/608a0e5cac08f42e04773dcab39766f1_b.jpg& class=&origin_image zh-lightbox-thumb& width=&640& data-original=&https://pic2.zhimg.com/608a0e5cac08f42e04773dcab39766f1_r.jpg&&&/figure&&br&5. &a class=& wrap external& href=&//link.zhihu.com/?target=http%3A//www.espruino.com/Pico& target=&_blank& rel=&nofollow noreferrer&&Espruino Pico&/a&&br&Espruino Pico 是一个支持 Javascript 的硬件开发板,相比 Espruino,Pico 版本设计为 U 盘大小。Espruino 比较大的特点是,他的 IDE 是一款 Chrome App,有 Chrome 就可以玩。&br&&a class=& wrap external& href=&//link.zhihu.com/?target=https%3A//www.kickstarter.com/projects/gfw/espruino-pico-javascript-on-a-usb-stick& target=&_blank& rel=&nofollow noreferrer&&Kickstarter && Espruino Pico: JavaScript on a USB Stick by Gordon Williams&/a&&br&&br&官方描述:&br&&blockquote&&p&
It’s a tiny microcontroller board that runs JavaScript, making it easier than ever to control electronics in the real world.&/p&&p&
Espruino Pico has everything you need pre-installed. It can be used from
virtually any device with a USB port so you can get started in seconds.&/p&&/blockquote&&figure&&img data-rawheight=&311& data-rawwidth=&700& src=&https://pic3.zhimg.com/a59c883b88a05ecb737c22_b.jpg& class=&origin_image zh-lightbox-thumb& width=&700& data-original=&https://pic3.zhimg.com/a59c883b88a05ecb737c22_r.jpg&&&/figure&&br&待续……&br&&br&利益相关:Seeedstudio 员工
1. 这里只讨论 2014 发布(或开始正式量产)的产品。2013年出现的产品我就不提了,那些从 2013 年跳票到 2014 年底都没有发布的更不会提到(没错,说的就是 Arduino Tre)。 2. 小模块之类的产品这里也不会提到。 3. Raspberry Pi 之类不算开源的开源产品也…
&figure&&img src=&https://pic4.zhimg.com/v2-92c3a6ea76b0d8a994b6e0_b.jpg& data-rawwidth=&432& data-rawheight=&356& class=&origin_image zh-lightbox-thumb& width=&432& data-original=&https://pic4.zhimg.com/v2-92c3a6ea76b0d8a994b6e0_r.jpg&&&/figure&&p&今天效率君把几年积累的Windows 上的黑科技分享给大家,虽然我已不用Windows 了,但是这些工具真的让你还怀念,如果你时候用Windows,这些工具绝对不该错过,它可以然你的效率大大提升。&/p&&br&&br&&p&Everything&br&&/p&&p&&a href=&http://link.zhihu.com/?target=https%3A//www.voidtools.com/& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&https://www.&/span&&span class=&visible&&voidtools.com/&/span&&span class=&invisible&&&/span&&/a&&/p&&figure&&img src=&http://pic1.zhimg.com/v2-ab4e1b3e945ceffa37a9c_b.png& class=&content_image&&&/figure&&p&Everything 是Windows 上一款文件搜索软件。&/p&&p&只需要你第一次打开,它就会建立索引,之后的使用,不管你是成千上万个软件,还是几百G 的硬盘,Everything 只需几秒就可以检索出你要的文件。&/p&&p&可以你会想:它功能这么强大,一定会很大而且很占内存吧,我只想告诉你,它的一个安装文件不到1M,而且占用内存不到10M,简直是业界良心。&/p&&p&而且它还支持中文。&/p&&br&&br&&p&Wox&/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//www.getwox.com/& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://www.&/span&&span class=&visible&&getwox.com/&/span&&span class=&invisible&&&/span&&/a&&/p&&figure&&img src=&http://pic3.zhimg.com/v2-4eeb86d3f4ad1940f54abbb_b.jpg& class=&content_image&&&/figure&&p&Wox 是一款Windows 快捷启动器辅助工具。&/p&&p&我们都知道Mac 自带Spotlight,还有第三方软件Alfred,简直好用到不要不要了,但是Windows 就尴尬了,打开一个东西要点好几个步骤,搜索一个东西慢的要死,有了Wox 这些都不是问题。&/p&&p&你可以快速打开系统的应用和设置,像控制面板,网络设置。&/p&&p&你可以快速搜索本地文件,而且它还支持模糊搜索,比如你要搜索 网络,你可以只输入wl 即可。&/p&&p&你还可以使用它网页搜索,翻译,everything 插件,还有很多插件可以使用。&/p&&br&&br&&p&Fences&/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//www.stardock.com/products/fences/& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://www.&/span&&span class=&visible&&stardock.com/products/f&/span&&span class=&invisible&&ences/&/span&&span class=&ellipsis&&&/span&&/a&&/p&&figure&&img src=&http://pic4.zhimg.com/v2-eedf86c17292b_b.jpg& class=&content_image&&&/figure&&p&Fences 是一个Windows 桌面管理软件。&/p&&p&它可以在桌面上建立文件夹,将不同的软件整理在一个文件夹内。&/p&&p&而且它还有一个特别棒的功能,双击隐藏桌面的所有图标,这对于有癖好的人随时一个福利。&/p&&p&它还支持虚拟桌面,当你拖拽桌面两侧,它就会进入一个干净的桌面,你可以所以使用。&/p&&br&&br&&p&AutoHotKey&/p&&p&&a href=&http://link.zhihu.com/?target=https%3A//autohotkey.com/& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&https://&/span&&span class=&visible&&autohotkey.com/&/span&&span class=&invisible&&&/span&&/a&&/p&&p&AutoHotKey 是一个自动化软件工具,它可以让你快速制动执行重复性的任务。&/p&&p&听起来好高端的样子,这种事情不是只有程序员干的么?&/p&&p&现在AutoHotKey 也让你有这种能力,你只需要建立自己的脚本。&/p&&p&它会有一些符号代表某些按键,而且你还可以快速打开软件,一下打开好多网页。&/p&&p&当然其他更多黑科技,还需要你去读文档了。&/p&&br&&br&&p&Total Commander&/p&&p&&a href=&http://link.zhihu.com/?target=https%3A//www.ghisler.com/& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&https://www.&/span&&span class=&visible&&ghisler.com/&/span&&span class=&invisible&&&/span&&/a&&/p&&figure&&img src=&http://pic3.zhimg.com/v2-c8f42df9d71dd6d7fb33d705f1dc53ee_b.jpg& class=&content_image&&&/figure&&p&Total Commander 是一个非常强大的Windows 文件资源管理器。强大到无法用语言来形容。&/p&&p&而且它有各种黑科技,对于老司机们可以随意捣鼓。它在一个窗口有两个并列的窗口,你可以执行任意的操作。它有很强大的搜索功能,你可以使用通配符来搜索。它还有快速预览缩略图,它还有批量重命名工具。&/p&&p&你还可以使用它来访问FTP 服务器。它有强大的同步功能,还可以比较不同的内容同步,&/p&&p&Mac 用户觉得自带的Finder 不好用,可以尝试体验Commander One,和Total Commander类似。&/p&&br&&br&&p&SpaceSniffer&/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//www.uderzo.it/main_products/space_sniffer/& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://www.&/span&&span class=&visible&&uderzo.it/main_products&/span&&span class=&invisible&&/space_sniffer/&/span&&span class=&ellipsis&&&/span&&/a&&/p&&figure&&img src=&http://pic4.zhimg.com/v2-76f6caff9ee43eb6dbd5ef_b.jpg& class=&content_image&&&/figure&&p&SpaceSniffer 是一个强大的Windows 磁盘分析工具。&/p&&p&我们都知道Windows 使用久了很多碎片文件,而你又不知道怎么清理。&/p&&p&使用它可以快速分析整个磁盘的分布比例,它会按照各个方格来排布文件,你还可以一键删除不用的大文件。你还可以删除hiberfil.sys。&/p&&br&&br&&p&Clover&/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//cn.ejie.me/& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&cn.ejie.me/&/span&&span class=&invisible&&&/span&&/a&&/p&&p&&figure&&img src=&http://pic3.zhimg.com/v2-26ff55d1fef86b65761f65aeb28ce332_b.jpg& data-rawwidth=&517& data-rawheight=&526& class=&origin_image zh-lightbox-thumb& width=&517& data-original=&http://pic3.zhimg.com/v2-26ff55d1fef86b65761f65aeb28ce332_r.jpg&&&/figure&Clover 是一个Windows 浏览器的一个货站,它可以让你像Chrome 浏览器那样浏览文件。&/p&&p&你可以使用Ctrl+T新开页面,Ctrl+W关闭页面,Ctrl+Tab切换页面,让你的工作效率大大地提升!&/p&&p&而且通过拖拽到书签栏轻松添加书签,再也不用每次都重新打开文件的位置了。&/p&&br&&br&&p&Ditto&/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//ditto-cp.sourceforge.net/& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&ditto-cp.sourceforge.net&/span&&span class=&invisible&&/&/span&&span class=&ellipsis&&&/span&&/a&&/p&&p&&figure&&img src=&http://pic4.zhimg.com/v2-bccf119f239d6f65480ada8f3fbd4fbb_b.png& data-rawwidth=&345& data-rawheight=&246& class=&content_image& width=&345&&&/figure&Ditto 是一个强大的剪切板增强工具,而且它还开源,免费。&/p&&p&它可以把复制的所有内容保存起来,你还可以自定义设置保存的日期和条数。&/p&&p&它更强大的是可以合并粘贴,还支持分组,置顶,搜索功能,还可以通过网络共享剪切板。&/p&&br&&br&&p&CCleaner&/p&&p&&a href=&http://link.zhihu.com/?target=https%3A//www.piriform.com/ccleaner& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&https://www.&/span&&span class=&visible&&piriform.com/ccleaner&/span&&span class=&invisible&&&/span&&/a&&/p&&p&&figure&&img src=&http://pic4.zhimg.com/v2-4bc6bd92fe8e_b.png& data-rawwidth=&683& data-rawheight=&276& class=&origin_image zh-lightbox-thumb& width=&683& data-original=&http://pic4.zhimg.com/v2-4bc6bd92fe8e_r.png&&&/figure&CCleaner 是一个电脑清理工具。&/p&&p&虽然Windows 有很多电脑清理工具,什么360,百度的,我是不推荐你安装。&/p&&p&它可以帮你清理电脑的杂物,它还可以帮你清理注册表,让你的电脑更加快速。&/p&&p&它还能保护你的电脑免受病毒干扰,让你的电脑更安全。&/p&&p&它还可以让你的开机更快速,关闭掉无关紧要的默认启动的软件。&/p&&p&它同时又Android 版本。&/p&&p&它的专业版还有实时监控,定时清理,自动更新等功能。&/p&&br&&br&&p&Listary&/p&&p&&a href=&http://link.zhihu.com/?target=http%3A//www.listary.com/& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://www.&/span&&span class=&visible&&listary.com/&/span&&span class=&invisible&&&/span&&/a&&/p&&p&&figure&&img src=&http://pic4.zhimg.com/v2-d41d00accecd_b.png& data-rawwidth=&344& data-rawheight=&289& class=&content_image& width=&344&&&/figure&Listary 是一个Windows 的强大搜索工具。&/p&&p&它可以快速查找你想要找到的文件,就像Everything 那样。&/p&&p&它还可以快速启动软件,还可以选择应用程序快速打开不同文件。还可以查看最近浏览的文件。&/p&&p&它还可以创建文件和软件的收藏夹,让你快速打开。还可以点击文件右键快速搜索。你还可以自定义搜索引擎快速搜网络上的内容。&/p&&p&想要体验更多功能,它还有专业版。&/p&&br&&br&&blockquote&&p&本文部分参考:&/p&&p&维基百科(&a href=&http://link.zhihu.com/?target=http%3A//zh.wikipedia.org& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&zh.wikipedia.org&/span&&span class=&invisible&&&/span&&/a&)&/p&&p&小众软件(&a href=&http://link.zhihu.com/?target=http%3A//appinn.com& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&appinn.com&/span&&span class=&invisible&&&/span&&/a&)&/p&&p&善用佳软(&a href=&http://link.zhihu.com/?target=http%3A//xbeta.info& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&xbeta.info&/span&&span class=&invisible&&&/span&&/a&)&/p&&/blockquote&&br&&p&发现更多&b&高效率工具&/b&和&b&实用工具App&/b&,欢迎关注我的公众号:&b&高效率工具搜罗&/b&(ID: gongju006)&br&&/p&&figure&&img src=&http://pic2.zhimg.com/affbdc7495_b.jpg& data-rawwidth=&258& data-rawheight=&258& class=&content_image& width=&258&&&/figure&
今天效率君把几年积累的Windows 上的黑科技分享给大家,虽然我已不用Windows 了,但是这些工具真的让你还怀念,如果你时候用Windows,这些工具绝对不该错过,它可以然你的效率大大提升。 Everything Everything 是Windows 上一款文件搜…
&figure&&img src=&https://pic4.zhimg.com/v2-fddba30e61a00bb3cc3d1f4_b.jpg& data-rawwidth=&656& data-rawheight=&408& class=&origin_image zh-lightbox-thumb& width=&656& data-original=&https://pic4.zhimg.com/v2-fddba30e61a00bb3cc3d1f4_r.jpg&&&/figure&&blockquote&&b&导读:&/b&每一个程序员都有一个极客的梦想,Max Braun 就是这么一个人,他将科幻电影里常常出现的智能镜面显示屏变成了现实,从想法的诞生、元部件的购买到原型机的测试,让我们一起看看他是怎么做的!&/blockquote&去年的一些时候,我突然意识到,我想把洗手间那面普通的镜子变成我们在电影里头看到的那种科幻镜子。&p&似乎还没有人在卖我想要的这种产品,不过其中的单独部件却挺容易找到的。最近许多人都曾做过类似的,但我心里想着要和他们不一样。&/p&&p&于是我订购了一个双面镜、一个显示屏和一个控制面板,再加上一堆零部件和一些工艺品。事实上在订购这些零部件之前,已经有了不少牺牲的实验品。但还是让我们看看成品吧,不过还不是最终不改版的完成品。&figure&&img src=&http://pic2.zhimg.com/v2-24c96a28d76bcb8ea7c219_b.jpg& data-rawwidth=&800& data-rawheight=&1197& class=&origin_image zh-lightbox-thumb& width=&800& data-original=&http://pic2.zhimg.com/v2-24c96a28d76bcb8ea7c219_r.jpg&&&/figure&&/p&&p&欢迎来到我的浴室,请原谅小柜子和镜子前那一堆杂乱。&/p&&p&在我的右手边是时间和日期,在我的左手边则是当前天气和 24 小时预报,下方是最近的新闻标题。下图是一张特写:&figure&&img src=&http://pic4.zhimg.com/v2-8d355a3b42f1ef_b.jpg& data-rawwidth=&2000& data-rawheight=&1333& class=&origin_image zh-lightbox-thumb& width=&2000& data-original=&http://pic4.zhimg.com/v2-8d355a3b42f1ef_r.jpg&&&/figure&&/p&&p&除非是多云的天气,不然的话在 UI 上会有颜色配色的。但大部分的文本和图标都是单色的,这样可以防止用户被分散注意力。&/p&&p&UI 这部分的代码,还有天气预报和新闻这方面使用了一些简单的 Android API。&/p&&p&其他方面比如说交通、提醒以及其他的效率工具我用的是 Google Now 的卡片。这个想法是可以让用户不需要与这些 UI 交互,它会自动更新并且它还有一个开放式语音引擎接口。&/p&&figure&&img src=&http://pic1.zhimg.com/v2-cfed377ac6f00_b.jpg& data-rawwidth=&1000& data-rawheight=&667& class=&origin_image zh-lightbox-thumb& width=&1000& data-original=&http://pic1.zhimg.com/v2-cfed377ac6f00_r.jpg&&&/figure&&p&显示器仅有几毫米薄并且嵌入在双向镜玻璃和药柜门之间的夹层中。这样看起来很干净,而且我可以继续使用里面的所有货架空间。这是一个打开了的门,你也可以查看一下边缘:&figure&&img src=&http://pic3.zhimg.com/v2-552e726fddf1db74df7a_b.jpg& data-rawwidth=&1000& data-rawheight=&667& class=&origin_image zh-lightbox-thumb& width=&1000& data-original=&http://pic3.zhimg.com/v2-552e726fddf1db74df7a_r.jpg&&&/figure&&figure&&img src=&http://pic1.zhimg.com/v2-23cdbeb5fdfcb9b249b90a0_b.jpg& data-rawwidth=&1000& data-rawheight=&668& class=&origin_image zh-lightbox-thumb& width=&1000& data-original=&http://pic1.zhimg.com/v2-23cdbeb5fdfcb9b249b90a0_r.jpg&&&/figure&&/p&&p&这个原型机项目仍在进行当中,我也没有足够的时间去做软件开发。上面的 UI 只有几百行代码,我在用不同的设备去测试,从一开始的 &a href=&http://link.zhihu.com/?target=https%3A//www.google.com/chromecast/tv/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Chromecast&/a&,然后是 &a href=&http://link.zhihu.com/?target=https%3A//www.google.com/nexus/player/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Nexus 播放器&/a&,以及最近 &a href=&http://link.zhihu.com/?target=http%3A//www.amazon.com/dp/B00ZVJAF9G& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Fire TV Stick&/a&。&/p&&p&当你看里面的时候是这样的:&figure&&img src=&http://pic1.zhimg.com/v2-da2bae3a4ac_b.jpg& data-rawwidth=&800& data-rawheight=&1197& class=&origin_image zh-lightbox-thumb& width=&800& data-original=&http://pic1.zhimg.com/v2-da2bae3a4ac_r.jpg&&&/figure&&/p&&p&这就是到目前为止这个项目我所完成的进度,希望能把剩余的想法也变成现实。后期我可能会发布一个更详细的制作过程中的照片。敬请期待!&figure&&img src=&http://pic3.zhimg.com/v2-5ea6fc77facea_b.jpg& data-rawwidth=&800& data-rawheight=&534& class=&origin_image zh-lightbox-thumb& width=&800& data-original=&http://pic3.zhimg.com/v2-5ea6fc77facea_r.jpg&&&/figure&&/p&&blockquote&&b&原文:&/b&&a href=&http://link.zhihu.com/?target=https%3A//medium.com/%40maxbraun/my-bathroom-mirror-is-smarter-than-yours-94b21c6671ba%23.4krnyrn3z& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&My Bathroom Mirror Is Smarter Than Yours&/a&&/blockquote&
导读:每一个程序员都有一个极客的梦想,Max Braun 就是这么一个人,他将科幻电影里常常出现的智能镜面显示屏变成了现实,从想法的诞生、元部件的购买到原型机的测试,让我们一起看看他是怎么做的!去年的一些时候,我突然意识到,我想把洗手间那面普通的镜…
这里有一个我维护的相关开源软件的列表Awesome IoT: &a href=&//link.zhihu.com/?target=https%3A//github.com/phodal/awesome-iot& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&GitHub - phodal/awesome-iot: Awesome IoT. A collaborative list of great resources about IoT Framework, Library,
OS, Platform&/a&&br&&br&Awesome IoT&p&A curated list of IoT. Everyone can contribute here!&/p&&ul&&li&&a href=&#framework&&Framework&/a&&/li&&li&&a href=&#library&&Library&/a&&ul&&li&&a href=&#sdk&&SDK&/a&&/li&&li&&a href=&#arduino&&Arduino&/a&&/li&&li&&a href=&#low-level&&low level&/a&&/li&&/ul&&/li&&li&&a href=&#android&&Android&/a&&/li&&li&&a href=&#os&&OS&/a&&/li&&li&&a href=&#platform&&Platform&/a&&/li&&li&&a href=&#apis&&APIs&/a&&/li&&li&&a href=&#middleware&&Middleware&/a&&/li&&li&&a href=&#toolkits-inlucde-non-os&&Toolkits inlucde Non-OS&/a&&/li&&li&&a href=&#data-visualization&&Data visualization&/a&&/li&&li&&a href=&#hardware&&Hardware&/a&&/li&&li&&a href=&#home-automation&&Home automation&/a&&/li&&li&&a href=&#ide&&IDE&/a&&/li&&li&&a href=&#robotics&&Robotics&/a&&/li&&li&&a href=&#others&&Others&/a&&/li&&li&&a href=&#language&&Language&/a&&ul&&li&&a href=&#others&&Others&/a&&/li&&/ul&&/li&&li&&a href=&#protocol-library&&Protocol Library&/a&&ul&&li&&a href=&#mqtt&&MQTT&/a&&/li&&li&&a href=&#spark&&Spark&/a&&/li&&li&&a href=&#messaging&&Messaging&/a&&/li&&/ul&&/li&&li&&a href=&#software&&Software&/a&&/li&&li&&a href=&#tools&&Tools&/a&&/li&&li&&a href=&#resources-websites-projects&&Resources-websites-projects&/a&&ul&&li&&a href=&#website&&WebSite&/a&&/li&&li&&a href=&#blog&&Blog&/a&&/li&&li&&a href=&#github-org&&GitHub Org.&/a&&/li&&li&&a href=&#free-book&&Free Book&/a&&/li&&/ul&&/li&&li&&a href=&#analytics&&Analytics&/a&&/li&&li&&a href=&#others&&Others&/a&&/li&&/ul&Framework&ul&&li&&strong&&a href=&//link.zhihu.com/?target=https%3A//github.com/hybridgroup/cylon& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Cylon ★ 2339 ? 0&/a&&/strong& - JavaScript framework for robotics, physical computing, and the Internet of Things.&/li&&li&&strong&&a href=&//link.zhihu.com/?target=https%3A//github.com/hybridgroup/gobot& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&GoBot ★ 2062 ? 1&/a&&/strong& - Golang framework for robotics, physical computing, and the Internet of Things.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/CommonGarden/Grow-IoT& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Grow IoT ★ 7 ? 7&/a& - is a full javascript based IoT stack with a simple API and basic user interface.&/li&&li&&strong&&a href=&//link.zhihu.com/?target=https%3A//github.com/ni-c/heimcontrol.js& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&heimcontrol.js ★ 1306 ? 4&/a&&/strong& - Home-Automation with node.js and Raspberry PI.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/01org/Intel-iot-services-orchestration-layer& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&IoT SOL ★ 38 ? 0&/a& - The total solution that provides visual graphical programming for developing IoT applications.&/li&&li&&strong&&a href=&//link.zhihu.com/?target=https%3A//github.com/rwaldron/johnny-five& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&johnny-five ★ 6024 ? 0&/a&&/strong& - JavaScript Robotics and IoT programming framework, developed at Bocoup, Firmata Protocol.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/eclipse/kura& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Kura ★ 85 ? 1&/a& - an open-source framework for development of IoT applications&/li&&li&&strong&&a href=&//link.zhihu.com/?target=https%3A//github.com/lelylan/lelylan%23development& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Lelylan ★ 647 ? 1&/a&&/strong& - OpenSSL Source Lightweight Microservices Architecture for the Internet of Things. For developers.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/OpenDevice/OpenDevice& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&OpenDevice ★ 23 ? 8&/a& - Open IoT (Internet Of Things) Platform and Framework.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/JamesBarwell/rpi-gpio.js& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&rpi-gpio.js ★ 221 ? 5&/a& - Control Raspberry Pi GPIO pins with node.js.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/sensorbee/sensorbee& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&SensorBee ★ 54 ? 33&/a& - Lightweight stream processing engine for IoT&/li&&li&&strong&&a href=&//link.zhihu.com/?target=https%3A//github.com/serverless/serverless& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Serverless ★ 7951 ? 0&/a&&/strong& - Serverless is the application framework for building web, mobile and IoT applications exclusively on Amazon Web Services' Lambda and API Gateway.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/PandoCloud/pando-cloud& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Pando Cloud&/a& - is the cloud part of Pando IoT solution. It's made of a bunch of tools, protocols and frameworks below: Pando Cloud, Pando Embeded Framework, Pando Protocol as so on.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/vmware/liota& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Liota&/a& - is an open source offering for IoT solution developers and resides primarily on IoT gateways.&/li&&/ul&LibrarySDK&ul&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/aws/aws-iot-device-sdk-arduino-yun& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&AWS IoT Arduino Yún SDK ★ 63 ? 4&/a& - SDK for connecting to AWS IoT from an Arduino Yún.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/Azure/azure-iot-gateway-sdk& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Azure IoT Gateway SDK ★ 26 ? 2&/a& - contains the infrastructure and modules to create IoT gateway solutions.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/hybridgroup/cylon-intel-iot& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Cylon.js For Intel IoT ★ 29 ? 40&/a& - is a JavaScript framework for robotics, physical computing, and the Internet of Things (IoT).&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/spark/electron& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Electron ★ 41 ? 16&/a& - The Electron is a tiny cellular development kit based around U-Blox's SARA U-series (3G) or G-series (2G) cellular modem module and a STM32F205 ARM Cortex M3 microcontroller.&/li&&li&&strong&&a href=&//link.zhihu.com/?target=https%3A//github.com/esp8266/Arduino& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&ESP8266 Arduino core ★ 2588 ? 0&/a&&/strong& - Arduino core for ESP8266 WiFi chip.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/Azure/azure-iot-sdks& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Microsoft Azure IoT SDK ★ 203 ? 1&/a& - SDKs for a variety of languages and platforms that help connect devices to Microsoft Azure IoT services.&/li&&/ul&Arduino&ul&&li&&strong&&a href=&//link.zhihu.com/?target=https%3A//github.com/bblanchon/ArduinoJson& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&ArduinoJson ★ 873 ? 0&/a&&/strong& - An elegant and efficient JSON library for embedded systems.&/li&&li&&strong&&a href=&//link.zhihu.com/?target=https%3A//github.com/amperka/ino& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Ino ★ 874 ? 1&/a&&/strong& - Ino is a command line toolkit for working with Arduino hardware.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/gioblu/PJON& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&PJON ★ 427 ? 4&/a& - Digital communication framework for Arduino and IOT.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/ms-iot/remote-wiring& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Windows Remote Arduino ★ 98 ? 13&/a& - Remote &Arduino Wiring& interface for Windows 8.1, Windows Phone 8.1 and Windows 10. Used to control an Arduino from a Universal Windows Platform application.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/WiringPi/WiringPi& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&WiringPi ★ 455 ? 11&/a& - Gordon's Arduino wiring-like WiringPi Library for the Raspberry Pi.&/li&&/ul&low level&ul&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/bluekitchen/btstack& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&btstack ★ 151 ? 1&/a& - Dual-mode Bluetooth stack, with small memory footprint.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/emqtt/CocoaMQTT& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&CocoaMQTT ★ 210 ? 0&/a& - MQTT for iOS and OS X written with Swift.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/goiot/devices& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Devices&/a& - Suite of libraries for IoT devices (written in Go).&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/cesanta/krypton& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&krypton ★ 7 ? 35&/a& - Embedded TLS/DTLS library, source and binary compatible OpenSSL subset&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/Samsung/libtuv& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&libtuv ★ 19 ? 17&/a& - Asynchronous I/O for IoT.js and embedded system.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/dpjanes/node-iotdb& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&node-iotdb ★ 19 ? 60&/a& - Easily control the Internet of Things using Semantics.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/trifork/secure-device-grid& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Secure Device Grid ★ 4 ? 20&/a& - Secure device-to-device communication solution for IOT.&/li&&li&&strong&&a href=&//link.zhihu.com/?target=https%3A//github.com/simbody/simbody& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&simbody ★ 540 ? 0&/a&&/strong& - High-performance C++ multibody dynamics/physics library for simulating articulated biomechanical and mechanical systems like vehicles, robots, and the human skeleton.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/solettaproject/soletta& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Soletta ★ 96 ? 2&/a& - Soletta Project is a framework for making IoT devices. With Soletta Project's libraries developers can easily write software for devices that control actuators/sensors and communicate using standard technologies. &/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/pellepl/spiffs& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&SPIFFS ★ 174 ? 0&/a& - Wear-leveled SPI flash file system for embedded devices.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/adamdunkels/uip& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&uIP ★ 246 ? 3&/a& - uIP is a very small implementation of the TCP/IP stack.&/li&&li&&a href=&//link.zhihu.com/?target=https%3A//github.com/wifidog/wifidog-gateway& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&WifiDog ★ 291 ? 1&/a& - a compl}

我要回帖

更多关于 oem软件是什么意思 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信