通过WiFi进行环境监控的App(Android Studio)

需求分析

        本次需要做一个App,该App可以通过WiFi获取温湿度、烟雾浓度和一氧化碳的环境参数,并在界面上显示出来,能够评判空气质量,同时,在App内也可以实现这些环境参数的阈值更改功能,并向32单片机上的WiFi模块回传这些阈值参数,当参数超过阈值时手机通过震动发出报警。

        本App通过WiFi与32单片机进行通信,采用的是TCP协议。WiFi模块会不断地向App发送以空格为间隔的 7 个数据,一共21个字节,如“20 80 10 10 40 20 20 ”,把这串数据以空格拆分并依次赋值给温度、湿度、烟雾浓度、一氧化碳浓度、温度阈值、烟雾阈值和一氧化碳阈值。发送阈值时,也以空格为间隔发送,只不过空格是在前面,如“ 40 20 20”。

App界面效果

App界面

各种功能实现

        权限的申请

        android:usesCleartextTraffic="false"用于明文传输

<!--需要对WiFi进行操作,所以需要设置网络权限-->
<uses-permission android:name="android.permission.INTERNET"/>
<!--手机震动权限-->
<uses-permission android:name="android.permission.VIBRATE" />

<application
        android:usesCleartextTraffic="false"
</application>

        显示当前的参数

/******显示当前环境的参数******/     
textView_humidity.setText(Integer.toString(data_humidity) + "%RH");
textView_temp.setText(Integer.toString(data_temp) + " ℃");
textView_smog.setText(Integer.toString(data_smog));
textView_co.setText(Integer.toString(data_co));

/******显示当先阈值******/
editText_temp.setText(Integer.toString(temp_yu_setting));
editText_smog.setText(Integer.toString(smog_yu_setting));
editText_co.setText(Integer.toString(co_yu_setting));
textView_temp_yu.setText(Integer.toString(temp_yu));
textView_smog_yu.setText(Integer.toString(smog_yu));
textView_co_yu.setText(Integer.toString(co_yu));

        设置温度加减功能关键代码

 /******设置温度加减功能******/
        button_decline_temp = findViewById(R.id.decline_button_of_temp);
        button_decline_temp.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                boolean isInt = true;
                try {
                    int tempInput = Integer.parseInt(editText_temp.getText().toString());
                    if (tempInput >= 1 && tempInput <= 99) {
                        temp_yu = tempInput;
                    } else {
                        Toast.makeText(MainActivity.this, "请输入 1~99 之间的整数", Toast.LENGTH_SHORT).show();
                        editText_temp.setText(String.valueOf(temp_yu));
                    }
                } catch (NumberFormatException e) {
                    isInt = false;//转化失败
                    Toast.makeText(MainActivity.this, "请输入一个整数", Toast.LENGTH_SHORT).show();
                }
                if (isInt) {//如果没有发生异常
                    if (temp_yu > 1) {
                        temp_yu--;
                        editText_temp.setText(String.valueOf(temp_yu));
                    } else {
                        editText_temp.setText(String.valueOf(temp_yu));
                    }
                } else {
                    editText_temp.setText(String.valueOf(temp_yu));
                }
            }
        });

        连接按钮底层代码

        // 连接按钮底层代码
        button_connect.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                a = editText_ip.getText().toString();
                String c = editText_port.getText().toString();
                if ("".equals(a) || "".equals(c)) {
                    Toast.makeText(MainActivity.this, "请输入ip和端口号", Toast.LENGTH_SHORT).show();
                    receive.append("请输入ip和端口号" + "\r\n");
                } else {
                    b = Integer.parseInt(c);
                    lianjie = new connectthread();
                    lianjie.start();
                }
            }
        });

        发送数据按键底层代码

        // 发送数据 按键底层代码
        button_send.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //子线程中进行网络操作
                new Thread(new Runnable() {
                    @Override
                    public void run() {
                        if (socket != null) {
                            try {
                                String text_temp = " " + editText_temp.getText().toString();//温度栏的阈值
                                String text_smog = " " + editText_smog.getText().toString();//烟雾栏的阈值
                                String text_co = " " + editText_co.getText().toString();//CO栏的阈值
                                lianjie.outputStream.write((text_temp + text_smog + text_co + "\r\n").getBytes());
                                runOnUiThread(new Runnable() {
                                    @Override
                                    public void run() {
                                        Toast.makeText(MainActivity.this, "已发送", Toast.LENGTH_SHORT).show();
                                    }
                                });
                            } catch (IOException e) {
                                e.printStackTrace();
                            }
                        } else {
                            runOnUiThread(new Runnable()//不允许其他线程直接操作组件,用提供的此方法可以
                            {
                                public void run() {
                                    // TODO Auto-generated method stub
                                    Toast.makeText(MainActivity.this, "请先建立连接", Toast.LENGTH_SHORT).show();
                                    receive.append("请先建立连接" + "\r\n");
                                }
                            });
                        }
                    }
                }).start();
            }
        });

        清除按钮功能

        //清除按钮功能
        button_clear = findViewById(R.id.clear_button);
        button_clear.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                receive.setText("");
            }
        });

        子线程中进行网络相关操作

    //子线程中进行网络相关操作
    // 联网子线程
    class connectthread extends Thread {

        OutputStream outputStream = null;
        InputStream inputStream = null;

        @SuppressWarnings("InfiniteLoopStatement")
        @Override
        public void run() {

            //连接
            try {
                socket = new Socket(a, b);
                runOnUiThread(new Runnable()//不允许其他线程直接操作组件,用提供的此方法可以
                {
                    public void run() {
                        Toast.makeText(MainActivity.this, "连接成功", Toast.LENGTH_SHORT).show();
                        receive.append("连接成功" + "\r\n");
                    }
                });
            } catch (UnknownHostException e) {
                runOnUiThread(new Runnable()//不允许其他线程直接操作组件,用提供的此方法可以
                {
                    public void run() {
                        Toast.makeText(MainActivity.this, "连接失败", Toast.LENGTH_SHORT).show();
                        receive.append("连接失败" + "\r\n");
                    }
                });
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
                runOnUiThread(new Runnable()//不允许其他线程直接操作组件,用提供的此方法可以
                {
                    public void run() {
                        Toast.makeText(MainActivity.this, "连接失败", Toast.LENGTH_SHORT).show();
                        receive.append("连接失败" + "\r\n");
                    }
                });
            }
            if (socket != null) {
                //获取输出流对象
                try {
                    outputStream = socket.getOutputStream();
                    outputStream.write(123);
                } catch (IOException e) {
                    e.printStackTrace();
                }

                try {
                    do {
                        final byte[] buffer = new byte[1024];//创建接收缓冲区
                        inputStream = socket.getInputStream();
                        final int len = inputStream.read(buffer);//数据读出来,并且返回数据的长度
                        runOnUiThread(new Runnable()//不允许其他线程直接操作组件,用提供的此方法可以
                        {
                            public void run() {
                                String receivedData = new String(buffer, 0, len);

                                // 拆分字符串为子字符串数组
                                String[] tokens = receivedData.split(" ");

                                //获取环境参数
                                data_humidity = Integer.parseInt(tokens[0]);
                                data_temp = Integer.parseInt(tokens[1]);
                                data_smog = Integer.parseInt(tokens[2]);
                                data_co = Integer.parseInt(tokens[3]);

                                //获取环境阈值
                                temp_yu = Integer.parseInt(tokens[4]);
                                smog_yu = Integer.parseInt(tokens[5]);
                                co_yu = Integer.parseInt(tokens[6]);

                                //显示环境参数
                                textView_humidity.setText(Integer.toString(data_humidity) + "%RH");
                                textView_temp.setText(Integer.toString(data_temp) + " ℃");
                                textView_smog.setText(Integer.toString(data_smog));
                                textView_co.setText(Integer.toString(data_co));

                                //显示环境阈值
                                textView_temp_yu.setText(Integer.toString(temp_yu));
                                textView_smog_yu.setText(Integer.toString(smog_yu));
                                textView_co_yu.setText(Integer.toString(co_yu));

                                receive.append(receivedData + "\r\n");

                                /*空气质量判断并显示*/
                                if (data_co < 25 && data_smog < 25 && data_temp <= 25 && data_temp >=15)
                                    quality = 1;
                                else if (data_co > 35 || data_smog > 35 || data_temp > 35)
                                    quality = 3;
                                else quality = 2;
                                switch (quality) {
                                    case 1:
                                        textView_quality.setText("优");
                                        textView_quality.setTextColor(Color.rgb(0, 205, 0));
                                        break;
                                    case 2:
                                        textView_quality.setText("良");
                                        textView_quality.setTextColor(Color.YELLOW);
                                        break;
                                    case 3:
                                        textView_quality.setText("差");
                                        textView_quality.setTextColor(Color.RED);
                                        break;
                                    default:
                                        break;
                                }

                                /*阈值判断*/
                                peizhi();

                            }
                        });
                    } while (true);
                } catch (IOException ignored) {
                }
            }
        }
    }

阈值判断并震动的函数

public void peizhi() {

        Vibrator vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);//定义震动

        if ( data_temp >= temp_yu ){
            textView_temp.setTextColor(Color.RED);
            vibrator.vibrate(1000);
        }
        else{
            textView_temp.setTextColor(Color.GRAY);
            vibrator.cancel();
        }

        if (data_smog >= smog_yu){
            textView_smog.setTextColor(Color.RED);
            vibrator.vibrate(1000);
        }
        else{
            textView_smog.setTextColor(Color.GRAY);
            vibrator.cancel();
        }

        if (data_co >= co_yu){
            textView_co.setTextColor(Color.RED);
            vibrator.vibrate(1000);
        }
        else{
            textView_co.setTextColor(Color.GRAY);
            vibrator.cancel();
        }
    }

XML文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:orientation="vertical">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:overScrollMode="never"
        android:scrollbars="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="70dp"
                android:background="#f2f2f2">

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerHorizontal="true"
                    android:layout_marginTop="15dp"
                    android:text="当前环境"
                    android:textColor="#000000"
                    android:textSize="25dp" />

            </RelativeLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="200px"
                    android:orientation="horizontal">

                    <TextView
                        android:id="@+id/Quality"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="40px"
                        android:layout_marginTop="50px"
                        android:paddingTop="10px"
                        android:text="空气质量:"
                        android:textSize="20dp" />

                    <TextView
                        android:id="@+id/data_of_quality"
                        android:layout_width="100px"
                        android:layout_height="100px"
                        android:layout_marginTop="50px"
                        android:layout_toRightOf="@+id/Quality"
                        android:paddingTop="10px"
                        android:textSize="20dp" />
                </RelativeLayout>

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="200px"
                    android:orientation="horizontal">

                    <TextView
                        android:id="@+id/Temperature"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="40px"
                        android:layout_marginTop="50px"
                        android:paddingTop="10px"
                        android:text="温度:"
                        android:textSize="20dp" />

                    <TextView
                        android:id="@+id/data_of_Temperature"
                        android:layout_width="150px"
                        android:layout_height="100px"
                        android:layout_marginTop="50px"
                        android:layout_toRightOf="@+id/Temperature"
                        android:paddingTop="10px"
                        android:textSize="20dp" />

                    <TextView
                        android:id="@+id/humidity"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginTop="50px"
                        android:layout_marginLeft="10dp"
                        android:layout_toRightOf="@+id/data_of_Temperature"
                        android:paddingTop="10px"
                        android:text="湿度:"
                        android:textSize="20dp" />

                    <TextView
                        android:id="@+id/data_of_humidity"
                        android:layout_width="200px"
                        android:layout_height="100px"
                        android:layout_marginTop="50px"
                        android:layout_toRightOf="@+id/humidity"
                        android:paddingTop="10px"
                        android:textSize="20dp" />

                </RelativeLayout>

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="200px"
                    android:orientation="horizontal">

                    <TextView
                        android:id="@+id/Smog"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="40px"
                        android:layout_marginTop="50px"
                        android:paddingTop="10px"
                        android:text="烟雾浓度:"
                        android:textSize="20dp" />

                    <TextView
                        android:id="@+id/data_of_smog"
                        android:layout_width="100px"
                        android:layout_height="100px"
                        android:layout_marginTop="50px"
                        android:layout_toRightOf="@+id/Smog"
                        android:paddingTop="10px"
                        android:textSize="20dp" />
                </RelativeLayout>

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="200px"
                    android:orientation="horizontal">

                    <TextView
                        android:id="@+id/CO_ppm"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="40px"
                        android:layout_marginTop="50px"
                        android:paddingTop="10px"
                        android:text="CO_ppm:"
                        android:textSize="20dp" />

                    <TextView
                        android:id="@+id/data_of_co"
                        android:layout_width="100px"
                        android:layout_height="100px"
                        android:layout_marginTop="50px"
                        android:layout_toRightOf="@+id/CO_ppm"
                        android:paddingTop="10px"
                        android:textSize="20dp" />
                </RelativeLayout>

                <View
                    android:layout_width="match_parent"
                    android:layout_height="10dp"
                    android:background="#e0e0e0" />

            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical"
                    android:paddingLeft="10dp"
                    android:paddingTop="20dp">

                    <RelativeLayout
                        android:layout_width="match_parent"
                        android:layout_height="50dp"
                        android:orientation="horizontal">

                        <TextView
                            android:id="@+id/temperature_setting"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="10dp"
                            android:layout_marginTop="8dp"
                            android:text="温度阈值:"
                            android:textSize="20dp" />

                        <Button
                            android:id="@+id/decline_button_of_temp"
                            android:layout_width="40dp"
                            android:layout_height="40dp"
                            android:layout_toRightOf="@+id/temperature_setting"
                            android:background="#f2f2f2"
                            android:text="—" />

                        <EditText
                            android:id="@+id/setting_data_of_Temperature"
                            android:layout_width="50dp"
                            android:layout_height="40dp"
                            android:layout_marginTop="5dp"
                            android:inputType="number"
                            android:layout_toRightOf="@+id/decline_button_of_temp" />

                        <Button
                            android:id="@+id/increase_button_of_temp"
                            android:layout_width="40dp"
                            android:layout_height="40dp"
                            android:layout_toRightOf="@+id/setting_data_of_Temperature"
                            android:background="#f2f2f2"
                            android:text="+" />
                    </RelativeLayout>

                    <RelativeLayout
                        android:layout_width="match_parent"
                        android:layout_height="50dp"
                        android:orientation="horizontal">

                        <TextView
                            android:id="@+id/smog_setting"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="10dp"
                            android:layout_marginTop="8dp"
                            android:text="烟雾阈值:"
                            android:textSize="20dp" />

                        <Button
                            android:id="@+id/decline_button_of_smog"
                            android:layout_width="40dp"
                            android:layout_height="40dp"
                            android:layout_toRightOf="@+id/smog_setting"
                            android:background="#f2f2f2"
                            android:text="—" />

                        <EditText
                            android:id="@+id/setting_data_of_smog"
                            android:layout_width="50dp"
                            android:layout_height="40dp"
                            android:layout_marginTop="5dp"
                            android:inputType="number"
                            android:layout_toRightOf="@+id/decline_button_of_smog" />

                        <Button
                            android:id="@+id/increase_button_of_smog"
                            android:layout_width="40dp"
                            android:layout_height="40dp"
                            android:layout_toRightOf="@+id/setting_data_of_smog"
                            android:background="#f2f2f2"
                            android:text="+" />
                    </RelativeLayout>

                    <RelativeLayout
                        android:layout_width="match_parent"
                        android:layout_height="50dp"
                        android:orientation="horizontal">

                        <TextView
                            android:id="@+id/co_setting"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="10dp"
                            android:layout_marginTop="8dp"
                            android:text="CO阈值:"
                            android:textSize="20dp" />

                        <Button
                            android:id="@+id/decline_button_of_co"
                            android:layout_width="40dp"
                            android:layout_height="40dp"
                            android:layout_toRightOf="@+id/co_setting"
                            android:layout_marginLeft="13dp"
                            android:background="#f2f2f2"
                            android:text="—" />

                        <EditText
                            android:id="@+id/setting_data_of_co"
                            android:layout_width="50dp"
                            android:layout_height="40dp"
                            android:layout_marginTop="5dp"
                            android:inputType="number"
                            android:layout_toRightOf="@+id/decline_button_of_co" />

                        <Button
                            android:id="@+id/increase_button_of_co"
                            android:layout_width="40dp"
                            android:layout_height="40dp"
                            android:layout_toRightOf="@+id/setting_data_of_co"
                            android:background="#f2f2f2"
                            android:text="+" />
                    </RelativeLayout>
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="150dp"
                    android:orientation="vertical"
                    android:paddingLeft="10dp"
                    android:paddingTop="20dp">

                    <RelativeLayout
                        android:layout_width="match_parent"
                        android:layout_height="50dp"
                        android:orientation="horizontal">

                        <TextView
                            android:id="@+id/ip_setting"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="10dp"
                            android:layout_marginTop="8dp"
                            android:text="IP地址:"
                            android:textSize="20dp" />

                        <EditText
                            android:id="@+id/setting_data_of_ip"
                            android:layout_width="200dp"
                            android:layout_height="40dp"
                            android:layout_marginTop="5dp"
                            android:layout_toRightOf="@+id/ip_setting"
                            android:hint="192.168.4.1"/>

                    </RelativeLayout>

                    <RelativeLayout
                        android:layout_width="match_parent"
                        android:layout_height="50dp"
                        android:orientation="horizontal">

                        <TextView
                            android:id="@+id/port_setting"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="10dp"
                            android:layout_marginTop="8dp"
                            android:text="端口号:"
                            android:textSize="20dp" />

                        <EditText
                            android:id="@+id/setting_data_of_port"
                            android:layout_width="200dp"
                            android:layout_height="40dp"
                            android:layout_marginTop="5dp"
                            android:layout_toRightOf="@+id/port_setting"
                            android:hint="333"/>

                    </RelativeLayout>
                </LinearLayout>

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="100dp">

                    <Button
                        android:id="@+id/send_button"
                        android:layout_width="100dp"
                        android:layout_height="50dp"
                        android:layout_centerHorizontal="true"
                        android:layout_centerVertical="true"
                        android:background="@color/my_color"
                        android:text="发送"
                        android:textSize="20dp" />

                    <Button
                        android:id="@+id/connect_button"
                        android:layout_width="100dp"
                        android:layout_height="50dp"
                        android:layout_centerVertical="true"
                        android:layout_marginRight="10dp"
                        android:layout_toLeftOf="@+id/send_button"
                        android:background="@color/my_color"
                        android:text="连接"
                        android:textSize="20dp" />

                    <Button
                        android:id="@+id/clear_button"
                        android:layout_width="100dp"
                        android:layout_height="50dp"
                        android:layout_centerVertical="true"
                        android:layout_marginLeft="10dp"
                        android:layout_toRightOf="@+id/send_button"
                        android:background="@color/my_color"
                        android:text="清除"
                        android:textSize="20dp" />
                </RelativeLayout>

                <TextView
                    android:id="@+id/receive"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textSize="20dp" />

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="50dp" />
            </LinearLayout>


        </LinearLayout>
    </ScrollView>
</LinearLayout>

工程文件

该工程的项目文件已上传,需要的话可以下载使用。

https://download.csdn.net/download/nazonomaster/87553478https://download.csdn.net/download/nazonomaster/87553478

  • 3
    点赞
  • 75
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论
设计目的: 通过远程监控电力系统的运行状态,系统通过单片机控制WIFI模块, WIFI模块接入家庭网络,成功接入后,模块被设置固定IP地址,手机APP 便可接入这个IP,从而远程监控电力系统; 手机APP是外网、内网和热点通用版本。。。 系统组成: 1、专用电力模块,可联系本人提供。 互感器没有接入系统,所以只显示电压值 通过串口线,接入单片机串口1 2、ESP8266物联网WIFI模块 模块参数说明: 每个家庭无线网络账户和密码都不同,我这里设置了一个通用的账户和密码 家庭账户:ESP8266 家庭密码:0123456789 模块的IP:192.168.1.111 模块端口:5000 3、单片机系统,采用STC双串口单片机 串口1 接入电力模块 串口2 接入WIFI模块 4、APP手机软件 接入IP就是刚才上面的模块IP:192.168.1.111 互感器没有接入系统,所以只显示电压值 补充说明一下,单片机烧录的时候,晶振选 18.432 数据格式: 1.功率:测试量程0~22kW 0~10kW以内显示格式0.000~9.999; 10~22kW以内显示格式10.00~22.00。 2.电量:测试量程0~9999kWh 0~10kWh以内显示格式0.000~9.999; 10~100kWh以内显示格式10.00~99.99; 100~1000kWh以内显示格式100.0~999.9; 1000~9999kWh及以上显示格式1000~9999。 3.电压:测试量程80~260VAC 显示格式110.0~220.0。 4.电流:测试量程0~100A 显示格式00.00~99.99。 精度说明: 1.电压显示 计量并显示当前工频电网电压,000V,即1V起测。 2.电流显示 计量并显示当前负载(用电器)电流;需要说明的是电流起测点是10mA。 3.功率显示 计量并显示当前负载功率;需要说明的是功率起测点是0.001kW,即1W起测。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

nazonomaster

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值