2

我正在使用处理创建一个数字键盘。我正在为 gui 使用平板电脑和 controlP5 库,然后将值发送到 arduino。我在用数字命名按钮时遇到问题。这是我创建按钮的代码:

n1=cp5.addButton("one",1)
.setPosition(470,390)
.setSize(100,100)
;

n2=cp5.addButton("two",2)
.setPosition(590,390)
.setSize(100,100)
;

……还有其他一些。

我想用一个数字命名我的按钮(以在我的屏幕上显示数字),但按钮的名称也是此处用于发送与按钮关联的值的函数的名称:

void one(int theValue) 
{ 
    buttonText= "OFF" ; 
    background(236, 240, 241); 
    sendLetter = "b" ;

    byte [] myByte = stringToBytesUTFCustom(sendLetter); 
    sendReceiveBT.write(myByte);
}

void two(int theValue) 
{ 
    buttonText= "OFF" ; 
    background(236, 240, 241); 
    sendLetter = "c" ;

    byte [] myByte = stringToBytesUTFCustom(sendLetter); 
    sendReceiveBT.write(myByte);
}

问题是我不能将我的按钮命名为“1”,它不起作用,因为 controlP5 试图找到具有给定名称的方法并将其链接到控制器,并且方法不能用单个数字命名。我必须将它命名为“一个”,对于数字键盘来说它有点难看。

我的问题:有没有办法在不影响用于将值发送到 arduino 的函数的情况下显示数字?

4

1 回答 1

2

您可以使用setCaptionLabel(String)设置按钮的可见标签:

n1=cp5.addButton("one",1)
.setCaptionLabel("1")
.setPosition(470,390)
.setSize(100,100)
;

取自本次讨论: http: //processing.org/discourse/beta/num_1230541431.html#5

于 2014-05-26T07:22:35.433 回答