Mission

To provide a learning environment and to assist in robotics projects or really just any hobby related to engineering. There are lessons, project tutorials, and even sensor documentation with usage examples.

Images from Posts

Categories

CSS Introduction

Submitted by Evan Boldt on

CSS stands for Cascading Style Sheet. In HTML, you use it to apply a certain look to specific elements in the page. CSS makes it easy to give every page on your website a unified appearance. The format is extremely straightforward, but to be effective you need to know how to specify which…

3D SVG Graph

Submitted by Evan Boldt on

An SVG is a type of graphic that is defined by shapes and math instead of discrete pixels. So, it is scales nicely, but can’t make photo-realistic images. An (currently) SVG is two dimensional. That does not mean, though, that we cannot represent 3D information in this 2D space. After all, it is…

PIR Sensor (HC-SR501)

Submitted by Jenn Case on

Introduction

Passive Infra-Red (PIR) sensors are used to detect motion based on the infrared heat in the surrounding area. This makes them a popular choice when building a system to detect potential intruders or people in general. These sensors can take for 10-60 seconds to warm up, so try to avoid motion during that time.

HTML Introduction

Submitted by Evan Boldt on

HTML is the language that your browser reads when it shows you a webpage. It is a variant of XML. It makes the actual content that you see, but also can contain visual styling information (typically in the form of an external CSS file) and also can have an in-browser (client-side) programming…

Organized EEPROM storage

Submitted by Evan Boldt on

EEPROM is a permanent memory. It will remain even after the Arduino is restarted. It can be reprogrammed around 100,000 times, so it is substantially less resilient than the flash storage or a hard drive. It is also kind of slow (3ms per byte). The Ardiono Uno has 1KB of EEPROM.

LaTeX

Submitted by Evan Boldt on

LaTeX is a typesetting system. It’s an easy way to make very professional looking papers. In fact, many academic books were written in LaTeX. You can usually tell by looking in the first few pages. Somewhere it might say “Typeset in LaTeX”.

Computer Power Supply

Submitted by Evan Boldt on

A lot of us have an old desktop computer we don’t want anymore and it’s good to re-use components. You’ll find in each standard sized desktop, an ATX power supply. It’s a standardized form factor for AC-to-DC power conversion with +3, +5, +12, and sometimes -5 and -12 VDC rails. If you look on…