Rhino Board. Powering FEZ Rhino

Size: px
Start display at page:

Download "Rhino Board. Powering FEZ Rhino"

Transcription

1 Rhino Board FEZ Rhino is a small sophisticated OEM board, running Microsoft.NET Micro Framework based on the USBizi144 Chipset. This means you can write code with greater efficiency using the C# programming language and Microsoft's free Visual C# Express edition. Many libraries are included, such as FAT file system, threading, UART, SPI, I2C, GPIO, PWM, ADC, DAC and more. To get started with FEZ, please take a look at the FEZ Tutorial and.net Micro Micro Framework Beginners Guide available on Powering FEZ Rhino The easiest way to power FEZ Rhino is through the USB cable. In case the board is powered through USB, the voltage on the 5V pins will be sourced directly from the PC USB 5 volts which is in most cases less than 5volts (4.5 to 5 volts). Optionally, the power connector can be used as well. Using either power source will efficiently supply power to the 3.3V and 5V pins. The regulators on Rhino are capable of high voltages (over 12V) but, since FEZ Rhino might be connected to other peripherals like the Ethernet Wiznet module or Display Expansions, the regulators will heat up. So It is recommended to keep the voltage in 7 to 12 volt range. If you have REGULATED 5V and want to use that then solder a wire between VIN and 5V on the expansion header. Again, REGULATED 5V.

2 A Glance on FEZ Rhino IO GND USB Client Connector RTC Clock Reset Button IO IO28 IO IO26 IO IO20 IO IO18 IO IO32 Vertical USB Host Connector IO RTC VBAT SD/SDHC /MMC GHI's USBizi 72Mhz ARM chipset driven by Microsoft.NET Micro Framework IO Reset# IO IO29 IO IO31* IO IO33* Power LED UEXT connector with 8 IOs used to connect MP3,GPS or other extensions. IO IO23 IO IO19 IO IO15 A place for optional WIZ811MJ Ethernet Module 50 pin header exposing IOs and signals IO IO59 IO IO17 IO IO13 IO65 LED IO IO4 IO IO7 IO IO42 IO IO41 External Power Connector 7-12V 4 IOs through optional JST connectors used for Components such as XBee, Bluetooth and other Sensors. These headers are not included with the board. * IO31 and IO33 are open drain pins with 2.2K pull up resistors. Loader Button IO IO40 IO V in (7-12V) IO Volts GND Volts In/Out

3 FEZ Rhino Pins Features All pins on the 0.1" headers and extension headers can be used as digital input/output. Some pins have secondary features. Do not attempt to use a pin as digital and as a secondary feature simultaneously. For example, when using IO2 as PWM, do not use IO2 as a digital I/O until you release the PWM feature (in code). Secondary Feature if available IO Pin IO Secondary Feature if available None IO GND Ground None IO IO28* Analog Input 0 None IO IO26* Analog Input 1 None IO IO20* COM1 IN None IO IO18* COM1 OUT None IO IO32 Analog Input 5 None IO VBAT Real Time Clock VBAT Analog Input 6 IO30* Reset# Reset on Low None IO IO29 Analog Input 4 Analog Input 7 IO27* IO31* (Open Drain Pin) I2C SCL None IO IO33* (Open Drain Pin) I2C SDA None IO IO23 PWM3 None IO IO19* CAN1 RD (IN) None IO IO15* CAN1 RD (OUT) None IO IO59 None CAN2 RD (IN) IO16* IO17 COM4 IN CAN2 TD (OUT) IO14* IO13 COM4 OUT PWM5 IO2* IO4* PWM4 / MODE None IO9* IO7* PWM6 COM3 OUT IO36* IO42* SPI1 SCK (Clock) COM3 IN IO37* IO41* SPI1 MOSI (OUT) None IO43* IO40* SPI1 MISO (IN) None IO V in V in external power 7-12V None IO V 3.3 Volts Out Ground GND Volts 5Volts In/Out * These pins can work as interrupt inputs COM = USART = Serial Port

4 UEXT Connector UEXT connector is made to be compatible with extensions such as MP3 decoder, GPS or 3-axis accelerometer. Many extensions are already available on. JST Connectors Secondary Feature if available IO Pin IO Secondary Feature if available 3.3 Volts Out 3.3V 1 2 GND Ground COM2 OUT IO5* 3 4 IO3* COM1 IN COM2 RTS IO11* 5 6 IO1* COM2 CTS SPI2 MISO (IN) IO8* 7 8 IO6* SPI2 MOSI (OUT) SPI2 SCK (Clock) IO10* 9 10 IO12* None * These pins can work as interrupt inputs COM = USART = Serial Port With these connectors you can plug directly many of components available on such as Wireless XBee expansion, Bluetooth, or the many available sensors. that can plug directly onto FEZ. For example, to have some light indicators, we will need the LED component. These JST female headers include 3 pins each. The middle pin is the signal which is connected directly to the relative pin on FEZ board, as marked on the header. Pin Secondary Features Pin Secondary Features IO22* Analog Input 3 COM4 IN + IO24* Analog Input 2 COM4 OUT + Analog Output IO35 PWM1 IO25 PWM2 + Check COM4 Remapping * These pins can work as interrupt inputs COM = USART = Serial Port Important note: These JST connectors are not included with the board. They are available to purchase separately on tinyclr.com or any other electronics retailer, this is the part number B3B-PH-K-S(LF)(SN). Minimum soldering experience is required to place them on the board. Remapping COM4 IO22 and IO24 are special because they can be digital, analog, or remapped to work as COM4, where IO22 is COM4 IN and IO24 is COM4 OUT. Call the function below to remap COM4 // add this on top of your code using GHIElectronics.NETMF.Hardware.LowLevel; using System.IO.Ports; //... // add this function anywhere static public void RemapCOM4to_TXIO24_RXIO22(SerialPort ser) // call this function **after** you open COM4 port if (ser.portname!= "COM4" ser.isopen == false) throw new Exception("Only use COM4 and make sure it is open"); // remap COM4 RX (in) pin from P4.29/IO17 to P0.26 (that is IO22) // remap COM4 TX (out) pin from P4.28/IO13 to P0.25 (that is IO24)

5 Register PINSEL9 = new Register(0xE002C024); PINSEL9.Write(0);// COM4 is now disconnected from P4.28 and P4.29 Register PINSEL1 = new Register(0xE002C004); PINSEL1.SetBits(0xf << 18);// COM4 is now connected to IO22 and IO24 Once the code above is added, you can use COM4 on An2 and An3 as shown below. public static void Main() SerialPort MyCOM4 = new SerialPort("COM4", , Parity.None, 8, StopBits.One); //MyCOM4.ReadTimeout = 1000; MyCOM4.Open(); RemapCOM4to_TXAn2_RXAn3(MyCOM4); byte[] hellobytes = Encoding.UTF8.GetBytes("Hello!"); // write data to COM4 which will be sent out on pin An2 MyCOM4.Write(helloBytes, 0, hellobytes.length); //... //... USB Host Connector USB host allows FEZ Rhino to access most USB devices. Reading a mouse, keyboard or joystick? How about reading and writing files on your thumb drive? Or controlling your printer? No problem, FEZ Rhino can do it. micro SD card Connector Developers can read/write files on a micro SD cards directly with FEZ Rhino with an on-board micro SD socket and FAT file system library. Networking with Fez Rhino Connect your FEZ Rhino to a wired network though Ethernet by adding the Wiznet Ethernet module WIZ811MJ.

6 Here is a simple example that has been adopted from the NETMF SDK examples (SocketServer example) and edited to get it working with W5100 sockets libraries. Only minor addition is needed as you can see because the W5100 libraries made to be compatible with the original System.Net libraries. Note: You need to add the following libraries (assemblies) GHIElectronics.NETMF.W5100 and Microsoft.SPOT.Hardware. FEZ tutorial Document shows how to create projects and add libraries and component drivers. Code snippet: using System; using System.Threading; using Microsoft.SPOT; using Microsoft.SPOT.Hardware; using GHIElectronics.NETMF.FEZ; using GHIElectronics.NETMF.Net; using GHIElectronics.NETMF.Net.Sockets; using GHIElectronics.NETMF.Net.NetworkInformation; using System.Text; using Socket = GHIElectronics.NETMF.Net.Sockets.Socket; /// <summary> /// This is a simple web server. Given a request, it returns an HTML /// document. The same document is returned for all requests and no parsing of /// the request is done. /// </summary> public static class MySocketServer public static void Main() const Int32 c_port = 80; byte[] ip = 192, 168, 0, 200 ; byte[] subnet = 255, 255, 255, 0 ; byte[] gateway = 192, 168, 0, 1 ; byte[] mac = 43, 185, 44, 2, 206, 127 ; WIZnet_W5100.Enable(SPI.SPI_module.SPI1, (Cpu.Pin)38, (Cpu.Pin)67, true); NetworkInterface.EnableStaticIP(ip, subnet, gateway, mac); NetworkInterface.EnableStaticDns(new byte[] 192, 168, 0, 1 ); Socket server = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); IPEndPoint localendpoint = new IPEndPoint(IPAddress.Any, c_port); server.bind(localendpoint); server.listen(1); while (true) // Wait for a client to connect. Socket clientsocket = server.accept(); // Process the client request. true means asynchronous. new ProcessClientRequest(clientSocket, true); /// <summary>

7 /// Processes a client request. /// </summary> internal sealed class ProcessClientRequest private Socket m_clientsocket; /// <summary> /// The constructor calls another method to handle the request, but can /// optionally do so in a new thread. /// </summary> /// <param name="clientsocket"></param> /// <param name="asynchronously"></param> public ProcessClientRequest(Socket clientsocket, Boolean asynchronously) m_clientsocket = clientsocket; if (asynchronously) // Spawn a new thread to handle the request. new Thread(ProcessRequest).Start(); else ProcessRequest(); /// <summary> /// Processes the request. /// </summary> private void ProcessRequest() const Int32 c_microsecondspersecond = ; // 'using' ensures that the client's socket gets closed. using (m_clientsocket) // Wait for the client request to start to arrive. Byte[] buffer = new Byte[1024]; if (m_clientsocket.poll(5 * c_microsecondspersecond, SelectMode.SelectRead)) // If 0 bytes in buffer, then the connection has been closed, // reset, or terminated. if (m_clientsocket.available == 0) return; // Read the first chunk of the request (we don't actually do // anything with it). Int32 bytesread = m_clientsocket.receive(buffer, m_clientsocket.available, SocketFlags.None); // Return a static HTML document to the client. String s = "HTTP/ OK\r\nContent-Type: text/html; charset=utf- 8\r\n\r\n<html><head><title>.NET Micro Framework Web Server on USBizi Chipset </title></head>" + "<body><bold><a href=\" more about the.net Micro Framework with FEZ by clicking here</a></bold></body></html>"; byte[] buf = Encoding.UTF8.GetBytes(s);

8 int offset = 0; int ret = 0; int len = buf.length; while (len > 0) ret = m_clientsocket.send(buf, offset, len, SocketFlags.None); len -= ret; offset += ret; m_clientsocket.close();

9 UDP server (receive) example using System; using System.Threading; using Microsoft.SPOT; using Microsoft.SPOT.Hardware; using GHIElectronics.NETMF.FEZ; using GHIElectronics.NETMF.Net; using GHIElectronics.NETMF.Net.Sockets; using GHIElectronics.NETMF.Net.NetworkInformation; using System.Text; using Socket = GHIElectronics.NETMF.Net.Sockets.Socket; namespace FEZ_Panda_UDP public class Program public static void Main() byte[] ip = 192, 168, 0, 200 ; byte[] subnet = 255, 255, 255, 0 ; byte[] gateway = 192, 168, 0, 1 ; byte[] mac = 43, 185, 44, 2, 206, 127 ; WIZnet_W5100.Enable(SPI.SPI_module.SPI1, (Cpu.Pin)38, (Cpu.Pin)67, true); NetworkInterface.EnableStaticIP(ip, subnet, gateway, mac); NetworkInterface.EnableStaticDns(new byte[] 192, 168, 0, 1 ); Socket serversocket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); EndPoint remoteendpoint = new IPEndPoint(IPAddress.Any, 2000); serversocket.bind(remoteendpoint); int i = 1; while (true) if (serversocket.poll(-1, SelectMode.SelectRead)) byte[] inbuf = new byte[serversocket.available]; int count = serversocket.receivefrom(inbuf, ref remoteendpoint); Debug.Print(new String(Encoding.UTF8.GetChars(inBuf)));

10 This is a simple UDP send (client) example: using System; using System.Threading; using Microsoft.SPOT; using Microsoft.SPOT.Hardware; using GHIElectronics.NETMF.FEZ; using GHIElectronics.NETMF.Net; using GHIElectronics.NETMF.Net.Sockets; using GHIElectronics.NETMF.Net.NetworkInformation; using System.Text; using Socket = GHIElectronics.NETMF.Net.Sockets.Socket; namespace FEZ_Panda_UDP public class Program public static void Main() byte[] ip = 192, 168, 0, 200 ; byte[] subnet = 255, 255, 255, 0 ; byte[] gateway = 192, 168, 0, 1 ; byte[] mac = 43, 185, 44, 2, 206, 127 ; WIZnet_W5100.Enable(SPI.SPI_module.SPI1, (Cpu.Pin)38, (Cpu.Pin)67, true); NetworkInterface.EnableStaticIP(ip, subnet, gateway, mac); NetworkInterface.EnableStaticDns(new byte[] 192, 168, 0, 1 ); Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); IPAddress DestinationIP = new IPAddress(new byte[] 192, 168, 0, 1 ); IPEndPoint DestinationEndPoint = new IPEndPoint(DestinationIP, 2000); byte[] buf; for (int y = 0; y < 1000; y++) Thread.Sleep(2000); buf = Encoding.UTF8.GetBytes("Hello World from FEZ Panda" + y.tostring()); try socket.sendto(buf, DestinationEndPoint); catch

11 FEZ Display Expansion An optional SPI-based display expansion board can be connected easily to FEZ Rhino through a UEXT connector. The display expansion can optionally work with 2x16 character display. You will probably want to use the 128x64 graphical display that we selected for FEZ Rhino but if you want the smaller character display then it is possible with minimal work! An optional enclosure for your project with FEZ Rhino This optional plastic enclosure is custom made for FEZ Rhino. The opening on one side exposes all the connectors and the opening on top side is ready for the one color graphical display. The other side of the enclosure is made for the user to add any additional components. And More... With FEZ Rhino OEM board you can break the hard rules of having fast and neat embedded system solution and get it in a "Freakin' Easy" way. Own one and discover the possibilities. Don't forget to check our website for all the information you need. Also, your questions are always welcomed and appreciated on /forum For more details on USBizi Module Consult USBizi User Manual

EMX Module Specifications

EMX Module Specifications EMX is a combination of hardware (ARM Processor, Flash, RAM, Ethernet PHY...etc) on a very small (1.55 x1.8 ) SMT OEM 8-Layer board that hosts Microsoft.NET Micro Framework with various PAL/HAL drivers.

More information

G120 Module Specifications

G120 Module Specifications G120 Module is a surface-mount System on Module (SoM) that runs.net Micro Framework software platform; a tiny version of Microsoft.NET framework. The value of G120 Module is not only in the hardware capabilities

More information

Prototyping Module Datasheet

Prototyping Module Datasheet Prototyping Module Datasheet Part Numbers: MPROTO100 rev 002 Zenseio LLC Updated: September 2016 Table of Contents Table of Contents Functional description PROTOTYPING MODULE OVERVIEW FEATURES BLOCK DIAGRAM

More information

Rev. 4.4 March 10, 2011 User Manual. This document covers information about USBizi Chipset, specifications, tutorials and references.

Rev. 4.4 March 10, 2011 User Manual. This document covers information about USBizi Chipset, specifications, tutorials and references. Rev. 4.4 March 10, 2011 User Manual USBizi Chipset LQFP144 USBizi Chipset LQFP100 Document Information Information Abstract Description This document covers information about USBizi Chipset, specifications,

More information

ARDUINO MEGA ADK REV3 Code: A000069

ARDUINO MEGA ADK REV3 Code: A000069 ARDUINO MEGA ADK REV3 Code: A000069 OVERVIEW The Arduino MEGA ADK is a microcontroller board based on the ATmega2560. It has a USB host interface to connect with Android based phones, based on the MAX3421e

More information

ARDUINO LEONARDO ETH Code: A000022

ARDUINO LEONARDO ETH Code: A000022 ARDUINO LEONARDO ETH Code: A000022 All the fun of a Leonardo, plus an Ethernet port to extend your project to the IoT world. You can control sensors and actuators via the internet as a client or server.

More information

ARDUINO YÚN MINI Code: A000108

ARDUINO YÚN MINI Code: A000108 ARDUINO YÚN MINI Code: A000108 The Arduino Yún Mini is a compact version of the Arduino YUN OVERVIEW: Arduino Yún Mini is a breadboard PCB developed with ATmega 32u4 MCU and QCA MIPS 24K SoC CPU operating

More information

keyestudio Keyestudio MEGA 2560 R3 Board

keyestudio Keyestudio MEGA 2560 R3 Board Keyestudio MEGA 2560 R3 Board Introduction: Keyestudio Mega 2560 R3 is a microcontroller board based on the ATMEGA2560-16AU, fully compatible with ARDUINO MEGA 2560 REV3. It has 54 digital input/output

More information

PCB-STM32-F3U. Development baseboard for the STMicro Discovery-F3 module (STMicro part# STM32F3DISCOVERY)

PCB-STM32-F3U. Development baseboard for the STMicro Discovery-F3 module (STMicro part# STM32F3DISCOVERY) PCB-STM32-F3U Development baseboard for the STMicro Discovery-F3 module (STMicro part# STM32F3DISCOVERY) Part Number: PCB-STM32-F3U (unpopulated PCB with Discovery module sockets, no other parts) STM32-F3U

More information

Arduino Uno. Arduino Uno R3 Front. Arduino Uno R2 Front

Arduino Uno. Arduino Uno R3 Front. Arduino Uno R2 Front Arduino Uno Arduino Uno R3 Front Arduino Uno R2 Front Arduino Uno SMD Arduino Uno R3 Back Arduino Uno Front Arduino Uno Back Overview The Arduino Uno is a microcontroller board based on the ATmega328 (datasheet).

More information

G80 SoC Datasheet. Where Hardware Meets Software

G80 SoC Datasheet. Where Hardware Meets Software GHI Electronics, LLC 501 E. Whitcomb Ave. Madison Heights, Michigan 48071 Phone: (248) 397-8856 Fax: (248) 397-8890 www.ghielectronics.com G80 SoC Datasheet Where Hardware Meets Software GHI Electronics,

More information

ARDUINO MEGA 2560 REV3 Code: A000067

ARDUINO MEGA 2560 REV3 Code: A000067 ARDUINO MEGA 2560 REV3 Code: A000067 The MEGA 2560 is designed for more complex projects. With 54 digital I/O pins, 16 analog inputs and a larger space for your sketch it is the recommended board for 3D

More information

Arduino ADK Rev.3 Board A000069

Arduino ADK Rev.3 Board A000069 Arduino ADK Rev.3 Board A000069 Overview The Arduino ADK is a microcontroller board based on the ATmega2560 (datasheet). It has a USB host interface to connect with Android based phones, based on the MAX3421e

More information

ARDUINO UNO REV3 SMD Code: A The board everybody gets started with, based on the ATmega328 (SMD).

ARDUINO UNO REV3 SMD Code: A The board everybody gets started with, based on the ATmega328 (SMD). ARDUINO UNO REV3 SMD Code: A000073 The board everybody gets started with, based on the ATmega328 (SMD). The Arduino Uno SMD R3 is a microcontroller board based on the ATmega328. It has 14 digital input/output

More information

Sanguino TSB. Introduction: Features:

Sanguino TSB. Introduction: Features: Sanguino TSB Introduction: Atmega644 is being used as CNC machine driver for a while. In 2012, Kristian Sloth Lauszus from Denmark developed a hardware add-on of Atmega644 for the popular Arduino IDE and

More information

ARDUINO PRIMO. Code: A000135

ARDUINO PRIMO. Code: A000135 ARDUINO PRIMO Code: A000135 Primo combines the processing power from the Nordic nrf52 processor, an Espressif ESP8266 for WiFi, as well as several onboard sensors and a battery charger. The nrf52 includes

More information

ARDUINO MICRO WITHOUT HEADERS Code: A000093

ARDUINO MICRO WITHOUT HEADERS Code: A000093 ARDUINO MICRO WITHOUT HEADERS Code: A000093 Arduino Micro is the smallest board of the family, easy to integrate it in everyday objects to make them interactive. The Micro is based on the ATmega32U4 microcontroller

More information

ARDUINO UNO REV3 Code: A000066

ARDUINO UNO REV3 Code: A000066 ARDUINO UNO REV3 Code: A000066 The UNO is the best board to get started with electronics and coding. If this is your first experience tinkering with the platform, the UNO is the most robust board you can

More information

EMX Development System

EMX Development System July 21, 2010 G H I Getting Started E l e c t r o n i c s Table of Contents Table of Contents 1.Introduction...3 The objective of this Guide...4 2.Getting Started...5 2.1.System Setup...5 2.2.The Emulator...6

More information

ESPino - Specifications

ESPino - Specifications ESPino - Specifications Summary Microcontroller ESP8266 (32-bit RISC) WiFi 802.11 (station, access point, P2P) Operating Voltage 3.3V Input Voltage 4.4-15V Digital I/O Pins 9 Analog Input Pins 1 (10-bit

More information

Part Number: PCB-STM32-F4B1 (unpopulated PCB with Discovery module sockets, no other parts) STM32-F4B1 (assembled board, not presently available)

Part Number: PCB-STM32-F4B1 (unpopulated PCB with Discovery module sockets, no other parts) STM32-F4B1 (assembled board, not presently available) PCB-STM32-F4B1 Development baseboard for the STMicro Discovery-F4 module (STMicro part# STM32F4DISCOVERY) PCB Rev 1.00 shown. PCB Rev 1.20 has on-board RS232 drivers. Part Number: PCB-STM32-F4B1 (unpopulated

More information

Pmod modules are powered by the host via the interface s power and ground pins.

Pmod modules are powered by the host via the interface s power and ground pins. 1300 Henley Court Pullman, WA 99163 509.334.6306 www.store. digilent.com Digilent Pmod Interface Specification 1.2.0 Revised October 5, 2017 1 Introduction The Digilent Pmod interface is used to connect

More information

ARDUINO LEONARDO WITH HEADERS Code: A000057

ARDUINO LEONARDO WITH HEADERS Code: A000057 ARDUINO LEONARDO WITH HEADERS Code: A000057 Similar to an Arduino UNO, can be recognized by computer as a mouse or keyboard. The Arduino Leonardo is a microcontroller board based on the ATmega32u4 (datasheet).

More information

G120 and G120E SoM Datasheet

G120 and G120E SoM Datasheet GHI Electronics, LLC 501 E. Whitcomb Ave. Madison Heights, Michigan 48071 Phone: (248) 397-8856 Fax: (248) 397-8890 www.ghielectronics.com G120 and G120E SoM Datasheet G120 SoM G120E SoM Where Hardware

More information

ARDUINO YÚN Code: A000008

ARDUINO YÚN Code: A000008 ARDUINO YÚN Code: A000008 Arduino YÚN is the perfect board to use when designing connected devices and, more in general, Internet of Things projects. It combines the power of Linux with the ease of use

More information

HZX N03 Bluetooth 4.0 Low Energy Module Datasheet

HZX N03 Bluetooth 4.0 Low Energy Module Datasheet HZX-51822-16N03 Bluetooth 4.0 Low Energy Module Datasheet SHEN ZHEN HUAZHIXIN TECHNOLOGY LTD 2017.7 NAME : Bluetooth 4.0 Low Energy Module MODEL NO. : HZX-51822-16N03 VERSION : V1.0 1.Revision History

More information

G400S and G400D SoM Datasheet

G400S and G400D SoM Datasheet GHI Electronics, LLC 501 E. Whitcomb Ave. Madison Heights, Michigan 48071 Phone: (248) 397-8856 Fax: (248) 397-8890 www.ghielectronics.com G400S and G400D SoM Datasheet G400S SoM G400D SoM Where Hardware

More information

Breeze Board. Type A. User Manual.

Breeze Board. Type A. User Manual. Breeze Board Type A User Manual www.dizzy.co.za Contents Introduction... 3 Overview Top... 4 Overview Bottom... 5 Getting Started (Amicus Compiler)... 6 Power Circuitry... 7 USB... 8 Microcontroller...

More information

Cookie User Manual. For NuMicro Edition 1.0. Rev. 1.0 Release: forum.coocox.org.

Cookie User Manual. For NuMicro Edition 1.0. Rev. 1.0 Release: forum.coocox.org. Cookie User Manual For NuMicro Edition 1.0 Rev. 1.0 Release: 2012-08-09 Website: Forum: Techinal: Market: www.coocox.org forum.coocox.org master@coocox.com market@coocox.com 1 Introduction Cookie is an

More information

P4M-400 User Manual > Introduction. Introduction

P4M-400 User Manual > Introduction. Introduction P4M-400 User Manual > Introduction Introduction The P4M-400 is a module type of PHPoC product. Since PHPoC function is provided in module form, it is possible to implement the board suitable for user application.

More information

Color 7 click. PID: MIKROE 3062 Weight: 19 g

Color 7 click. PID: MIKROE 3062 Weight: 19 g Color 7 click PID: MIKROE 3062 Weight: 19 g Color 7 click is a very accurate color sensing Click board which features the TCS3472 color light to digital converter with IR filter, from ams. It contains

More information

PIXI click PID: MIKROE Weight: 28 g

PIXI click PID: MIKROE Weight: 28 g PIXI click PID: MIKROE-2817 Weight: 28 g PIXI click is equipped with MAX11300 IC from Maxim Integrated, which features Maxim Integrated's versatile, proprietary PIXI technology - it is the industry's first

More information

Microcontroller. BV523 32bit Microcontroller. Product specification. Jun 2011 V0.a. ByVac Page 1 of 8

Microcontroller. BV523 32bit Microcontroller. Product specification. Jun 2011 V0.a. ByVac Page 1 of 8 32bit Product specification Jun 2011 V0.a ByVac Page 1 of 8 Contents 1. Introduction...3 2. Features...3 3. Physical Specification...3 3.1. PIC32...3 3.2. USB Interface...3 3.3. Power Supply...4 3.4. Power

More information

Adafruit Terminal Block Breakout FeatherWing

Adafruit Terminal Block Breakout FeatherWing Adafruit Terminal Block Breakout FeatherWing Created by lady ada Last updated on 2017-01-04 04:53:26 AM UTC Guide Contents Guide Contents Overview Pinouts Assembly Downloads Datasheets & Files Schematic

More information

ELET114A Bluetooth Module DATASHEET. Website:http://www.elinketone.com / 7

ELET114A Bluetooth Module DATASHEET. Website:http://www.elinketone.com / 7 Bluetooth Module DATASHEET Website:http://www.elinketone.com 2013 06 09 1 / 7 A. Overview Bluetooth Module is designed by ShenZhen ElinkEtone Technology Company for intelligent wireless transmission, with

More information

DEVBOARD3 DATASHEET. 10Mbits Ethernet & SD card Development Board PIC18F67J60 MICROCHIP

DEVBOARD3 DATASHEET. 10Mbits Ethernet & SD card Development Board PIC18F67J60 MICROCHIP DEVBOARD3 DATASHEET 10Mbits Ethernet & SD card PIC18F67J60 MICROCHIP Version 1.0 - March 2009 DEVBOARD3 Version 1.0 March 2009 Page 1 of 7 The DEVBOARD3 is a proto-typing board used to quickly and easily

More information

ARDUINO INDUSTRIAL 1 01 Code: A000126

ARDUINO INDUSTRIAL 1 01 Code: A000126 ARDUINO INDUSTRIAL 1 01 Code: A000126 The Industrial 101 is a small form-factor YUN designed for product integration. OVERVIEW: Arduino Industrial 101 is an Evaluation board for Arduino 101 LGA module.

More information

ARDUINO BOARD LINE UP

ARDUINO BOARD LINE UP Technical Specifications Pinout Diagrams Technical Comparison Board Name Processor Operating/Input Voltage CPU Speed Analog In/Out Digital IO/PWM USB UART 101 Intel Curie 3.3 V/ 7-12V 32MHz 6/0 14/4 Regular

More information

ChipworkX Development System

ChipworkX Development System July 21, 2010 G H I Getting Started E l e c t r o n i c s Table of Contents Table of Contents 1.Introduction...3 The objective of this guide...4 2.Getting Started...5 2.1.System Setup...5 2.2.The Emulator...6

More information

SKB360I Bluetooth 4.0 Low Energy Module Datasheet

SKB360I Bluetooth 4.0 Low Energy Module Datasheet SKB360I Bluetooth 4.0 Low Energy Module Datasheet Name: Bluetooth 4.0 Low Energy Module Model No.: SKB360I Version: V1.01 Revision History: Revision Description Approved Date V1.01 Initial Release Hogan

More information

Pedometer 3 Click. PID: MIKROE 3259 Weight: 24 g

Pedometer 3 Click. PID: MIKROE 3259 Weight: 24 g Pedometer 3 Click PID: MIKROE 3259 Weight: 24 g The Pedometer 3 click is a tri-axis acceleration sensing Click board utilizing the KX126-1063. An advanced three-axis acceleration sensor, the KX126-1063

More information

Arduino Uno R3 INTRODUCTION

Arduino Uno R3 INTRODUCTION Arduino Uno R3 INTRODUCTION Arduino is used for building different types of electronic circuits easily using of both a physical programmable circuit board usually microcontroller and piece of code running

More information

Click-A-Tune. User Manual

Click-A-Tune. User Manual Contents Configuring the...2 Transferring data to the...2 with switch configuration...3 with switch matrix up to 3 switches...4 Changing the playback volume...5 Connections... Power requirements (Vin)...

More information

LM53X Development and Evaluation Product Family

LM53X Development and Evaluation Product Family Development and Evaluation Family Revised Datasheet Version 13/MAR/2018 1.0 Overview The is the development and evaluation product family for the LM930 / LM931 Bluetooth low energy module. A great starting

More information

Stepper 6 click. PID: MIKROE 3214 Weight: 26 g

Stepper 6 click. PID: MIKROE 3214 Weight: 26 g Stepper 6 click PID: MIKROE 3214 Weight: 26 g Stepper 6 click is the complete integrated bipolar step motor driver solution. It comes with the abundance of features that allow silent operation and optimal

More information

Bluno M0 Mainboard SKU: DFR0416

Bluno M0 Mainboard SKU: DFR0416 Bluno M0 Mainboard SKU: DFR0416 Bluno M0 is the only ARM Cortex-M0 Arduino Microcontroller that supports 5V standard logic level. With built-in Bluetooth chip, Bluno M0 supports multi-functions such as

More information

EZ-Bv4 Datasheet v0.7

EZ-Bv4 Datasheet v0.7 EZ-Bv4 Datasheet v0.7 Table of Contents Introduction... 2 Electrical Characteristics... 3 Regulated and Unregulated Power Pins... 4 Low Battery Warning... 4 Hardware Features Main CPU... 5 Fuse Protection...

More information

How to Use an Arduino

How to Use an Arduino How to Use an Arduino By Vivian Law Introduction The first microcontroller, TMS-1802-NC, was built in 1971 by Texas Instruments. It owed its existence to the innovation and versatility of silicon and the

More information

DFRduino M0 Mainboard (Arduino Compatible) SKU: DFR0392

DFRduino M0 Mainboard (Arduino Compatible) SKU: DFR0392 DFRduino M0 Mainboard (Arduino Compatible) SKU: DFR0392 Introduction DFRduino M0 is the only Arduino main board that supports 5V standard Logic level and adopts ARM Cortex-M0. [null It is unsatisfactory

More information

CONTENTS. dspicpro4 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6

CONTENTS. dspicpro4 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6 CONTENTS dspicpro4 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6 Switches and Jumpers 7 MCU Sockets 8 Power Supply 10 On-Board USB 2.0 Programmer 11 MikroICD 12 RS-232 Communication Circuit 13

More information

Design and development of embedded systems for the Internet of Things (IoT) Fabio Angeletti Fabrizio Gattuso

Design and development of embedded systems for the Internet of Things (IoT) Fabio Angeletti Fabrizio Gattuso Design and development of embedded systems for the Internet of Things (IoT) Fabio Angeletti Fabrizio Gattuso Microcontroller It is essentially a small computer on a chip Like any computer, it has memory,

More information

1.6inch SPI Module user manual

1.6inch SPI Module user manual 1.6inch SPI Module user manual www.lcdwiki.com 1 / 10 Rev1.0 Product Description The 1.6 module is tested using the ESP8266MOD D1 Mini development board, Both the test program and the dependent libraries

More information

Product Specification

Product Specification Product Specification Features Amp ed RF, Inc. Description 15mm x 27mm The added class 1 power, +18dBm, of the BT-11, gives this module one of the best ranges in the industry. It s completely pin compatible

More information

CONTENTS BIGAVR2 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6

CONTENTS BIGAVR2 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6 CONTENTS BIGAVR2 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6 Switches 7 Jumpers 8 MCU Sockets 9 Power Supply 11 On-board USB 2.0 Programmer 12 Oscillator 14 LEDs 15 Reset Circuit 17 Push-buttons

More information

Device: MOD This document Version: 1.0. Matches module version: v3 [29 June 2016] Date: 23 October 2017

Device: MOD This document Version: 1.0. Matches module version: v3 [29 June 2016] Date: 23 October 2017 Device: MOD-1025 This document Version: 1.0 Matches module version: v3 [29 June 2016] Date: 23 October 2017 Description: UART (async serial) to I2C adapter module MOD-1025 v3 datasheet Page 2 Contents

More information

xpico 200 Series Evaluation Kit User Guide

xpico 200 Series Evaluation Kit User Guide xpico 200 Series Evaluation Kit User Guide This guide describes how to setup the xpico 200 series evaluation kit and provides the information needed to evaluate the included xpico 240 or xpico 250 embedded

More information

Preliminary F40 SoC Datasheet

Preliminary F40 SoC Datasheet GHI Electronics, LLC 501 E. Whitcomb Ave. Madison Heights, Michigan 48071 Phone: (248) 397-8856 Fax: (248) 397-8890 www.ghielectronics.com Preliminary F40 SoC Datasheet Where Hardware Meets Software GHI

More information

Lesson 6 Intel Galileo and Edison Prototype Development Platforms. Chapter-8 L06: "Internet of Things ", Raj Kamal, Publs.: McGraw-Hill Education

Lesson 6 Intel Galileo and Edison Prototype Development Platforms. Chapter-8 L06: Internet of Things , Raj Kamal, Publs.: McGraw-Hill Education Lesson 6 Intel Galileo and Edison Prototype Development Platforms 1 Intel Galileo Gen 2 Boards Based on the Intel Pentium architecture Includes features of single threaded, single core and 400 MHz constant

More information

4G LTE-E click (Europe)

4G LTE-E click (Europe) 4G LTE-E click (Europe) MIKROE-2527 Weight: 36 g 4G LTE-E click carries the LARA-R211 multi-mode cellular module from u-blox. The board is designed to use 5V power supply. I/O voltage levels could be 3.3V

More information

P4S-342 User Manual > Introduction. Overview

P4S-342 User Manual > Introduction. Overview P4S-342 User Manual > Introduction Overview P4S-342 is an industrial programmable I/O board. You can build various network communication systems connecting P4S-342 to many devices such as sensors and actuators.

More information

DE-10 Super Expansion Board

DE-10 Super Expansion Board www.cbmstuff.com DE-10 Super Expansion Board For Terasic DE-10 Nano FPGA boards Assembly & Technical Information Manual Manual v1.0 Release Date: December 31,2018 Last Revision: January 3, 2018 All material

More information

or between microcontrollers)

or between microcontrollers) : Communication Interfaces in Embedded Systems (e.g., to interface with sensors and actuators or between microcontrollers) Spring 2016 : Communication Interfaces in Embedded Systems Spring (e.g., 2016

More information

XNUCLEO-F030R8, Improved STM32 NUCLEO Board

XNUCLEO-F030R8, Improved STM32 NUCLEO Board XNUCLEO-F030R8, Improved STM32 NUCLEO Board STM32 Development Board, Supports Arduino, Compatible with NUCLEO-F030R8 XNUCLEO-F030R8 Features Compatible with NUCLEO-F030R8, onboard Cortex-M0 microcontroller

More information

USB UART 4 click PID: MIKROE Weight: 23 g

USB UART 4 click PID: MIKROE Weight: 23 g USB UART 4 click PID: MIKROE-2810 Weight: 23 g USB UART 4 click features well-known FT232RL USB-to-UART interface module from FDTI. It provides USB to asynchronous serial data transfer interface, allowing

More information

ARDUINO M0 PRO Code: A000111

ARDUINO M0 PRO Code: A000111 ARDUINO M0 PRO Code: A000111 The Arduino M0 Pro is an Arduino M0 with a step by step debugger With the new Arduino M0 Pro board, the more creative individual will have the potential to create one s most

More information

BroadR-Reach click PID: MIKROE Weight: 26 g

BroadR-Reach click PID: MIKROE Weight: 26 g BroadR-Reach click PID: MIKROE-2796 Weight: 26 g BroadR-Reach click brings the industry grade communication standard to the mikrobus, which is built to be used in an Ethernet-based open network. The click

More information

General-Purpose Microcontroller Module 12a Hardware Reference Release 1.4a (October 11, 2017)

General-Purpose Microcontroller Module 12a Hardware Reference Release 1.4a (October 11, 2017) General-Purpose Microcontroller Module 12a Hardware Reference 1 General-Purpose Microcontroller Module 12a Hardware Reference Release 1.4a (October 11, 2017) Purpose: General-purpose platform to accommodate

More information

Grove Digital Extender 0059-GRVDE-DSBT/SF

Grove Digital Extender 0059-GRVDE-DSBT/SF Features and Benefits: The board is an easy to use I2C controlled board that provides 8 Grove Digital I/O ports. 8 Connectors I2C controlled 3 total Grove I2C Connectors (2 spare) 8 GPIO pins 3.3V and

More information

Breeze Board. Type B. User Manual.

Breeze Board. Type B. User Manual. Breeze Board Type B User Manual www.dizzy.co.za Contents Introduction... 3 Overview Top... 4 Overview Bottom... 5 Getting Started (USB Bootloader)... 6 Power Circuitry... 7 USB... 8 Microcontroller...

More information

P4S-341 User Manual > Introduction. Overview

P4S-341 User Manual > Introduction. Overview P4S-341 User Manual > Introduction Overview P4S-341 is an industrial programmable I/O board. You can build various network communication systems connecting P4S-341 to many devices such as sensors and actuators.

More information

Pmod ESP32 Reference Manual

Pmod ESP32 Reference Manual Pmod ESP32 Reference Manual The Digilent Pmod ESP32 features a radio with support for 802.11 b/g/n Wifi and dualmode Bluetooth. This module is perfect for connecting your FPGA or microcontroller projects

More information

4G LTE E click (Europe)

4G LTE E click (Europe) 4G LTE E click (Europe) PID: MIKROE-2527 4G LTE-E click carries the LARA-R211 multi-mode cellular module from u-blox. The board is designed to use 5V power supply. I/O voltage levels could be 3.3V or 5V.

More information

BC-USB-Kit Manual. First Edition. February, BeatCraft, Inc.

BC-USB-Kit Manual. First Edition. February, BeatCraft, Inc. BC-USB-Kit Manual First Edition February, 2015 BeatCraft, Inc. 1. Overview BC-USB-Kit is a USB-gadget development kit, which is equipped with a micro controller of Microchip Technology Inc, PIC24FJ128GB202

More information

Espardino micro2142/8

Espardino micro2142/8 micro2142/8 board is an advanced ARM board based on the NXP 2142/8 USB microcontroller featuring 60 MIPS 64kB/512kB Flash space and 16kB/32kB of RAM space. MAIN FEATURES Integrated USB bootloader (8kB)

More information

Embedded Programming with ARM Cortex-M3 Basic Experiments 1

Embedded Programming with ARM Cortex-M3 Basic Experiments 1 Embedded Programming with ARM Cortex-M3 Basic Experiments 1 Alan Xiao, Ph.D Handheld Scientific, Inc. qiwei@handheldsci.com Today s Topics Basics (with the Discovery board): 1. General Input/Output (GPIO)

More information

Raspberry Pi. Hans-Petter Halvorsen, M.Sc.

Raspberry Pi. Hans-Petter Halvorsen, M.Sc. Raspberry Pi Hans-Petter Halvorsen, M.Sc. Raspberry Pi https://www.raspberrypi.org https://dev.windows.com/iot Hans-Petter Halvorsen, M.Sc. Raspberry Pi - Overview The Raspberry Pi 2 is a low cost, credit-card

More information

Adafruit Metro Mini. Created by lady ada. Last updated on :12:28 PM UTC

Adafruit Metro Mini. Created by lady ada. Last updated on :12:28 PM UTC Adafruit Metro Mini Created by lady ada Last updated on 2018-01-24 08:12:28 PM UTC Guide Contents Guide Contents Overview Pinouts USB & Serial converter Microcontroller & Crystal LEDs Power Pins & Regulators

More information

I2C and SPI Foundation

I2C and SPI Foundation Revision 30 September 2010 Release I2C and SPI Foundation 17 March 2018 changed ref: command f to x Introduction I2C (I squared C) and SPI (Serial peripheral Interface) are two main ways that microcontrollers

More information

Pridgen Vermeer Robotics Xmega128 Manual

Pridgen Vermeer Robotics Xmega128 Manual Features: 12x PWM signals with 5V supply 8x A/D Inputs with 3.3V supply 2x RS 232 Terminals 1x SPI Interface 4x 8-bit Digital IO ports 3.3V Power Bus LCD Header (4-bit mode) Smart Power Connecter Power

More information

pico-sam9g45 System board

pico-sam9g45 System board System board Reference manual Rev. 1.j Layout Views Layout top view Layout bottom view Legend: J2 Ethernet port J12 ZIF connector for the LCD U1 USB HUB SMSC chip J3 USB 2.0 J14 Keypad connector BEEP PWM

More information

mbed Command Module Adapter Board RS EDP CM mbed User Manual Version 1.02 Electrocomponents plc Page 1

mbed Command Module Adapter Board RS EDP CM mbed User Manual Version 1.02 Electrocomponents plc Page 1 mbed Command Module Adapter Board RS EDP CM mbed User Manual Version 1.0 Electrocomponents plc Page 1 Contents 1. Introduction. Pin Mapping.1 MCU Pin Allocation.... Backplane Resources Used by the MCU...

More information

Hardware Reference. PNP/5280 Board Revision 1.0

Hardware Reference. PNP/5280 Board Revision 1.0 PNP/5280 Board Revision 1.0 Hardware Reference SSV Embedded Systems Heisterbergallee 72 D-30453 Hannover Phone: +49-(0)511-40000-0 Fax: +49-(0)511-40000-40 E-mail: sales@ist1.de Manual Revision: 1.0 Date:

More information

Thermo 6 click PID: MIKROE-2769

Thermo 6 click PID: MIKROE-2769 Thermo 6 click PID: MIKROE-2769 Thermo 6 click is a precise and versatile ambient temperature measurement click board, based on the Maxim Integrated MAX31875 temperature sensor. This sensor has a great

More information

Raspberry Pi board. EB080

Raspberry Pi board.   EB080 Raspberry Pi board www.matrixmultimedia.com EB080 Contents About this document 3 Board layout 3 General information 4 Circuit description 4 Circuit diagram 5 2 Copyright Matrix Multimedia Ltd. About this

More information

Arduino Prof. Dr. Magdy M. Abdelhameed

Arduino Prof. Dr. Magdy M. Abdelhameed Course Code: MDP 454, Course Name:, Second Semester 2014 Arduino What is Arduino? Microcontroller Platform Okay but what s a Microcontroller? Tiny, self-contained computers in an IC Often contain peripherals

More information

Product Specification

Product Specification Product Specification 15mm x 27mm Description One of the most capable Bluetooth modules available, the BT-21 Bluetooth OEM Module is designed for maximum flexibility. The BT-21 module includes 14 general

More information

Propeller Activity Board (#32910)

Propeller Activity Board (#32910) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Hardware Reference. DIL/NetPC DNP/2110 Board Revision 1.0

Hardware Reference. DIL/NetPC DNP/2110 Board Revision 1.0 DIL/NetPC DNP/2110 Board Revision 1.0 Hardware Reference SSV Embedded Systems Heisterbergallee 72 D-30453 Hannover Phone +49-(0)511-40000-0 Fax +49-(0)511-40000-40 E-mail: sales@ist1.de Manual Revision:

More information

Arduino Diecimila Pinouts 697B B8D-A50A-61944C26074F

Arduino Diecimila Pinouts 697B B8D-A50A-61944C26074F mightwerk Resources for creators and innovators outs 697B1380-9797-4B8D-A50A-61944C26074F Introduction... 1 4-pin Expansion Header out... 2 6-pin ICSP Header out... 3 Map from to... 4 Map from ATmega328

More information

Universität Dortmund. IO and Peripheral Interfaces

Universität Dortmund. IO and Peripheral Interfaces IO and Peripheral Interfaces Microcontroller System Architecture Each MCU (micro-controller unit) is characterized by: Microprocessor 8,16,32 bit architecture Usually simple in-order microarchitecture,

More information

pcduino V3B XC4350 User Manual

pcduino V3B XC4350 User Manual pcduino V3B XC4350 User Manual 1 User Manual Contents Board Overview...2 System Features...3 Single-Board Computer Configuration......3 Pin Assignments...4 Single-Board Computer Setup...6 Required Hardware...6

More information

Microprocessor Systems

Microprocessor Systems Microprocessor Systems Networks and Embedded Software Module 4.1.1 by Wolfgang Neff Components (1) Microprocessor System Microprocessor (CPU) Memory Peripherals Control Bus Address Bus Data Bus 2 Components(2)

More information

MicroBolt. Microcomputer/Controller Featuring the Philips LPC2106 FEATURES

MicroBolt. Microcomputer/Controller Featuring the Philips LPC2106 FEATURES Microcomputer/Controller Featuring the Philips LPC2106 FEATURES Powerful 60 MHz, 32-bit ARM processing core. Pin compatible with 24 pin Stamp-like controllers. Small size complete computer/controller with

More information

Accel 5 click. PID: MIKROE 3149 Weight: 24 g

Accel 5 click. PID: MIKROE 3149 Weight: 24 g Accel 5 click PID: MIKROE 3149 Weight: 24 g Accel 5 click features an ultra-low power triaxial accelerometer sensor, labeled as the BMA400. This Click board allows linear motion and gravitational force

More information

RDB1768 Development Board User Manual

RDB1768 Development Board User Manual RDB1768 Development Board User Manual 6/16/2009 Rev.2 Copyright Code Red Technologies Inc. 2009 Page 1 of 18 1 OVERVIEW 3 1.1 LPC1768 Features 3 1.2 RDB1768 Evaluation Board Hardware 3 2 COMPONENTS 5 2.1

More information

6LoWPAN Development Platform Saker Manual

6LoWPAN Development Platform Saker Manual 6LoWPAN Development Platform Saker Manual WEPTECH elektronik GmbH Page 1 of 19 V.1.0.1 1. Table of Content 1. General information... 4 1.1 1.2 1.3 1.4 1.5 Copyright protection... 4 Warranty information...

More information

CB-1 Peripheral Board Technical Manual

CB-1 Peripheral Board Technical Manual CB-1 Peripheral Board Technical Manual Date: 13 May 2007 Document Revision: 1.02 BiPOM Electronics 16301 Blue Ridge Road, Missouri City, Texas 77489 Telephone: 1-713-283-9970. Fax: 1-281-416-2806 E-mail:

More information

VLSI AppNote: VSx053 Simple DSP Board

VLSI AppNote: VSx053 Simple DSP Board : VSx053 Simple DSP Board Description This document describes the VS1053 / VS8053 Simple DPS Board and the VSx053 Simple DSP Host Board. Schematics, layouts and pinouts of both cards are included. The

More information

Downloaded from Elcodis.com electronic components distributor

Downloaded from Elcodis.com electronic components distributor CONTENTS LV24-33A KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6 Switches and Jumpers 7 MCU Sockets 8 Power Supply 10 On-board USB 2.0 Programmer 11 RS-232 Communication Circuit 12 LEDs 14 Push

More information

Arduino Dock 2. The Hardware

Arduino Dock 2. The Hardware Arduino Dock 2 The Arduino Dock 2 is our supercharged version of an Arduino Uno R3 board. These two boards share the same microcontroller, the ATmel ATmega328P microcontroller (MCU), and have identical

More information