/ monday microcontroller

Monday Microcontroller: MAKER UNO

Another Arduino Uno compatible?

boards
I may have a few boards in my collection.

So this is another Arduino clone right?

Short answer is yes, but this is a little different.

So what is it?

main
The Cytron MAKER UNO is an Arduino Uno clone that is firmly designed for educational use. Clear GPIO pin numbering, built in LEDs, buzzer and button mean that learners can start building simple projects and in doing so build their confidence in electronics and programming.

Cytron? That name sounds familiar!
Maker Drive
Well remembered! Cytron also make the MAKER DRIVE which I looked at in April.

Dimensions

Dimensions
Measuring 69mm by 60mm the MakerUNO looks like a typical Arduino Uno and shares a similar layout but this board is slightly larger.
comparison-1
So I compared it with two other Arduino boards. At the top I have my original Arduino Uno, and to the right is a 4tronix 4duino pro which is my go to Arduino board.

Can I use a shield?

Shield2
Yup, Arduino add on boards (shields) are compatible.

Animated-GIF-downsized_large--4-

Hi reader!

I never put my blog posts behind paywall or pop ups because quite frankly that is annoying and prevents anyone from accessing the content. I will always keep my blog content free of charge. But I do ask that if you are able and willing, that you buy me a "coffee" as it helps me to pay for hosting this blog, and to buy stuff to hack from Poundshops / Dollar Stores / Aliexpress which are used in free projects and reviews on this blog. It is You dear reader who make this possible, and I am immensely grateful for your support.
Thanks!

What's on the board?

microUSB
The MAKER UNO has no DC barrel jack input, it relies on a micro USB port for data and 5V power. There is also no VIN input on the board to power via an external power source.
pins
The usual array of GPIO pins are present, 6 analog pins, 14 digital pins of which 6 can be used with PWM.
A-Pins
The stickers are optional. Handy for class but I'm not that keen so will take them off when they get grubby.
D-Pins-1
Three big differences with this board are that there is an additional push button, connected to pin 2, which can be used in our project.
buzzer
There is a built in buzzer for simple tones and music, and there is a off switch too. Useful if using these boards in class.

Lastly for pins 2 to 13 we have built in LEDs. But what is so important about that? Have you ever wanted to know if a GPIO pin is working? Did you ever put in an LED backwards? Well these LEDs will show you that the pin in working correctly. so you can diagnose the issue a little quicker.

So show me something cool!

videotogif_2020.06.14_15.41.24
Here is a quick Arduino sketch which I wrote to blink all of the LEDs really quickly! It uses three for loops, one in the setup, another two in the loop. The setup for loop is used to set each of the pins (3 to 13) as outputs. The other two for loops are used to turn each of the LEDs on and off at high speed.

int pin;
int i;
int time;
void setup() {
  for (i = 3; pin < 14; pin++) { 
    pinMode(i, OUTPUT);
    time = 3;
  }
}

void loop() {
  for (pin = 2; pin <14; pin++) {
  digitalWrite(pin, HIGH);
  delay(time);
  digitalWrite(pin, LOW);
  delay(time);
  }
  for (pin = 13; pin >1; pin--) {
  digitalWrite(pin, HIGH);
  delay(time);
  digitalWrite(pin, LOW);
  delay(time);
  }
}

Learning Resources

Lessons

Screenshot-from-2020-06-14-15-13-17
One of the key selling points for this board is that there are a series of lessons (PDF Link) which take the learner through setting up, using the onboard input / outputs and then connecting to external components.

Fritzing

Screenshot-from-2020-06-13-18-33-54
There is even a Fritzing part (Direct Link) for this board, very useful when creating resources for class or blogs...hint.

So what do you think of this board?

main
I really like the MAKER UNO, and I like what Cytron, the creators, are highlighting by adding the extra features. The built in LEDs, buzzer and button are simplifications and while they are not teaching us how to wire up components, they are enabling anyone to get comfortable with the code and the device, before introducing breadboarding.
comparison-2-2
I'll still be using my 4duino Pro as my go to Arduino, but the MAKER UNO board will the one that I choose to use with kids at events.

So where can I get one?

Screenshot-from-2020-06-14-16-04-46
I picked mine up from The Pi Hut for £7. I purchased the basic version, bare board.
Screenshot-from-2020-06-14-16-08-46
But there are other versions, including a full blown EduKit with motors, LEDs, breadboard etc.
If you do not live in the UK, the MAKER UNO can also be bought direct from Cytron.

Happy Hacking