i new whit Processor Expert

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

i new whit Processor Expert

跳至解决方案
1,723 次查看
quimey
Contributor I

hi i was work in code warrior whiout Processor Expert ,but now i can learn to use Processor Expert,

can someone tell me how to turn on a led using adc bean when the analogic input of the channel 1 is greater than 0x00ef

I need to aplication notes Processor Expert how to use the function i the beans like measure() getval() etc ?can you sen me the names ?

muchasss graciassssss

标签 (1)
标记 (1)
0 项奖励
回复
1 解答
1,036 次查看
ProcessorExpert
Senior Contributor III
You can find some examples of using ADC bean in help of ADC bean in bean´s pop-up menu on page "Typical usage". More detailed information about bean´s setting, methods and events are available in hints and the help on pages
properties, methods and events. To toggle with a logic value of a pin you can for example use "NegVal" method from BitIO bean.
 
Example:
 
AD1_GetValue(&Value);
if (Value > 0x00ef){
Bit1_NegVal();
}
 
Best Regards,
Vojtech Filip
Processor Expert Team

在原帖中查看解决方案

0 项奖励
回复
1 回复
1,037 次查看
ProcessorExpert
Senior Contributor III
You can find some examples of using ADC bean in help of ADC bean in bean´s pop-up menu on page "Typical usage". More detailed information about bean´s setting, methods and events are available in hints and the help on pages
properties, methods and events. To toggle with a logic value of a pin you can for example use "NegVal" method from BitIO bean.
 
Example:
 
AD1_GetValue(&Value);
if (Value > 0x00ef){
Bit1_NegVal();
}
 
Best Regards,
Vojtech Filip
Processor Expert Team
0 项奖励
回复