准备的工具:
1.Arduino IDE :https://www.arduino.cc(下载安装)
2.一台云主机(包含域名)
3.一个萤石云摄像头(一定要萤石云的)
4.ESP32开发板
5.S3003舵机
6.杜邦线若干
7.逗猫棒
8.Arduino舵机库:https://github.com/arduino-libraries/Servo
9.一个能用的DDNS
预览地址:http://pan.myzhazha.xyz:11452
首先,下载安装Arduino IDE并安装
打开Arduino IDE选择文件>首选项>附加开发板管理器网址 右侧的小图标
填入https://dl.espressif.com/dl/package_esp32_index.json
然后选择工具>开发板>开发板管理器
等它下载完索引之后在搜索框输入ESP32然后安装
把下载好的Arduino舵机库文件夹复制到电脑C:\Users\用户名\Documents\Arduino\libraries\文件夹下,然后重新打开Arduino IDE
打开Arduino IDE之后把预设的代码删除,把以下代码复制到Arduino IDE里、
注意把wifi名称和密码改为你自己的
#include
const int servoPin = 13; /* 设置控制舵机信号引脚为D13 */
const char* ssid = "WIFI-SSID"; /* 你的wifi名称,不能为中文 */
const char* password = "password"; /*你的wifi密码 */
int dutyCycle = 0;
//int position1 = 0;
/* Setting PWM properties */
const int PWMFreq = 50;
const int PWMChannel = 0;
const int PWMResolution = 8;
const int MAX_DUTY_CYCLE = (int)(pow(2, PWMResolution) - 1);
WiFiServer espServer(80); /* Instance of WiFiServer with port number 80 */
/* 80 is the Port Number for HTTP Web Server */
/* A String to capture the incoming HTTP GET Request */
String request;
void setup()
{
Serial.begin(115200);
ledcSetup(PWMChannel, PWMFreq, PWMResolution);
/* Attach the LED PWM Channel to the GPIO Pin */
ledcAttachPin(servoPin, PWMChannel);
ledcWrite(PWMChannel, dutyCycle);
Serial.print("\n");
Serial.print("Connecting to: ");
Serial.println(ssid);
WiFi.mode(WIFI_STA); /* Configure ESP32 in STA Mode */
WiFi.begin(ssid, password); /* Connect to Wi-Fi based on the above SSID and Password */
while(WiFi.status() != WL_CONNECTED)
{
Serial.print("*");
delay(100);
}
Serial.print("\n");
Serial.print("Connected to Wi-Fi: ");
Serial.println(WiFi.SSID());
delay(100);
/* The next four lines of Code are used for assigning Static IP to ESP32 */
/* Do this only if you know what you are doing */
/* You have to check for free IP Addresses from your Router and */
/* assign it to ESP32 */
/* If you are comfortable with this step, */
/* please un-comment the next four lines and make necessary changes */
/* If not, leave it as it is and proceed */
//IPAddress ip(192,168,1,6);
//IPAddress gateway(192,168,1,1);
//IPAddress subnet(255,255,255,0);
//WiFi.config(ip, gateway, subnet);
delay(2000);
Serial.print("\n");
Serial.println("Starting ESP32 Web Server for Servo Control...");
espServer.begin(); /* Start the HTTP web Server */
Serial.println("ESP32 Servo Web Server Started");
Serial.print("\n");
Serial.print("The URL of ESP32 Servo Web Server is: ");
Serial.print("http://");
Serial.println(WiFi.localIP());
Serial.print("\n");
Serial.println("Use the above URL in your Browser to access ESP32 Servo Web Server\n");
}
void loop()
{
WiFiClient client = espServer.available(); /* Check if a client is available */
if(!client)
{
return;
}
Serial.println("New Client!!!");
boolean currentLineIsBlank = true;
while (client.connected())
{
if (client.available())
{
char c = client.read();
request += c;
Serial.write(c);
/* If you've gotten to the end of the line (received a newline */
/* character) and the line is blank, the http request has ended, */
/* so you can send a reply */
if (c == '\n' && currentLineIsBlank)
{
client.println("HTTP/1.1 200 OK");
client.println("Content-type:text/html");
client.println("Connection: close");
client.println();
client.println("");
client.println("");
client.println("");
client.println("");
/* CSS Styling for Text and Slider */
client.println("");
client.println("");
/*Actual Web Page */
client.println("逗猫棒
");
client.println("在线逗猫棒
");
client.println("");
client.println("角度:
");
client.println("");
client.println("");
/* The request will be in the form of
* GET /servovalue=143 /HTTP/1.1*/
if(request.indexOf("GET /servovalue=") != -1)
{
int position1 = request.indexOf('='); /* Find out the position of '=' in the request string */
String angleStr = request.substring(position1+1); /* Next 2/3 characters inform the desired angle */
int angleValue = angleStr.toInt();
dutyCycle = map(angleValue, 0, 180, 5, 32);
ledcWrite(PWMChannel, dutyCycle);
}
client.println();
break;
}
if(c == '\n')
{
currentLineIsBlank = true;
}
else if(c != '\r')
{
currentLineIsBlank = false;
}
//client.print("\n");
}
}
delay(1);
request = "";
//client.flush();
client.stop();
Serial.println("Client disconnected");
Serial.print("\n");
}
然后选择文件-保存,随便保存到一个位置
保存后选择
工具>开发板>ESP32 Arduino>ESP32 Dev Module
此时把ESP32模组插上电脑并装好串口驱动,然后在工具>端口选择你的ESP32模组所在的端口号
然后点击图中的图标进行固件编译上传
在下方的窗口等待进度完成,完成后断开USB连接并插到充电头上(舵机启动时可能会造成电脑USB损坏)
此时把你的舵机的VCC端连接到ESP32模组的VIN引脚,GND连接到GND引脚,舵机信号引脚连接到D13引脚
强烈建议舵机使用独立供电!否则容易烧毁ESP32模组的电源电路
登录你的路由器后台,查看连接的设备,找到名为espressif的设备,看一下IP地址是多少,然后在浏览器里输入该IP地址并访问,就进入到了舵机的控制页面
此时点击滑动条查看舵机是否转动,转动说明正常,不转动检查线路连接是否错误
然后把该ESP32模组的页面使用DDNS和端口映射,映射到公网,注意端口不要太小(最好10000以上)
新建一个文本文件,把以下内容复制进去
逗猫棒
逗猫棒
实时画面(延时1s)
角度: 78
开放时间:周一~周六 上午9:00~12:00 下午 14:00~18:00
更多逗猫玩法正在开发中,敬请期待...
在线逗猫棒by:小渣渣
将准备好的萤石摄像头绑定手机并在摄像头设置里关闭视频加密
关闭后访问萤石云开放平台注册成为个人开发者
萤石云开放平台地址:https://open.ys7.com/
注册成共后进入左侧的我的账号>应用信息>创建应用
应用名称随便写
行业宠物关爱
勾选:我已购买软件,无需自行开发
软件名称随便写
然后进入我的资源>设备列表,此时应该能看到绑定的摄像头,点击右侧的监控地址
在打开的页面选择:前往轻应用视频学习了解
在打开的页面选择下方的选择设备
按照要求填入信息
建议播放类型改为预览,清晰度流畅,播放器模板选择极简版
提交后右侧会出现代码示例,把iframe标签里的代码复制并替换到刚才的index.html文件里的iframe标签里
注意:此处的AccessToken的值每7天萤石云开放平台会自动更改一次,所以每到7天请自行更改,或者自己写脚本进行自动更改,萤石云开放平台有详细的接口调用文档
!替换](https://upload-images.jianshu.io/upload_images/4596711-a12e822a50a5a0f4.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/720)
注意此处要把width的值改为720, height的值改为405
然后把index.html文件的此处的地址改为你的ESP32模组的地址DDNS映射之后的域名+端口
下载该js文件
链接:https://pan.baidu.com/s/1uRNTodbiLCislj-t7YVk0A
提取码:2333
在你的WEB服务器里创建一个文件夹专门放置该网页,把上面网盘里的文件下下载并解压,在网页文件夹里创建js文件夹,把jquery-3.6.0.min.js文件上传进去,再把index.html文件上传到与js文件夹同一目录
上传完成后使用浏览器打开你的WEB服务器地址查看能否正常访问,摄像头画面是否正常加载,舵机控制是否正常
(最好使用手机+数据流量来验证)
所有功能都正常就把逗猫棒绑在舵机上面并把舵机和摄像头安装在合适的位置
我是使用3D打印打印了一个舵机支架绑在了桌子腿上
3D模型下载链接
链接:https://pan.baidu.com/s/1XZFJNT7_v9iZkD0l1SiTQA
提取码:2333