如何合并两个程序的代码?

时间:2017-10-01 04:47:18

标签: c++ serial-port arduino-uno

我一直在研究一些我已经拥有的编程代码。它是一种测量重量(称重传感器)的装置。我买了一个称重传感器显示单元,它已经有一个程序。但问题是我需要其中的两个,我不知道如何合并代码并重新调整变量。我的目标是添加两个称重传感器的结果。我使用的是一个只有一个RX和TX引脚的Arduino Uno板,这就是我将另一个TX和RX连接到arduino的D2和D3的原因。

*/
Connections:
LDU1 to Arduino board
TX1  =  D0
RX1  =  D1
GND1 =  GND

LDU2 to Arduino board
TX2  =  D2
RX2  =  D3
GND2 =  GND

VIN =  7-9VDC /VIN
*/

// defines used by the serial event
// do not modify
#define  STX 2
#define  ETX 3
#define  SERIALSTX 0
#define  SERIALETX 1
#define  SERIALRDY 2

This is a part of the code. I do not know how I am going to define the D2 and D3 pins as TX2 and RX2. 

0 个答案:

没有答案