Difference between revisions of "Introduction to Mixly"

From Microduino Wiki
Jump to: navigation, search
(Microduino Blocks)
(Microduino Blocks)
Line 113: Line 113:
 
|-
 
|-
 
| Communication
 
| Communication
|  
+
| Blocks for [[Communication modules]] that provide control for the [[Bluetooth module]], [[WiFi module]], IR [[transmitter]] & [[receiver]], and I2C bus master.
 
|-
 
|-
 
| Executor
 
| Executor

Revision as of 02:03, 1 February 2017

Mixly

This guide provides an introduction to Mixly. A drag and drop programming software (IDE) for Microduino and Arduino boards.

Setup

Please follow the setup guide for Mixly before proceeding the rest of this guide.

Mixly: Getting Started
MicroduinoGettingStart-ForWindows.jpg
MicroduinoGettingStart-ForMAC.jpg

Interface Layout

  • Open Mixly by opening the mixly.jar.

Mixly Interface.png

  • Section A. - Blocks.
  • Section B. - Workspace.
  • Section C. - Console.
  • Section D. - File Options.
  • 1. Undo - Reverts the last change.
  • 2. Redo - Reverts the last undo.
  • 3. Language Selection - Select the language of Mixly. Select-able languages are English, Spanish & Chinese
  • 4. Code Preview - Opens a panel which shows the generated code from the Workspace blocks.
  • 5. Zoom Reset - Resets the zoom to the default level.
  • 6. Zoom In - Zoom in on the Workspace.
  • 7. Zoom Out - Zoom out on the Workspace.
  • 8. Trash Bin - Drag to the trash bin to delete blocks from the Workspace.
  • 9. Upload Code - Compiles and uploads the code generated from the Workspace.
  • 10. Compile Code - Compiles the code generated from the Workspace, but DOESN'T upload the code. Used to test if the code compiles without uploading it to a Core module afterwards.
  • 11. Board Selection - Select the type of Core module/Arduino from this drop down menu that will be programmed.
  • 12. COM Port Selection - Select the COM Port that the Core module/Arduino is connected to.
  • 13. Serial Monitor - Opens the serial monitor that is used to send and receive data from the Core module/Arduino.
  • 14. Test Hardware - Uploads a program to the attached board and tests to see if it is functional.
  • 15. Interface Size - Scales the size of the interface of Mixly.

Blocks

Blocks are the pieces used to create code in Mixly. The blocks connects to each other if compatible. Incompatible blocks will not fit together. A program in Mixly is the collection of several blocks configured to perform a duty.

There are various types of blocks sorted into different categories. These include:

Category Description
In / Out Blocks that controls the analog / digital pins on the Core module (or Arduino) boards. Such as digital write / read, analog write / read and interrupts.
Control Blocks that determine the way the program executes. Such as if / else statements, delays, and loops.
Math Blocks that provide mathematical functions such as arithmetic, trigonometric functions, etc.
Text Blocks that provides text, text comparison, and text manipulation.
Lists Blocks that creates lists and list accessing.
Logic Blocks that are used for logically comparison. Such as equals, or/and and true/false.
SerialPort Blocks to configure, use, and read / write to the Serial Port.
Communicate Blocks for other forms of communication such as IR, I2C, SPI, etc.
Storage Blocks for storage of data on a SD card (SD module needed) or on board EEPROM.
Sensor Blocks for reading from an ultrasonic range finder, DHT11, DS18B20 or GPS. (Respective modules required.)
Actuator Blocks for servos, buzzers (tone), LCD, and stepper motors. (Respective modules required.)
Ethernet Blocks for Ethernet (network) communication.
Variables Blocks for declaring and accessing variables.
Functions Blocks for creating functions. Functions or subroutines are a block of code that serves a specific purpose and is seperated from the main code for ease of understanding, re-usability and organization.
Factory Blocks that are closely similar to C/C++ code. These blocks are defined because there is no other way to express them in other categories.

Microduino Blocks

There are additional block categories related specifically to Microduino. These block categories can be accessed by click on the Microduino tab on the side.

There are various types of blocks sorted into different categories. These include:

Category Description
Core Blocks for Core modules that provided some misc. functions such as while loops, for loops, analog write / read.
Extended Blocks for Extension modules that provide controls for motors ([[Motor Shield]), stepper motor (Stepper Shield), dot matrix (Dot Matrix), and OLED (OLED module).
Function Blocks for Function modules that provide control for Audio play back (Audio module), Real Time Clock (RTC module), GPS (GPS module), Motion (Motion module), and SD storage (SD module).
Communication Blocks for Communication modules that provide control for the Bluetooth module, WiFi module, IR transmitter & receiver, and I2C bus master.
Executor
Sensor
VariableExpansion