Jump to content

Search the Community

Showing results for tags 'Steuerung von Sounds usw.'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Top
    • Latest News
    • Bulk Orders
  • Construction
    • MIDIbox NG
    • MIDIbox HUIs
    • MIDIbox SEQ
    • MIDIbox SID
    • MIDIbox FM
    • MIDIbox BLM
    • MIDIbox User Projects
    • MIDIfication
    • Design Concepts
    • Parts Questions
    • Testing/Troubleshooting
    • Tips & Tricks
    • MIDIbox Documentation Project
  • Software
    • MIDIbox Tools & MIOS Studio
    • MIOS programming (C)
    • MIOS programming (Assembler)
    • MIOS toy of the week
  • Miscellaneous
    • Fleamarket
    • Sale Requests
    • Miscellaneous
    • Songs & Sounds
  • Archive
    • Parts Archive
    • MIDIbox of the Week
  • Multilingual
    • Nordisk
    • Nederlands
    • Deutsch
    • Français
    • Italiano
    • Español
    • Português
    • Greek
    • Russian
    • Others

Blogs

  • Twin-X's Blog
  • j00lz - MB-6582 Build Log
  • Project "Desire MC1"
  • MIDIbox Live
  • protofuse's Blog
  • Joeri's Blog
  • Phil's MBSEQv4
  • taximan's home base
  • Kyo's Blog
  • Snoozr's Notes on Building an MB-6582
  • Amplification
  • dawidbass' Blog
  • SLP's Blog
  • MidiSax's Blog
  • blog_latenights
  • Non usare un modulo Lcd
  • Duggle's Blog
  • Rics' 4Decks
  • aaa135139's Blog
  • bilderbuchi's Blog
  • Alain6870's Blog
  • MidiMaigre 37
  • Digineural's Blog
  • Sylwester's Blog
  • olga42's Blog
  • MB9090 Blog
  • Zossen's Blog
  • stilz&Rumpel's Blog
  • Antichambre's Blog
  • MB TWINsid Blog
  • massenvernichtungswaffe.de
  • gslug's Blog
  • albpower2seq4sid's Blog
  • TB's MIDIBox Adventures
  • kHz-tone's Blog
  • Blatboy's Blog
  • geth's-building-stuff-Blog
  • Excursions in DIY land
  • Ralex's Blog
  • huanyupcb's Blog
  • Vicentiu Mincior's Blog
  • A journey through midibox LC construction
  • TheAncientOne's Blog
  • nebula's Blog
  • Sasha's Blog
  • Tales from the kit mill
  • novski's
  • nicolas' Blog
  • Gelpearl
  • Johan's Blog
  • midibox.org Blog
  • Wisefire build logs
  • ColleenMorris' Blog
  • brucefu's Blog
  • atribunella's Blog
  • Building my Seq
  • A Seqv4 kind of thing
  • ModulBox
  • ArumBlack
  • mongrol
  • Watch!!- Mission: Impossible – Fallout (HD) Movie Online.Full 4k
  • Watch!!- Hotel Transylvania 3 Summer Vacation (HD) Movie Online.Full 4k
  • Silver eagles sign football gamer Adam Zaruba since restricted stop
  • Watch!!- The Meg (HD) Movie Online.Full 4k
  • Steelkiwi Blog
  • Words1234
  • SSP
  • How to Solve the Excavator Hydraulic System Running Slowly
  • Eight Ways to Maintain Excavator Parts
  • Five Common Problems and Fault Analysis of Komatsu Excavator
  • Ficher Chem Co. Ltd: Buy Research Chemicals Online
  • Zazenergyli
  • Top Mobile App Development Company in USA
  • belkin range extender
  • wrong post

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 1 result

  1. Hallo MIOS Gemeinde, nachdem ich recht problemlos ein MIDIO128 um die IIC Ports erweitern konnte, komme ich nun zum zweiten Teil meines MIOS Projektes. Die Steuerung und Kontrolle meiner Wavetable Boards bzw. Expander per MIDIO128. Ursprünglich habe ich das Ganze ja als eigenständige Erweiterung geplant, da aber weitere Mitglieder dieser Gemeinde auch Interesse daran bekundet haben werde ich versuche das Ganze zu integrieren. Die Soundauswahl läuft schon und gestaltet sich wie folgt: Anordnung in 16 Soundgruppen als horizontales SCS-Menu. Auswahl der Sounds, bis zu 42 je Gruppe, als Werte innerhalb der Soundgruppen. Nur das Kürzel des aktuell ausgewählten Sound wird angezeigt. Die anderen Soundgruppen werden mit "----" ausgeblendet. Vorteil, man sieht auf den ersten Blick welchen Sound man gewählt hat. Stand der Programmierung ist derzeit des Rücksetzen der Sounds nach Partwechsel. Bei den Parametern bin ich schnell an die Grenzen des Verstehens gestossen, zu mal mir eine begrenzte Auswahl an WTB bzw. Expander zur Verfügung steht. Daher möchte ich hier das von mir erdachte Datenmodell vorstellen und bitte Euch um eine kritische Prüfung und ggf. Vorschläge zur Verbesserung. ///////////////////////////////////////////////////////////////////////////// // local Action and Control data ///////////////////////////////////////////////////////////////////////////// enum ActionDef { CC, SysEx, NRPN, RPN }; enum ActionDef Actiontyp; typedef struct { u8 wtbEmulation; Actiontyp Acttyp; char Name[11]; char AddrH[2]; char AddrM[2]; char AddrL[2}; char Data1[2]; char Data2[2]; char Data3[2]; char Data4[2]; u8 DataDigits; u16 Default; u16 SetOff; u16 VMin; u16 VMax; u16 VCenter; }wtbActionSet; /* Description of settings * "--" = notset * "0p" or "pp" = p will be replaced by Part Number * "0v" or "vv" = v will be replaced by Value from SCS * Data Digits > 1 Value will be splittet into 2 Digit 7..4 , 3..0 */ static u16 wtbActionSets; const wtbActionSet wtbAction[] { { 0, CC ,"PartVolume","07","--","--","vv","--","--","--", 1, 64,"--", 0,127, 0}, { 0, CC ,"Part Pan ","10","--","--","vv","--","--","--", 1, 64,"--", 0,127, 64}, { 0, SysEx,"PartDetune","08","pp","--","0v","0v","--","--", 2, 64,"--", 0,127, 0} }; Ich denke daran das Ganze über zwei SCS-Punkte als verticales Menue zu integrieren und die Auswahl des Wertes im darauf folgendem Menuepunkt anzubieten. Hierbei sollte es recht einfach möglich sein eigene Parameter einzupflegen. Ferner kann man durch die Struktur der Emulationen schnell eigene Emulation, z.B. mit den Lieblingssounds zur Schnellselection in Soundgruppe 1, ergänzen. Ferner ist angedacht innerhalb des Soundmenues ein alternatives Menu zur Schnellauswahl von Part Nummer und Lautstärke anzubieten. Ähnlich wie Thorsten das mit der altMainPage schon gemacht hat. Ich bin mir bewusst das es ein langer steiniger Weg wird auf dem ich Euch bestimmt noch mit vielen Fragen löchern werde, aber ich glaube das Projekt rechtfertigt dies. Nun aber ran an die Tastatur. Ich freue mich über jede Anregung bzw. konstruktive Kritik. Gruss Roman
×
×
  • Create New...