Skip to content

Millumin Control Surface 9+2

Advertising
Advertising
?
Creation quality: 0.0/5 (0 votes)
Evaluation of members on the printability, utility, level of detail, etc.

  • 1.7k views
  • 3 likes

License
3D design format
STL and ZIP Folder details Close
  • Botton_case_V3.2.stl
  • Left_case_V3.2.stl
  • Right_case_V3.2.stl
  • Top_case_V3.2.stl
  • _Library.zip
    • PacketSerial/keywords.txt
    • PacketSerial/README.md
    • PacketSerial/.gitignore
    • PacketSerial/examples/PacketSerialReverseEchoSLIP/PacketSerialReverseEchoSLIP.ino
    • PacketSerial/examples/PacketSerialReverseEcho/PacketSerialReverseEcho.ino
    • PacketSerial/library.properties
    • PacketSerial/src/Encoding/SLIP.h
    • PacketSerial/src/Encoding/COBS.h
    • PacketSerial/src/PacketSerial.h
    • MilluminStream/keywords.txt
    • MilluminStream/README.md
    • MilluminStream/examples/listening/listening.ino
    • MilluminStream/examples/servo/servo.ino
    • MilluminStream/examples/template/template.ino
    • MilluminStream/examples/streaming/streaming.ino
    • MilluminStream/library.properties
    • MilluminStream/src/MilluminStream.cpp
    • MilluminStream/src/MilluminStream.h

Learn more about the formats

Publication date 2021-02-11 at 08:38
?
Published to Thingiverse on: 2021-02-11 at 00:34
Design number 290851

3D printer file info

3D model description

Control Surface for Millumin, OBS and other streaming Software. Yuo can control 9+2 video/media imputs and 3 audio fonts.

Material you need:

  • Arduino Uno Board
  • 11 resistor 10K
  • 11 Momentary push Buttons
  • 3 potentiometer 10K

Also you need to install in Arduino IDE the llibrary MilluminStream.h

THE CODE

/*
streaming.ino
Created by Pipapelaa, 2021.
Creative Commons Attribution-NonCommercial 4.0 International Public License
*/

#include
#include

////////////////////////////////////////////////////////////////////////////////
// Initialisation
void setup()
{
// We setup MilluminStream
MilluminStream::setup();

pinMode(A1, INPUT); // pin Analog 1 as input to stream its potentiometer value
pinMode(A2, INPUT); // pin Analog 2 as input to stream its potentiometer value
pinMode(A3, INPUT); // pin Analog 3 as input to stream its potentiometer value

pinMode(2, INPUT_PULLUP); // pin Digital 2 as input to stream its pushbutton value
pinMode(3, INPUT_PULLUP); // pin Digital 3 as input to stream its pushbutton value
pinMode(4, INPUT_PULLUP); // pin Digital 4 as input to stream its pushbutton value
pinMode(5, INPUT_PULLUP); // pin Digital 5 as input to stream its pushbutton value
pinMode(6, INPUT_PULLUP); // pin Digital 6 as input to stream its pushbutton value
pinMode(7, INPUT_PULLUP); // pin Digital 7 as input to stream its pushbutton value
pinMode(8, INPUT_PULLUP); // pin Digital 8 as input to stream its pushbutton value
pinMode(9, INPUT_PULLUP); // pin Digital 9 as input to stream its pushbutton value
pinMode(10, INPUT_PULLUP); // pin Digital 10 as input to stream its pushbutton value
pinMode(11, INPUT_PULLUP); // pin Digital 11 as input to stream its pushbutton value
pinMode(12, INPUT_PULLUP); // pin Digital 12 as input to stream its pushbutton value

}

////////////////////////////////////////////////////////////////////////////////
// Loop
void loop()
{
// First, we need to update MilluminStream
MilluminStream::update();

// Then, we stream pin A1 to A3
MilluminStream::sendAnalogForID(1); // Add the value of A1 pin to the frame
MilluminStream::sendAnalogForID(2); // Add the value of A2 pin to the frame
MilluminStream::sendAnalogForID(3); // Add the value of A3 pin to the frame

// Then, we stream pin D2 to D12
MilluminStream::sendDigitalForID(2); // Add the value of D2 pin to the frame
MilluminStream::sendDigitalForID(3); // Add the value of D3 pin to the frame
MilluminStream::sendDigitalForID(4); // Add the value of D4 pin to the frame
MilluminStream::sendDigitalForID(5); // Add the value of D5 pin to the frame
MilluminStream::sendDigitalForID(6); // Add the value of D6 pin to the frame
MilluminStream::sendDigitalForID(7); // Add the value of D7 pin to the frame
MilluminStream::sendDigitalForID(8); // Add the value of D8 pin to the frame
MilluminStream::sendDigitalForID(9); // Add the value of D9 pin to the frame
MilluminStream::sendDigitalForID(10); // Add the value of D10 pin to the frame
MilluminStream::sendDigitalForID(11); // Add the value of D11 pin to the frame
MilluminStream::sendDigitalForID(12); // Add the value of D12 pin to the frame

// Finally we send just one frame with all our values
MilluminStream::sendFrame();
}

Advertising


Issue with this design? Report a problem.

Would you like to support Cults?

You like Cults and you want to help us continue the adventure independently? Please note that we are a small team of 3 people, therefore it is very simple to support us to maintain the activity and create future developments. Here are 4 solutions accessible to all:

  • ADVERTISING: Disable your banner blocker (AdBlock, …) and click on our banner ads.

  • AFFILIATION: Make your purchases online by clicking on our affiliate links here Amazon.

  • DONATE: If you want, you can make a donation via Ko-Fi πŸ’œ.

  • WORD OF MOUTH: Invite your friends to come, discover the platform and the magnificent 3D files shared by the community!


Sharing and downloading on Cults3D guarantees that designs remain in makers community hands! And not in the hands of the 3D printing or software giants who own the competing platforms and exploit the designs for their own commercial interests.

Cults3D is an independent, self-financed site that is not accountable to any investor or brand. Almost all of the site's revenues are paid back to the platform's makers. The content published on the site serves only the interests of its authors and not those of 3D printer brands who also wish to control the 3D modeling market.

100% secure payment by credit card, PayPal, Apple Pay, Google Pay, etc.
View all payment options.