当前位置:   article > 正文

一个小型的物联网实验,让stm32实验板和Android studio写的APP同时连接上mqtt服务器实现远程控制实验板状态_app开发android studio 连接stm32单片机

app开发android studio 连接stm32单片机

目录

一、前言

二、实验工具

1.野火F103开发板

 2.MQTT代理工具mqtt.fx

 三、安卓APP代码 

1.建立工程

2.导入Java jar包

3.布局文件activity_main

4.Mainactivity

5、配置联网权限

6.测试APP

 7.导出apk安装包

 四、STM32实验板代码

1.main函数

2.esp8266

 3.onenet

 4.小总结

五、测试

1.测试app与mqtt的连接状态

2.将app与实验板同时连接mqtt服务器,实现远程控制

 六、总结


一、前言

这其实就是一个简单的物联网小型实验,重要的是要理解其基本原理,如果不理解的话不清楚要从哪里下手。这个实验就是让APP和STM32实验板都连接网络的前提下,同时能连接到mqtt服务器,实现app远程控制实验板的状态。该实验可以实现以下内容:

  1. 实现STM32控制LED灯显示7种颜色显示。
  2. 实现STM32控制蜂鸣器响和停。
  3. 实现STM32通过NTC传感器测量温度。
  4. 实现STM32通过串口调试助手显示温度。
  5. 实现STM32控制ESP8266连接WIFI路由器
  6. 实现STM32成功连接MQTT服务器
  7. 实现STM32成功发布MQTT温度主题
  8. 实现STM32成功订阅MQTT控制量主题
  9. 实现手机APP显示温度。
  10. 实现手机APP控制LED灯显示不同颜色

首先就是要开发一个app,可以用很多语言写APP,我这里用的是Android语言(基础知识不牢的用Android studio写比较难,安卓代码简直就是又臭又长,学过前端的可以用HBuilder写),app里面添加相关的控件以及点击事件 。 

再者就是用keil5写实验板的代码,单片机知识不硬的建议直接按照我下面提到的方法更改相关内容就可以了,因为实在太难啦!

二、实验工具

这里指的是我用到的实验用具,也可以灵活多变,不一定要跟我的一模一样。

1.野火F103开发板

这个板简直就是太适合嵌入式开发初学者

 2.MQTT可视化工具mqtt.fx

 三、安卓APP代码 

1.建立工程

点击左上角File,然后new Project建立新工程

 语言选择Java,不要选错了

2.导入Java jar包

链接:百度网盘 请输入提取码

 方法自己去百度一下,网上的教程很详细。

3.布局文件activity_main

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".MainActivity"
  9. android:background="@drawable/cxk"
  10. >
  11. <LinearLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:orientation="horizontal"
  15. android:layout_marginTop="10dp">
  16. <TextView
  17. android:id="@+id/m_temp"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:text="当前温度:"
  21. android:textColor="@color/black"
  22. android:textSize="20sp"
  23. android:layout_marginLeft="25dp"/>
  24. <TextView
  25. android:id="@+id/temp_tv"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:text=""
  29. android:textSize="20sp"
  30. android:textColor="@color/black"/>
  31. </LinearLayout>
  32. <LinearLayout
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. android:padding="5dp"
  36. android:layout_marginTop="10dp"
  37. android:layout_marginLeft="25dp">
  38. <TextView
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:text="MQTT连接状态:"
  42. android:textColor="@color/black"
  43. android:textSize="20sp" />
  44. <TextView
  45. android:id="@+id/m_mqtt"
  46. android:layout_width="wrap_content"
  47. android:layout_height="wrap_content"
  48. android:text=""
  49. android:textColor="@color/black"
  50. android:textSize="20sp" />
  51. </LinearLayout>
  52. <LinearLayout
  53. android:layout_width="match_parent"
  54. android:layout_height="wrap_content"
  55. android:padding="5dp"
  56. android:layout_marginTop="10dp"
  57. android:layout_marginLeft="25dp">
  58. <TextView
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:text="实验板状态:"
  62. android:textColor="@color/black"
  63. android:textSize="20sp" />
  64. <TextView
  65. android:id="@+id/Light_status"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. android:text=""
  69. android:textColor="@color/橙红色"
  70. android:textSize="20sp" />
  71. </LinearLayout>
  72. <LinearLayout
  73. android:layout_width="match_parent"
  74. android:layout_height="460dp"
  75. android:layout_marginLeft="25dp"
  76. android:layout_marginRight="25dp"
  77. android:orientation="horizontal">
  78. <LinearLayout
  79. android:layout_width="match_parent"
  80. android:layout_height="392dp"
  81. android:layout_marginTop="60dp"
  82. android:orientation="vertical">
  83. <LinearLayout
  84. android:layout_width="match_parent"
  85. android:layout_height="30dp">
  86. <TextView
  87. android:layout_width="wrap_content"
  88. android:layout_height="wrap_content"
  89. android:text="灯按钮"
  90. android:textSize="20sp" />
  91. </LinearLayout>
  92. <LinearLayout
  93. android:layout_width="match_parent"
  94. android:layout_height="60dp"
  95. android:layout_marginTop="5dp">
  96. <Button
  97. android:id="@+id/off"
  98. android:layout_width="wrap_content"
  99. android:layout_height="match_parent"
  100. android:layout_weight="1"
  101. android:text="关灯" />
  102. <Button
  103. android:id="@+id/red"
  104. android:layout_width="wrap_content"
  105. android:layout_height="match_parent"
  106. android:layout_weight="1"
  107. android:text="红灯" />
  108. </LinearLayout>
  109. <LinearLayout
  110. android:layout_width="match_parent"
  111. android:layout_height="60dp"
  112. android:layout_marginTop="5dp">
  113. <Button
  114. android:id="@+id/lv"
  115. android:layout_width="wrap_content"
  116. android:layout_height="match_parent"
  117. android:layout_weight="1"
  118. android:text="绿灯" />
  119. <Button
  120. android:id="@+id/blue"
  121. android:layout_width="wrap_content"
  122. android:layout_height="match_parent"
  123. android:layout_weight="1"
  124. android:text="蓝灯" />
  125. </LinearLayout>
  126. <LinearLayout
  127. android:layout_width="match_parent"
  128. android:layout_height="60dp"
  129. android:layout_marginTop="5dp">
  130. <Button
  131. android:id="@+id/red_blue"
  132. android:layout_width="wrap_content"
  133. android:layout_height="match_parent"
  134. android:layout_weight="1"
  135. android:text="紫灯" />
  136. <Button
  137. android:id="@+id/red_lv"
  138. android:layout_width="wrap_content"
  139. android:layout_height="match_parent"
  140. android:layout_weight="1"
  141. android:text="黄灯" />
  142. </LinearLayout>
  143. <LinearLayout
  144. android:layout_width="match_parent"
  145. android:layout_height="60dp"
  146. android:layout_marginTop="5dp">
  147. <Button
  148. android:id="@+id/lv_blue"
  149. android:layout_width="wrap_content"
  150. android:layout_height="match_parent"
  151. android:layout_weight="1"
  152. android:text="青灯" />
  153. <Button
  154. android:id="@+id/red_lv_blue"
  155. android:layout_width="wrap_content"
  156. android:layout_height="match_parent"
  157. android:layout_weight="1"
  158. android:text="橙灯" />
  159. </LinearLayout>
  160. <LinearLayout
  161. android:layout_width="150dp"
  162. android:layout_height="30dp"
  163. android:layout_marginTop="5dp">
  164. <TextView
  165. android:layout_width="wrap_content"
  166. android:layout_height="wrap_content"
  167. android:text="蜂鸣器开关按钮"
  168. android:textSize="20sp" />
  169. </LinearLayout>
  170. <LinearLayout
  171. android:layout_width="match_parent"
  172. android:layout_height="60dp"
  173. android:layout_marginTop="5dp">
  174. <Button
  175. android:id="@+id/fmq_on"
  176. android:layout_width="wrap_content"
  177. android:layout_height="match_parent"
  178. android:layout_weight="1"
  179. android:text="开启" />
  180. <Button
  181. android:id="@+id/fmq_off"
  182. android:layout_width="wrap_content"
  183. android:layout_height="match_parent"
  184. android:layout_weight="1"
  185. android:text="关闭" />
  186. </LinearLayout>
  187. </LinearLayout>
  188. </LinearLayout>
  189. <LinearLayout
  190. android:layout_width="match_parent"
  191. android:layout_height="wrap_content"
  192. android:orientation="horizontal"
  193. android:layout_marginTop="2dp"
  194. android:layout_marginLeft="25dp"
  195. android:layout_marginRight="25dp"
  196. >
  197. <TextView
  198. android:id="@+id/New"
  199. android:layout_width="match_parent"
  200. android:layout_height="40dp"
  201. android:layout_marginTop="5dp"
  202. android:textColor="@color/紫罗兰"
  203. android:textSize="30dp"
  204. />
  205. </LinearLayout>
  206. </LinearLayout>

布局文件效果图:

 别说了,我是ikun!!!!!!其实当时想放打篮球的。

如果在布局文件里不更改themes.xml模块代码的话,这些按键的颜色只能是紫色,像下面这样子,所以很影响各位家人的才华发展,起码需要涂个黑色背带裤。

所以我们需要打开项目下的values里面的themes.xml

 把 parent="Theme.MaterialComponents.DayNight.DarkActionBar"最后的DarkActionBar换成NoActionBar.Bridge,即parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge"

 这样就可以随意修改按钮的背景颜色啦!

最后给大家个福利,就是几个常用颜色的代码,把这段代码复制到valus文件下的colors.xml

代码如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <color name="black">#FF000000</color>
  4. <color name="white">#FFFFFFFF</color>
  5. <color name="粉色">#FFC0CB</color>
  6. <color name="紫罗兰">#EE82EE</color>
  7. <color name="靛青">#4B0082</color>
  8. <color name="矢车菊的蓝色">#6495ED</color>
  9. <color name="适中的蓝色">#0000CD</color>
  10. <color name="深蓝色">#00008B</color>
  11. <color name="石板灰">#708090</color>
  12. <color name="青色">#00FFFF</color>
  13. <color name="猩红">#DC143C</color>
  14. <color name="军校蓝">#5F9EA0</color>
  15. <color name="蓝色">#0000FF</color>
  16. <color name="水绿色">#00FFFF</color>
  17. <color name="绿玉">#7FFFAA</color>
  18. <color name="绿色">#00FF00</color>
  19. <color name="黄色">#FFFF00</color>
  20. <color name="橙红色">#FF4500</color>
  21. <color name="棕色">#A52A2A</color>
  22. </resources>

4.Mainactivity

代码如下:这是Mainactivity里面的全部代码,建议不要全部复制进去,会出错,按下面的方法慢慢敲,写完感觉自己就懂得差不多,之所以发是因为下面的方法写得有点乱了,所以发全部代码出来。

  1. package com.example.option;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.annotation.SuppressLint;
  4. import android.os.Bundle;
  5. import android.os.Handler;
  6. import android.os.Looper;
  7. import android.os.Message;
  8. import android.text.Html;
  9. import android.text.TextUtils;
  10. import android.text.method.LinkMovementMethod;
  11. import android.view.View;
  12. import android.widget.Button;
  13. import android.widget.TextView;
  14. import android.widget.Toast;
  15. import org.eclipse.paho.client.mqttv3.IMqttDeliveryToken;
  16. import org.eclipse.paho.client.mqttv3.MqttCallback;
  17. import org.eclipse.paho.client.mqttv3.MqttClient;
  18. import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
  19. import org.eclipse.paho.client.mqttv3.MqttException;
  20. import org.eclipse.paho.client.mqttv3.MqttMessage;
  21. import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence;
  22. import java.util.concurrent.Executors;
  23. import java.util.concurrent.ScheduledExecutorService;
  24. import java.util.concurrent.TimeUnit;
  25. public class MainActivity extends AppCompatActivity {
  26. public static MqttClient mMqClint;
  27. private ScheduledExecutorService scheduler;
  28. private MqttClient client;
  29. private Handler handler;
  30. private TextView temp_show;
  31. private TextView mqtt_show;
  32. private TextView led_show;
  33. private TextView textView;
  34. private String host = "tcp://mqtt.qzyuehua.cn"; // TCP协议
  35. private String userName = "daluo";
  36. private String passWord = "daluo1";
  37. private String mqtt_id = "daluo2";
  38. private String mqtt_sub_topic = "123456/stm32";
  39. private String mqtt_pub_topic = "123456/app";
  40. @Override
  41. protected void onCreate(Bundle savedInstanceState) {
  42. super.onCreate(savedInstanceState);
  43. setContentView(R.layout.activity_main);
  44. Mqtt_init();
  45. startReconnect();
  46. temp_show = findViewById(R.id.temp_tv);
  47. mqtt_show = findViewById(R.id.m_mqtt);
  48. led_show =findViewById(R.id.Light_status);
  49. textView = (TextView)this.findViewById(R.id.New);
  50. String html = "全民制作人们,大家好,我是练习时长两年半的个人练习生蔡徐坤,喜欢唱、跳、rap、篮球,\n" +
  51. " music!";
  52. CharSequence charSequence = Html.fromHtml(html);
  53. textView.setText(charSequence);
  54. textView.setMovementMethod(LinkMovementMethod.getInstance());
  55. textView.setEllipsize(TextUtils.TruncateAt.MARQUEE);
  56. textView.setSingleLine(true);
  57. textView.setSelected(true);
  58. textView.setFocusable(true);
  59. textView.setFocusableInTouchMode(true);
  60. Button button_off = (Button) findViewById(R.id.off);
  61. button_off.setOnClickListener(new View.OnClickListener() {
  62. @Override
  63. public void onClick(View view) {
  64. Toast.makeText(MainActivity.this, "关灯", Toast.LENGTH_SHORT).show();
  65. publishmessageplus(mqtt_pub_topic, "L0");
  66. led_show.setText("已关闭LED灯");
  67. }
  68. });
  69. Button button_red = (Button) findViewById(R.id.red);
  70. button_red.setOnClickListener(new View.OnClickListener() {
  71. @Override
  72. public void onClick(View view) {
  73. Toast.makeText(MainActivity.this, "红灯", Toast.LENGTH_SHORT).show();
  74. Delay();
  75. publishmessageplus(mqtt_pub_topic, "L1");
  76. led_show.setText("红灯");
  77. }
  78. });
  79. Button button_lv = (Button) findViewById(R.id.lv);
  80. button_lv.setOnClickListener(new View.OnClickListener() {
  81. @Override
  82. public void onClick(View view) {
  83. Toast.makeText(MainActivity.this, "绿灯", Toast.LENGTH_SHORT).show();
  84. Delay();
  85. publishmessageplus(mqtt_pub_topic, "L2");
  86. led_show.setText("绿灯");
  87. }
  88. });
  89. Button button_blue = (Button) findViewById(R.id.blue);
  90. button_blue.setOnClickListener(new View.OnClickListener() {
  91. @Override
  92. public void onClick(View view) {
  93. Toast.makeText(MainActivity.this, "蓝灯", Toast.LENGTH_SHORT).show();
  94. Delay();
  95. publishmessageplus(mqtt_pub_topic, "L3");
  96. led_show.setText("蓝灯");
  97. }
  98. });
  99. Button button_red_blue = (Button) findViewById(R.id.red_blue);
  100. button_red_blue.setOnClickListener(new View.OnClickListener() {
  101. @Override
  102. public void onClick(View view) {
  103. Toast.makeText(MainActivity.this, "紫灯", Toast.LENGTH_SHORT).show();
  104. Delay();
  105. publishmessageplus(mqtt_pub_topic, "L4");
  106. led_show.setText("紫灯");
  107. }
  108. });
  109. Button button_red_lv = (Button) findViewById(R.id.red_lv);
  110. button_red_lv.setOnClickListener(new View.OnClickListener() {
  111. @Override
  112. public void onClick(View v) {
  113. Toast.makeText(MainActivity.this, "黄灯", Toast.LENGTH_SHORT).show();
  114. Delay();
  115. publishmessageplus(mqtt_pub_topic, "L5");
  116. led_show.setText("黄灯");
  117. }
  118. });
  119. Button button_lv_blue = (Button) findViewById(R.id.lv_blue);
  120. button_lv_blue.setOnClickListener(new View.OnClickListener() {
  121. @Override
  122. public void onClick(View view) {
  123. Toast.makeText(MainActivity.this, "青灯", Toast.LENGTH_SHORT).show();
  124. Delay();
  125. publishmessageplus(mqtt_pub_topic, "L6");
  126. led_show.setText("青灯");
  127. }
  128. });
  129. Button button_red_lv_blue = (Button) findViewById(R.id.red_lv_blue);
  130. button_red_lv_blue.setOnClickListener(new View.OnClickListener() {
  131. @Override
  132. public void onClick(View view) {
  133. Toast.makeText(MainActivity.this, "橙灯", Toast.LENGTH_SHORT).show();
  134. Delay();
  135. publishmessageplus(mqtt_pub_topic, "L7");
  136. led_show.setText("橙灯");
  137. }
  138. });
  139. Button fmq_ON = (Button) findViewById(R.id.fmq_on);
  140. fmq_ON.setOnClickListener(new View.OnClickListener() {
  141. @Override
  142. public void onClick(View view) {
  143. Toast.makeText(MainActivity.this, "打开蜂鸣器", Toast.LENGTH_SHORT).show();
  144. publishmessageplus(mqtt_pub_topic, "L8");
  145. led_show.setText("蜂鸣器已打开");
  146. }
  147. });
  148. Button fmq_OFF = (Button) findViewById(R.id.fmq_off);
  149. fmq_OFF.setOnClickListener(new View.OnClickListener() {
  150. @Override
  151. public void onClick(View v) {
  152. Toast.makeText(MainActivity.this, "关闭蜂鸣器", Toast.LENGTH_SHORT).show();
  153. publishmessageplus(mqtt_pub_topic, "L9");
  154. led_show.setText("蜂鸣器已关闭");
  155. }
  156. });
  157. handler = new Handler(Looper.myLooper()) {
  158. @SuppressLint("SetTextI18n")
  159. public void handleMessage(Message msg) {
  160. super.handleMessage(msg);
  161. switch (msg.what) {
  162. case 1: //开机校验更新回传
  163. break;
  164. case 2: // 反馈回传
  165. break;
  166. case 3: //MQTT 收到消息回传 UTF8Buffer msg=new UTF8Buffer(object.toString());
  167. System.out.println(msg.obj.toString()); // 显示MQTT数据
  168. break;
  169. case 30: //连接失败
  170. //Toast.makeText(MainActivity.this, "连接成功", Toast.LENGTH_SHORT).
  171. //show();
  172. mqtt_show.setText("连接失败!");
  173. break;
  174. case 31: //连接成功
  175. Toast.makeText(MainActivity.this, "连接成功", Toast.LENGTH_SHORT).
  176. show();
  177. mqtt_show.setText("连接成功!");
  178. try {
  179. client.subscribe(mqtt_sub_topic, 1);
  180. } catch (MqttException e) {
  181. e.printStackTrace();
  182. }
  183. break;
  184. default:
  185. break;
  186. }
  187. }
  188. };
  189. }
  190. //mqtt初始化
  191. private void Mqtt_init() {
  192. try {
  193. client = new MqttClient(host, mqtt_id,
  194. new MemoryPersistence());
  195. //MQTT的连接设置
  196. MqttConnectOptions options = new MqttConnectOptions();
  197. //设置是否清空session,这里如果设置为false表示服务器会保留客户端的连接记录,
  198. // 这里设置为true表示每次连接到服务器都以新的身份连接
  199. options.setCleanSession(false);
  200. //设置连接的用户名
  201. options.setUserName(userName);
  202. //设置连接的密码
  203. options.setPassword(passWord.toCharArray());
  204. // 设置超时时间 单位为秒
  205. options.setConnectionTimeout(10);
  206. // 设置会话心跳时间 单位为秒 服务器会每隔1.5*20秒的时间向客户端发送个消息判断客户端是否在线,
  207. // 但这个方法并没有重连的机制
  208. options.setKeepAliveInterval(20);
  209. client.setCallback(new MqttCallback() {
  210. @Override
  211. public void connectionLost(Throwable cause) {
  212. System.out.println("connectionLost----------");
  213. }
  214. @Override
  215. public void deliveryComplete(IMqttDeliveryToken iMqttDeliveryToken) {
  216. System.out.println("deliveryComplete---------"
  217. + iMqttDeliveryToken.isComplete());
  218. }
  219. @Override
  220. public void messageArrived(String topicName, MqttMessage mqttMessage)
  221. throws Exception {
  222. final String payload = new String(mqttMessage.getPayload());
  223. runOnUiThread(new Runnable() {
  224. @Override
  225. public void run() {
  226. temp_show.setText(payload+"℃");
  227. }
  228. });
  229. }
  230. });
  231. } catch (Exception e) {
  232. e.printStackTrace();
  233. }
  234. }
  235. //MQTT连接函数
  236. private void startReconnect() {
  237. scheduler = Executors.newSingleThreadScheduledExecutor();
  238. scheduler.scheduleAtFixedRate(new Runnable(){
  239. @Override
  240. public void run() {
  241. if (!client.isConnected()) {
  242. Mqtt_connect();
  243. }
  244. }
  245. },0*1000,10*1000, TimeUnit.MICROSECONDS);
  246. }
  247. //MQTT重新连接函数
  248. private void Mqtt_connect() {
  249. new Thread(new Runnable(){
  250. @Override
  251. public void run() {
  252. try {
  253. if(!(client.isConnected()) ) //如果还未连接
  254. {
  255. MqttConnectOptions options = null;
  256. client.connect(options);
  257. Message msg = new Message();
  258. msg.what = 31;
  259. handler.sendMessage(msg);
  260. }
  261. } catch (Exception e) {
  262. e.printStackTrace();
  263. Message msg = new Message();
  264. msg.what = 30;
  265. handler.sendMessage(msg);
  266. }
  267. }
  268. }).start();
  269. }
  270. //mqtt初始化
  271. //订阅函数
  272. private void publishmessageplus(String topic,String message2)
  273. {
  274. if (client == null || !client.isConnected()) {
  275. return;
  276. }
  277. MqttMessage message = new MqttMessage();
  278. message.setPayload(message2.getBytes());
  279. try {
  280. client.publish(topic,message);
  281. } catch (MqttException e) {
  282. e.printStackTrace();
  283. }
  284. }
  285. private void Delay(){
  286. if(mqtt_pub_topic!="L0"){
  287. publishmessageplus(mqtt_pub_topic,"L0");
  288. }
  289. }
  290. }

Mainactivity主要由以下几个方法内容组成:

 onCreate里面主要是实现布局页面按钮的回调方法,这里也是比较容易犯错的,手敲比较好。

(1)先写需要用到的变量,代码如下:

  1. public static MqttClient mMqClint;
  2. private MqttClient client;
  3. private ScheduledExecutorService scheduler;
  4. private Handler handler;
  5. private TextView temp_show;
  6. private TextView mqtt_show;
  7. private TextView led_show;
  8. private TextView textView;

然后就会报错,把光标方到报红的地方按住“Ait+回车”进行导包

 

 (2)mqtt配置代码如下:

  1. private String host = "tcp://mqtt.qzyuehua.cn"; // TCP协议,没有的话也可以用我这个
  2. private String userName = "admin";
  3. private String passWord = "123456";
  4. private String mqtt_id = "230722";
  5. private String mqtt_sub_topic = "123456/stm32"; //发送方
  6. private String mqtt_pub_topic = "123456/app"; //接收方

TCP协议的话大家也可以用我这个,是老师给的要是大家有自己的可以改。userName和passWord就是给mqtt.fx调试用的,但是我做实验的时候压根用不到,大家可写进去也可不写。剩下的三个都很重要的,尤其去发送方和接收方必须跟实验板那边的代码一样。

(3)OnCreate

先把下面这段代码复制到OnCreate里面,代码如下:

  1. Mqtt_init();
  2. startReconnect();
  3. temp_show = findViewById(R.id.temp_tv);
  4. mqtt_show = findViewById(R.id.m_mqtt);
  5. led_show =findViewById(R.id.Light_status);
  6. textView = (TextView)this.findViewById(R.id.New);
  7. String html = "全民制作人们,大家好,我是练习时长两年半的个人练习生蔡徐坤,喜欢唱、跳、rap、篮球\n" + "music!";
  8. CharSequence charSequence = Html.fromHtml(html);
  9. textView.setText(charSequence);
  10. textView.setMovementMethod(LinkMovementMethod.getInstance());
  11. textView.setEllipsize(TextUtils.TruncateAt.MARQUEE);
  12. textView.setSingleLine(true);
  13. textView.setSelected(true);
  14. textView.setFocusable(true);
  15. textView.setFocusableInTouchMode(true);

然后有两处需要加入两个方法

 像上面一样把光标放在报红的代码上,按住“AIT+回车”加入两个方法:

 我们如果要写实现点击布局文件的按钮,就有相应的变化,那么就要写这些按钮的点击事件,我的布局页面有很多个按钮,所以相应点击事件也很多,想看懂的记得结合一下布局文件各个按钮的ID,这样子就可以理解某个点击事件所对应按钮,也方便各位家人的自由发挥。

先把这段代码复制粘贴进去:

  1. Button button_off = (Button) findViewById(R.id.off);
  2. button_off.setOnClickListener(new View.OnClickListener()

 然后把光标放在报错的地方按住“AIT+回车”加入方法。

 

 然后再把下面的代码复制粘贴到onClick里面:

  1. Toast.makeText(MainActivity.this, "关灯", Toast.LENGTH_SHORT).show();
  2. publishmessageplus(mqtt_pub_topic, "L0");
  3. led_show.setText("已关闭LED灯");

这是关灯按钮的点击事件,我这么写主要是为了让大家知道怎么写,如果全部复制进去就会报错,方法必须手动建立。这里那个"publishmessageplus"会报错,那是因为没有建立这个方法,这个方法在最下面,这里没有写上,大家也不要理照样写下去,等到下面把publishmessageplus写上去就不会报错了。

其他按钮的点击事件的写法也跟这个一模一样,我就不赘述了,代码如下:

  1. Button button_red = (Button) findViewById(R.id.red);
  2. button_red.setOnClickListener(new View.OnClickListener() {
  3. @Override
  4. public void onClick(View view) {
  5. Toast.makeText(MainActivity.this, "红灯", Toast.LENGTH_SHORT).show();
  6. Delay();
  7. publishmessageplus(mqtt_pub_topic, "L1");
  8. led_show.setText("红灯");
  9. }
  10. });
  11. Button button_lv = (Button) findViewById(R.id.lv);
  12. button_lv.setOnClickListener(new View.OnClickListener() {
  13. @Override
  14. public void onClick(View view) {
  15. Toast.makeText(MainActivity.this, "绿灯", Toast.LENGTH_SHORT).show();
  16. Delay();
  17. publishmessageplus(mqtt_pub_topic, "L2");
  18. led_show.setText("绿灯");
  19. }
  20. });
  21. Button button_blue = (Button) findViewById(R.id.blue);
  22. button_blue.setOnClickListener(new View.OnClickListener() {
  23. @Override
  24. public void onClick(View view) {
  25. Toast.makeText(MainActivity.this, "蓝灯", Toast.LENGTH_SHORT).show();
  26. Delay();
  27. publishmessageplus(mqtt_pub_topic, "L3");
  28. led_show.setText("蓝灯");
  29. }
  30. });
  31. Button button_red_blue = (Button) findViewById(R.id.red_blue);
  32. button_red_blue.setOnClickListener(new View.OnClickListener() {
  33. @Override
  34. public void onClick(View view) {
  35. Toast.makeText(MainActivity.this, "紫灯", Toast.LENGTH_SHORT).show();
  36. Delay();
  37. publishmessageplus(mqtt_pub_topic, "L4");
  38. led_show.setText("紫灯");
  39. }
  40. });
  41. Button button_red_lv = (Button) findViewById(R.id.red_lv);
  42. button_red_lv.setOnClickListener(new View.OnClickListener() {
  43. @Override
  44. public void onClick(View v) {
  45. Toast.makeText(MainActivity.this, "黄灯", Toast.LENGTH_SHORT).show();
  46. Delay();
  47. publishmessageplus(mqtt_pub_topic, "L5");
  48. led_show.setText("黄灯");
  49. }
  50. });
  51. Button button_lv_blue = (Button) findViewById(R.id.lv_blue);
  52. button_lv_blue.setOnClickListener(new View.OnClickListener() {
  53. @Override
  54. public void onClick(View view) {
  55. Toast.makeText(MainActivity.this, "青灯", Toast.LENGTH_SHORT).show();
  56. Delay();
  57. publishmessageplus(mqtt_pub_topic, "L6");
  58. led_show.setText("青灯");
  59. }
  60. });
  61. Button button_red_lv_blue = (Button) findViewById(R.id.red_lv_blue);
  62. button_red_lv_blue.setOnClickListener(new View.OnClickListener() {
  63. @Override
  64. public void onClick(View view) {
  65. Toast.makeText(MainActivity.this, "橙灯", Toast.LENGTH_SHORT).show();
  66. Delay();
  67. publishmessageplus(mqtt_pub_topic, "L7");
  68. led_show.setText("橙灯");
  69. }
  70. });
  71. Button fmq_ON = (Button) findViewById(R.id.fmq_on);
  72. fmq_ON.setOnClickListener(new View.OnClickListener() {
  73. @Override
  74. public void onClick(View view) {
  75. Toast.makeText(MainActivity.this, "打开蜂鸣器", Toast.LENGTH_SHORT).show();
  76. publishmessageplus(mqtt_pub_topic, "L8");
  77. led_show.setText("蜂鸣器已打开");
  78. }
  79. });
  80. Button fmq_OFF = (Button) findViewById(R.id.fmq_off);
  81. fmq_OFF.setOnClickListener(new View.OnClickListener() {
  82. @Override
  83. public void onClick(View v) {
  84. Toast.makeText(MainActivity.this, "关闭蜂鸣器", Toast.LENGTH_SHORT).show();
  85. publishmessageplus(mqtt_pub_topic, "L9");
  86. led_show.setText("蜂鸣器已关闭");
  87. }
  88. });
  89. handler = new Handler(Looper.myLooper()) {
  90. @SuppressLint("SetTextI18n")
  91. public void handleMessage(Message msg) {
  92. super.handleMessage(msg);
  93. switch (msg.what) {
  94. case 1: //开机校验更新回传
  95. break;
  96. case 2: // 反馈回传
  97. break;
  98. case 3: //MQTT 收到消息回传 UTF8Buffer msg=new UTF8Buffer(object.toString());
  99. System.out.println(msg.obj.toString()); // 显示MQTT数据
  100. break;
  101. case 30: //连接失败
  102. //Toast.makeText(MainActivity.this, "连接成功", Toast.LENGTH_SHORT).
  103. //show();
  104. mqtt_show.setText("连接失败!");
  105. break;
  106. case 31: //连接成功
  107. Toast.makeText(MainActivity.this, "连接成功", Toast.LENGTH_SHORT).
  108. show();
  109. mqtt_show.setText("连接成功!");
  110. try {
  111. client.subscribe(mqtt_sub_topic, 1);
  112. } catch (MqttException e) {
  113. e.printStackTrace();
  114. }
  115. break;
  116. default:
  117. break;
  118. }
  119. }
  120. };

记住这些代码全部写在OnCreate()里面哦,不要写在public class MainActivity extends AppCompatActivity{ }里面。

(4)Mqtt_init方法

代码如下:

  1. //mqtt初始化
  2. private void Mqtt_init() {
  3. try {
  4. client = new MqttClient(host, mqtt_id,
  5. new MemoryPersistence());
  6. //MQTT的连接设置
  7. MqttConnectOptions options = new MqttConnectOptions();
  8. //设置是否清空session,这里如果设置为false表示服务器会保留客户端的连接记录,
  9. // 这里设置为true表示每次连接到服务器都以新的身份连接
  10. options.setCleanSession(false);
  11. //设置连接的用户名
  12. options.setUserName(userName);
  13. //设置连接的密码
  14. options.setPassword(passWord.toCharArray());
  15. // 设置超时时间 单位为秒
  16. options.setConnectionTimeout(10);
  17. // 设置会话心跳时间 单位为秒 服务器会每隔1.5*20秒的时间向客户端发送个消息判断客户端是否在线,
  18. // 但这个方法并没有重连的机制
  19. options.setKeepAliveInterval(20);
  20. client.setCallback(new MqttCallback() {
  21. @Override
  22. public void connectionLost(Throwable cause) {
  23. System.out.println("connectionLost----------");
  24. }
  25. @Override
  26. public void deliveryComplete(IMqttDeliveryToken iMqttDeliveryToken) {
  27. System.out.println("deliveryComplete---------"
  28. + iMqttDeliveryToken.isComplete());
  29. }
  30. @Override
  31. public void messageArrived(String topicName, MqttMessage mqttMessage)
  32. throws Exception {
  33. final String payload = new String(mqttMessage.getPayload());
  34. runOnUiThread(new Runnable() {
  35. @Override
  36. public void run() {
  37. temp_show.setText(payload+"℃");
  38. }
  39. });
  40. }
  41. });
  42. } catch (Exception e) {
  43. e.printStackTrace();
  44. }
  45. }

(5)startReconnect方法

代码如下:

  1. //MQTT连接函数
  2. private void startReconnect() {
  3. scheduler = Executors.newSingleThreadScheduledExecutor();
  4. scheduler.scheduleAtFixedRate(new Runnable(){
  5. @Override
  6. public void run() {
  7. if (!client.isConnected()) {
  8. Mqtt_connect();
  9. }
  10. }
  11. },0*1000,10*1000, TimeUnit.MICROSECONDS);
  12. }

(6)Mqtt_connect

代码如下:

  1. //MQTT重新连接函数
  2. private void Mqtt_connect() {
  3. new Thread(new Runnable(){
  4. @Override
  5. public void run() {
  6. try {
  7. if(!(client.isConnected()) ) //如果还未连接
  8. {
  9. MqttConnectOptions options = null;
  10. client.connect(options);
  11. Message msg = new Message();
  12. msg.what = 31;
  13. handler.sendMessage(msg);
  14. }
  15. } catch (Exception e) {
  16. e.printStackTrace();
  17. Message msg = new Message();
  18. msg.what = 30;
  19. handler.sendMessage(msg);
  20. }
  21. }
  22. }).start();
  23. }

(6)publishmessageplus方法

代码如下:

  1. //订阅函数
  2. private void publishmessageplus(String topic,String message2)
  3. {
  4. if (client == null || !client.isConnected()) {
  5. return;
  6. }
  7. MqttMessage message = new MqttMessage();
  8. message.setPayload(message2.getBytes());
  9. try {
  10. client.publish(topic,message);
  11. } catch (MqttException e) {
  12. e.printStackTrace();
  13. }
  14. }

(7)Delay()方法

这个方法就是让本次开灯时把上次开的灯关掉,如果不关的话就会串颜色,比如我第一次开的是红灯,当我第二次按蓝灯时,红灯是不会自动关掉的,那么现在灯的状态就是红+蓝的状态,所以每次都需要按关灯按钮才可以打开其他灯,要不然会串颜色。因此我把关灯指令加在每个颜色灯指令前面,想开灯就先执行关灯指令,其实这个方法很不好,大家用的时候就知道了,每次按颜色灯按钮,都要发送两个指令,如果stm32实验板不好的话,只会接受到一个指令,也就是第一个关灯指令,所以要多按几次,所以各位家人有好方法可以自己改改,并写在评论区里面给大伙分享。

代码如下:

  1. private void Delay(){
  2. if(mqtt_pub_topic!="L0"){
  3. publishmessageplus(mqtt_pub_topic,"L0");
  4. }
  5. }

5、配置联网权限

配置联网权限很重要,一定要记得这串代码写进去,这个是决定APP能不能成功连接到mqtt服务器的关键

步骤:

(1)打开清单文件

 (2)把这串代码粘贴进去manifest里面,代码如下:

  1. <uses-permission android:name="android.permission.WAKE_LOCK" />
  2. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  3. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  4. <!--允许程序打开网络套接字-->
  5. <uses-permission android:name="android.permission.INTERNET" />
  6. <!--允许程序获取网络状态-->
  7. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

6.测试APP

到这里APP所有代码都写完成了,如果不报错的话可以运行测试啦,出现以下界面证明运行成功。

 7.导出apk安装包

如果想把APP安装在手机上,那我们就要导出apk包

步骤:

(1)在菜单栏点击Build,然后选择Build Bundle/apk,最后点击Build APK(s)。

 然后右下角会出现提示,我们点击locate打开文件的保存地址

 进入文件管理页面后,把apk安装包发到手机进行安装

 四、STM32实验板代码

stm32代码太复杂了,整个代码我也不是很理解,我是直接拿野火的实验模版过来改一下,把要用到的user文件全部导进去,所以我直接把keil5代码整个打包放在百度网盘里面,你们自行下载然后在keil5打开就可以了,下面我就介绍几个需要用到的地方和可以更改的地方,以及某个代码块是干什么的,有什么作用,也方便各位的使用。

链接:https://pan.baidu.com/s/1J5rJXD4bAuc6kYcv961fmg?pwd=rps1 
提取码:rps1

网盘里面有四个文件!!!!!!!!!!!!!!!!!!!!!

第一个文件有野火的很多实验案列,对于想学习STM32的同学可以打开试试,现在说的是第四个它就是stm32的实验板代码,下载解压然后在keil5 MDK直接打开就可以用了。以下我逐个介绍用到的代码:

1.main函数

main函数里面值得改的就是我圈的这里,这里就是发送者和接收者,这里要跟app里面的一致,其他的大家感兴趣的话看着来慢慢研究。

 

2.esp8266

这个函数主要用于给实验板连接手机热点和mqtt服务器!!!!!!!

想实现物联网的话, STM32实验班和APP都必须同时连上网,所以实验板必须要连接我们自己的手机热点或者其他可以上网的网络。把第一个define里面的“WIFI Name ”改成自己手机的热点名,“WIFI password”改成热点密码,到时候把代码写进去STM32实验板后会自动连接手机热点。

 3.onenet

这个函数主要是负责的接收APP那边发送来的指令然后发送给实验板做出相应反应,上面我们写那个安卓APP的时候,你们可以看到每个按钮的点击事件里面有L0,L1,L2等就是对应这里,L0对应的是三个基色等全部关闭,三基色灯不同打开方式的组合形成了另外四种灯,有什么新的指令大家就在这里加,这个函数主要是负责接收APP那边发送过来的指令。

 4.小总结

五、测试

1.测试app与mqtt的连接状态

(1)安装mqtt.fx并打开

 打开后是以下界面,Publish是发送方,Subscribe订阅方,如果想知道其他用法大家自己去百度吧,我也不想赘述了,这里我就讲这这个实验用到的内容。刚刚开始可以有点不理解,但是用久了自然就明白,这个其实就是测试APP能否连接到mqtt服务器,以及检查指令是否发送到mqtt服务器。

(2) 配置mqtt.fx的参数

点击设置进去配置页面

 配置情况如下:

 确定后回到主页面,点击Connect进行连接

 右上角出现绿灯说明连接成功连接成功

 在发布选项框下输入“123456/stm32”,然后在下面的空白框中输入温度发送给app进行显示。

如下图,我发送了一个为数值为35的温度主题,可以看到app订阅到了。 

在Sublime输入123456/app, 点击app的容易一个按钮,123456/app也订阅到了app发送过来的指令,到了这一步,证明app已经完成了。

2.将app与实验板同时连接mqtt服务器,实现远程控制

因为这个文章我是在宿舍写的,也没有那个实验板,所以这里我就没有图片展示了,大家多多见谅。

步骤:

(1)在keil上把代码写入实验板,并打开app和串口调试助手(网盘第二个文件),选择好端口然后打开串口调试,记得打开WIFI给实验进行连接。

 出现以下界面,证明连接成功!!!!!

 开始进行我们的第一个物联网实验吧!!!!!

 视频解析:

视频解析

 六、总结

这个实验就是让开发的app和F103实验板通过mqtt的IP协议同时连接上mqtt服务器实现远程控制,app先把指令发送到mqtt服务器,mqtt服务器接到指令再发送给实验板,实验板也通过mqtt服务器将温度发送给APP,这期间mqtt充当着中介的角色。我的专业发展主要是往Java方向,所以对硬件方面也不是很懂,这个实验也是做得稀里糊涂,如果大家有不明白的,可以把问题写在评论区,我看到会回复,但不敢保证所有问题都能解决,毕竟我也是个二把刀。也要感谢CSDN的这位作者:

我app的代码,大部分也都是参考他的,你们要是看不懂我写的,可以去看看他的,他写得比较详细,也解释得清楚点。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/340388
推荐阅读
相关标签
  

闽ICP备14008679号