i new whit Processor Expert

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

i new whit Processor Expert

ソリューションへジャンプ
1,722件の閲覧回数
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,035件の閲覧回数
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,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 件の賞賛
返信