Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the method of building cloud adder in MicroPython

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

Most people do not understand the knowledge points of this article "MicroPython build cloud adder method is what", so the editor summarizes the following content to you, detailed, clear steps, with a certain reference value, I hope you can get something after reading this article, let's take a look at this "MicroPython cloud adder method is what" article it.

one。 Experimental device

TPYBoard_V201 development board

II. TPYBoard_V201 development board

TPYBoard_V201 is a MicroPython development board made by TurnipSmart Company on the basis of MicroPython licensed by MIT. It is based on STM32F405 single-chip microcomputer and transmits data through USB interface. The development board has built-in 4 LED lights and on-board V201 network port function, which can work normally between 3.3V-10V voltage. It can be said that this development board is not too hegemonic in terms of network stability, and other hardware resources on the board are also very rich, such as 1-wire, i2C, SPI, serial port and other interfaces. This time we will use the function of serial port.

The required devices are introduced above, and let's talk about the environment needed for the experiment. All you need here is to be able to power the development board and to support a wired network connection (which can connect the development board to the Internet).

The first step of the experiment is to power the development board and plug in the network cable, and see that the green light on the V201 network port lights up, indicating that the network has been connected.

three。 Configure V201 network port

This step is to set the destination address, local port, baud rate, data bits, parity bits and other information of the V201 network port module.

Then let's talk about the basic logical flow:

1. Confirm that the power supply and network are in good condition

two。 To confirm that the network is intact, the next step is to carry out transmission and processing. On the premise of ensuring that the network is unobstructed, set serial port 6, that is, Y1 and Y2. The specific baud rate should be determined by referring to the baud rate you previously set to the V201 port.

3. What needs to be said here is that when this development board uses the Ethernet function, the three pins Y1 and Y2 are occupied, in which Y1 and Y2 are serial ports and perform communication functions.

4. Here we need to introduce that Y3Jing Y3 is the setting pin of V201 network port. When Y3 is not in low power level, V201 network port is in normal working state, which can be uploaded or configured through the network using setting software. When Y3 is at low power level, the V201 network port enters the serial port configuration mode, which can be configured through the serial port using the setting software. Data cannot be uploaded at this time.

5. After all the above work is completed, all that is left is to monitor whether serial port 6 has data at all times.

6. When the data is first received, add one to the counting variable and use the registered variable to save the data

7. When the data is received for the second time, add one to the count variable and use the register variable to save the data

8. When it is determined that the counting variable is 02:00, add the data received two times.

9. Finally, we only need to send the result of the two additions from serial port 6.

four。 Physical objects and data maps

The following is the physical picture and data monitoring screenshot of my experiment. I opened a simulated customer port on my computer. Although low is a little bit, the effect is the same.

Physical drawing

Data monitoring screenshot

five。 source code

The following is the source code I have done, which is shared with you.

Import pybfrom pyb import UARTfrom pyb import Pinfrom ubinascii import hexlifyfrom ubinascii import * ulan = UART (6 9600) # define the serial port K=1jia=0jie1=0he=0js=0# setting register variable for connecting the network port # * * main program * * print ('while') while (K > 0): _ dataRead=ulan.readall () # read client data if _ DataReadquarter Nonejs=js+1# # determines whether data is sent from the client print (_ dataRead) js=js+1# count judges execution command flag if (js==1): jia=_dataRead.decode ('utf-8') # data conversion jia=int (jia) # data conversion print (jia) if (js==2): jia1=_dataRead.decode (' Utf-8') jia1=int (jia1) print (jia1) if (js==2): he=jia+jia1 js=0 ulan.write (str (jia) +'+'+ str (jia1) +'='+ str (he) +'\ r\ n') # the calculation results are returned to the client. This is the content of the article "what is the method of MicroPython Building Cloud Adder". I believe we all have a certain understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please pay attention to the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report