Ir al contenido

¡Bienvenido!

This community is for professionals and enthusiasts of our products and services. Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.

Esta pregunta ha sido marcada
1 Responder
3307 Vistas

I've a M-Duino 21+ and I'm testing the digital input just with a button connected to 5Vdc (pin of M-DUINO) and I0_7 digital pin. In M-DUINO documentation says that digital input high voltage is 5-24V.

I've used this  simple program:

void setup() {
  pinMode(I0_7, INPUT);
  Serial.begin(9600);
} void loop() {  Serial.println(digitalRead(I0_7) ? "ON" : "OFF"); //print value on serial Monitor delay(2000); //wait 2 seconds }


The problem is:

- If I press the button, the LED I0_7 brights as expected but the message remains "OFF"


I've changed button power supply to Vdc (in my case it is 12Vdc) the LED I0_7 brights and the message changes to "ON"

So, I've experienced that status LEDs for digital inputs don't show the actual value received by the arduino core.


Is ti my fault or something wrong? Is it just a design error?

Avatar
Descartar
Mejor respuesta

Hello joguagar,

Maybe is a typographic mistake, Digital Inputs works at 7-24Vdc and Digital Outputs works at 5-24Vdc, for more info about your PLC just have a look here.

Thank you,

Best regards.

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
2
ago 21
3045
1
ago 20
2978
1
oct 20
4609
1
oct 20
2995
1
jun 20
547