Help with State Transition Table
古いコメントを表示
Greetings, I am diong a project where I am creating an air piano inside simulink with my arduino uno board. The table is for lighting three LED lights based on different distance inputs from an ultrasound sensor. The output I am currently getting is that only my green LED lights up despite inputting several different distances. any help or tips would be greatly appreciated. I have also included a picture of my blocks diagram in simulink.


採用された回答
その他の回答 (1 件)
Fangjun Jiang
2023 年 11 月 17 日
編集済み: Fangjun Jiang
2023 年 11 月 17 日
0 投票
[0<distance<10] is not the correct syntax. Your state stays at the default.
changing all to style [0<distance && distance<10] should resolve the issue.
2 件のコメント
Fangjun Jiang
2023 年 11 月 17 日
編集済み: Fangjun Jiang
2023 年 11 月 17 日
distance=35;
[0<distance<10]
This is equivalant to
(0<distance) < 10
madhan ravi
2023 年 11 月 17 日
編集済み: madhan ravi
2023 年 11 月 17 日


yes, proper logical and should be used for stateflow conditions in the similar way done in MATLAB
カテゴリ
ヘルプ センター および File Exchange で Modeling についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!