Search results

  1. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    Good morning. Just updating you. Everything is working great. Thank you for all your help. Is there a good course to take to help to learn coding?
  2. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    I now have the midi notes showing up on Midi-Ox. working on having the computer recognize Teensy Midi
  3. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    Per the code you sent, all 4 buttons work with pressed and released. That is what I was trying to do. Im positive on my first try I could not of come up with that code. I appreciate the help. Since the buttons are now working, I need to figure out how the board is recognized as midi buttons. or...
  4. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    I got button 8 to work pressed not pressed. Trying to duplicate it for the other buttons. Here is what I did. void setup() { Serial.begin(38400); pinMode(8, INPUT_PULLUP); pinMode(7, INPUT_PULLUP); pinMode(6, INPUT_PULLUP); pinMode(5, INPUT_PULLUP); pinMode(4, INPUT_PULLUP)...
  5. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    void setup() { Serial.begin(38400); pinMode(8, INPUT_PULLUP); } void loop() { if (digitalRead(8) == HIGH) { Serial.println("Button is not pressed..."); } else { Serial.println("Button pressed!!!"); } delay(3000); }
  6. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    /* Buttons to USB MIDI Example You must select MIDI from the "Tools > USB Type" menu To view the raw MIDI data on Linux: aseqdump -p "Teensy MIDI" This example code is in the public domain. */ #include <Bounce.h> // the MIDI channel number to send messages const int channel = 1...
  7. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    void setup() { Serial.begin(38400); } void loop() { if (digitalRead(8) == HIGH) { Serial.println("Button is not pressed..."); } else { Serial.println("Button pressed!!!"); } delay(3000); }
  8. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    Quick question, as I reconnect the board wiring I have the serial monitor open. I get button pressed !!! but nothing else happens. If this is correct, shouldn't I get button pressed when initially pressed then released get button not pressed?
  9. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    Good morning Gavin and thank you for your response. I have been working on the unit based on the information given, but what I have noticed is there are other components added to the tutorials given. That seems to complicate the basics. Although to many that is basic, but to a newbie like...
  10. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    I got the press button code loaded and when the button is pushed it goes from off to on and stays on. it doesn't turn back off. So Im getting close... midi Ox is for windows. Is there a midi monitor for Mac? I have the Controller attached to wind a Midi-Ox and this is the message I got. Also...
  11. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    Good morning. I followed the tutorial and I managed to set the button per the example and was able to get the 3.3 volts to the positive and negative of the button. Per my midi software. I'm using the 4 buttons to start, stop, next sequence, previous sequence. That is easy to do in the software...
  12. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    I am very new to coding. Im an electrician by trade, my buttons are standard momentary buttons. Im trying to just set up 4 midi buttons to stop and start a sequence. No synth just for buttons. Im trying to understand how tis board works. I will watch the tutorial. Do I attach a button to O and 1?
  13. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    Teensy 4.0 and not sure how to hook up the buttons. I plugged a push button between pin 0 and pin 1. Nothing happens.
  14. D

    New to Coding. I just want to make 4 midi push buttons work. I have loaded what was recommended and I am at a loss. Not sure what else to do.

    /* Buttons to USB MIDI Example You must select MIDI from the "Tools > USB Type" menu To view the raw MIDI data on Linux: aseqdump -p "Teensy MIDI" This example code is in the public domain. */ #include <Bounce.h> // the MIDI channel number to send messages const int channel = 1...
Back
Top