Other Projects

Simple 3 Button On off With 12f629 mikroC

Simple 3 Button On-off With 12f629 (mikroC)

a simple 3 buttons on-off with pic12f629. it’s written with MikroC Step 1: The Code… start the code with ”int”———————————————————- int x0,x1,y0,y1,z0,z1; ////// with this the GPIO outputs could stay on or off void main() { GPIO = 0x00; ////// all outputs are 0 CMCON = 0x07; ////// Disable CMCON PORT TRISIO = 0b00111000; //////

Simple 3 Button On-off With 12f629 (mikroC) Read More »

Weather Portal

Weather Portal

There have recently been a series of web query projects that use the miraculously tiny and affordable ESP8266 micro controllers. Most have involved the output going to a tiny screen with small graphics. The local YMCA in Anchorage just completed a beautiful remodel but lacked funds for decorative elements. I wanted to build them something

Weather Portal Read More »

Arduino Electrical Engineering Basics

Arduino: Electrical Engineering Basics

In this week’s arduino tutorial, we take a bit of a detour and focus on some key elements of electrical engineering design that we’ll be using in future episodes. [box type=”note” color=” #202020 ” bg=”#ffbb00 ” font=”verdana” fontsize=”14″ radius=”20 ” border=”#000″ float=”right” head=”Attributes”]Thanks to Jeremy , for this articles[/box] Included amongst these topics is Ohm’s

Arduino: Electrical Engineering Basics Read More »

Arduino Interrupts and Debouncing

Arduino Interrupts and Debouncing

Interrupts are an extremely useful, yet often feared element of microprocessors. Interrupts allow you to run a program, while still being able to react to asynchronous input from the outside world. [box type=”note” color=” #202020 ” bg=”#ffbb00 ” font=”verdana” fontsize=”14″ radius=”20 ” border=”#000″ float=”right” head=”Attributes”]Thanks to Jeremy , for this articles[/box] On many platforms they can

Arduino Interrupts and Debouncing Read More »

Scroll to Top