Tutorials Alternatives

Similar projects and alternatives to tutorials

  • Ethernet

    Ethernet Library for Arduino (by arduino-libraries)

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better tutorials alternative or higher similarity.

tutorials reviews and mentions

Posts with mentions or reviews of tutorials. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-07.
  • Help adding an Octave up and down feature to my DIY Arduino midi controller.
    1 project | /r/synthdiy | 8 Feb 2023
    // See https://github.com/arduino/tutorials/blob/master/ArduinoZeroMidi/PitchToNote.h
  • DIY Arduino midi controller to a pcb
    2 projects | /r/arduino | 7 Feb 2023
    #include "MIDIUSB.h" const byte TOTAL_BUTTONS = 16; // All the Arduino pins used for buttons, in order. const byte BUTTONS_PIN[TOTAL_BUTTONS] = {2,3,4,5,6,7,8,9,10,11,12,A0,A1,A2,A3,A4}; // Every pitch corresponding to every Arduino pin. Each note has an associated numeric pitch (frequency scale). // See https://github.com/arduino/tutorials/blob/master/ArduinoZeroMidi/PitchToNote.h const byte BUTTONS_PITCH[TOTAL_BUTTONS] = {36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51}; // Current state of the pressed buttons. byte currentRead[TOTAL_BUTTONS]; // Temporary input reads to check against current state. byte tempRead; // The setup function runs once when you press reset or power the board void setup() { // Initialize all the pins as a pull-up input. for (byte i = 0; i < TOTAL_BUTTONS; i++) { pinMode(BUTTONS_PIN[i], INPUT_PULLUP); } } // The loop function runs over and over again forever void loop() { for (byte i = 0; i < TOTAL_BUTTONS; i++) { // Get the digital state from the button pin. // In pull-up inputs the button logic is inverted (HIGH is not pressed, LOW is pressed). byte buttonState = digitalRead(BUTTONS_PIN[i]); // Temporarily store the digital state. tempRead = buttonState; // Continue only if the last state is different to the current state. if (currentRead[i] != tempRead) { // See https://www.arduino.cc/en/pmwiki.php?n=Tutorial/Debounce delay(2); // Get the pitch mapped to the pressed button. byte pitch = BUTTONS_PITCH[i]; // Save the new input state. currentRead[i] = tempRead; // Execute note on or noted off depending on the button state. if (buttonState == LOW) { noteOn(pitch); } else { noteOff(pitch); } } } } void noteOn(byte pitch) { MidiUSB.sendMIDI({0x09, 0x90, pitch, 127}); MidiUSB.flush(); } void noteOff(byte pitch) { MidiUSB.sendMIDI({0x08, 0x80, pitch, 0}); MidiUSB.flush(); }

Stats

Basic tutorials repo stats
2
70
0.0
9 months ago

The primary programming language of tutorials is C++.

Popular Comparisons


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com