pull_up_down in Matlab

24 ビュー (過去 30 日間)
Sapir Zurist
Sapir Zurist 2021 年 3 月 22 日
Hi,
About the GPIO in raspberry pi - I need to enable the internal pull up resistor to read a 'high' value at the pin by default.
I see that in python you have the following command: GPIO.setup(PIN, GPIO.IN, pull_up_down=GPIO.PUD_UP)
Is there something similar in Matlab?

回答 (1 件)

Christopher McCausland
Christopher McCausland 2021 年 3 月 22 日
Hi Sapir,
In MATLAB there is a "configurePin" command which can enable the pull up resistor. Here is the link to the documentation.
In short it looks something link this;
a = arduino('COM4','Uno'); %Link to the arduino
configurePin(a,'D3','pullup'); % Configure the internal pull up on pin D3
Let me know if this helps you,
Christopher
  3 件のコメント
Sapir Zurist
Sapir Zurist 2021 年 3 月 24 日
I enable the pull up resistor through Python on the Raspberry itself and it works.
Christopher McCausland
Christopher McCausland 2021 年 3 月 24 日
Hi Sapir,
My appologies, I clearly wasn't paying as much attention as I should have been.
I am not sure if this is avaliable as a command though it should be. However with some hardware tinkering we should be able to make this happen;
  1. When an RP boots the first eight GPIO's have pull-ups enabled and the rest have pull-downs enabled, you should be able to use this to your advantage.
  2. Add in additional resistors to the circuit in place of the internal pull ups
Both of these solotions are not ideal however should allow you to continue with your work in the mean time. I cannot think of why MATLAB wouldn't allow this functionality however looking at this forum and others many the same problem can be found as far back as 2017 with the documentation of 'mode' suggesting it isn't currently possiable.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMATLAB Support Package for Raspberry Pi Hardware についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by