概 述
无线供电技术(无线充电)可以让接收端隔着空气、纸张或者塑料外壳等就能实现电能的传输,我们的无线供电采用“磁耦合共振”这种 新技术所消耗的电能只有传统电磁感应供电技术的百万分之一,当发射端通电时,它并不会向外发射电磁波,而只是在周围形成一个非辐射 的磁场。这个磁场用来和接收端联络,激发接收端的共振, 从而以很小的消耗为代价来传输能量。在这项技术中,磁场的强度将不过和地 球磁场强度相似,人们不用担心这种技术会对自己的身体和其他设备产生不良影响。
本模块采用最新研制成功的大电流无线供电芯片设计而成,电路最为简单,USB 5V低压电源供电的情况下也能在接收感应输出5V/1A 的电流,如果接收加上整流和稳压电路部分的损耗,发射传输效率高达百分之九十。
产品参数
输入电压:5V
输出电压:5V
最大输出电流:1A
发射线圈:外径43mm,内径20mm,厚度2.3mm
接收线圈::外径43mm,内径20mm,厚度2.3mm
正常使用距离:2~10mm
产品应用示例
示例代码
/******** start code ********/
/* Sweep
by BARRAGAN <http://barraganstudio.com>
This example code is in the public domain.
modified 8 Nov 2013
by Scott Fitzgerald
http://arduino.cc/en/Tutorial/Sweep
*/
#include <Servo.h>
Servo myservo; // create servo object to control a servo
// twelve servo objects can be created on most boards
int pos = 0; // variable to store the servo position
void setup()
{
myservo.attach(9); // attaches the servo on pin 9 to the servo object
}
void loop()
{
for(pos = 0; pos <= 180; pos += 1) // goes from 0 degrees to 180 degrees
{ // in steps of 1 degree
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15ms for the servo to reach the position
}
for(pos = 180; pos>=0; pos-=1) // goes from 180 degrees to 0 degrees
{
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15ms for the servo to reach the position
}
}
/******** end code ********/