pull_up_down in Matlab
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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?
0 Kommentare
Antworten (1)
Christopher McCausland
am 22 Mär. 2021
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 Kommentare
Christopher McCausland
am 24 Mär. 2021
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;
- 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.
- 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.
Siehe auch
Kategorien
Mehr zu MATLAB Support Package for Raspberry Pi Hardware finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!