Working with the RTCC MCP 79410 RTCC (Real Time Clock with Calendar)
How to use the MCP79410 Real Time Clock In this article I'm going to show you how to use the MCP 79410 we have mounted on our boards. Temperature sensor and real time clock for Arduino A PIC 12f1840... Read more
How to use the i2c bus with PIC12f1840 (a simple library)
We have developed this library to use the i2c bus on our 12f1840 development board. http://www.xappsoftware.com/wordpress/?p=3523 http://www.xappsoftware.com/wordpress/?p=3428 Naturally it can be used also with our PICcoletta board and with other boards which use Microchip PICs. Leave a message to... Read more
Practical subjects for the Arduino and Freeduino microcontrollers
… an evolving index of practical subjects for the Arduino and Freeduino microcontrollers, as found in the Arduino site, Playground wiki, forum and that big WWW thing. Everything you read here will work on Arduino, the many versions of... Read more
Build your own Arduino for under £10
http://www.xappsoftware.com/wordpress/2012/02/13/gigino-a-low-cost-prototyping-board-based-on-the-arduino-project/ Our implementation of Arduino The kit Read more
Using the foxboard g20 with the gpio java class
Hi all, in a recent article I've published a simple java class that handles the gpio system of the Fox G20 board (www.acmesystem.com) In this artilcle I'm going to showing you what else you need to interface the... Read more
Temperature sensor and real time clock for Arduino
This simple board has been developed to work together with an arduino board, but it can be used in conjunction with every other boards with an I2C bus and a power suplly into the range V. The schemathic... Read more
Avoid the use of multiplies to optimize your code for speed (C/C++).
If it is possible you should use constant increments instead of multiplies. #include <stdio.h> #include <stdlib.h> int main(void) { int i, j; for(i=0; i<10; i++) { j=i*10; } } int main1(void) { int i, j; for(i=0; i<100; i+=10) {... Read more
2 pictures for our PIC 12f1840 developer board
In the following pictures you can see our last board: the PIC 12f1840 developer board. The set of pcb we have ordered has been arrived. So we are soldering them. This is a preview of 2 pictures for our... Read more
A java class to access the gpio system of the Fox G20 (Linux)
FOX Board G20 is a ready-to-use low cost Linux embedded Single Board Computer designed to reduce the time to market of your Linux embedded applications The main fields of application are: Solid-state web application servers This is a... Read more
A PIC 12f1840 developer board with mcp79410 RTC and tcn75 temperature sensor.
A PIC 12f1840 developer board with mcp79410 RTC and the tcn75 temperature sensor. This little developer board can be used as: Serial interface Temperature Sensor Alarm clock Naturally these functions can be merged together to build more complex functions.... Read more
xps-100 : Some pictures
In the following you will find some pictures of our xps.100 power supply adapter USB to breadboard. for more info read the related posts. Gg1 Read more
Ubuntu 9.10: error while loading shared libraries: libtinfo.so.5
Under Ubuntu 8.10, 9.04 and 9.10 the entrypoints for libinfo are part of ncurses. The libtinfo.so functionality is built into the libncurses.so shared library. So for software that uses the libtinfo.so object you need to install ncurses. I... Read more
The USB Dual Voltage Power Supply (3,3/5 V) for breadboards is finally here
Yes it's here. The PCB and all components are here and we have mounted them. All the tests have been passed, and now we can use the power supply adapter for our projects. We have also tested the version... Read more
A USB Dual Voltage Power Supply (3,3/5 V) for breadboards
For our domotic projects we have the need of an eclectic power supply device. It should take the input from a PC USB port . It should have 5 V output. It should have 3,3 V output. It... Read moreJul
02
2011
Rapid PCB prototyping (Semi-professional PCB)
Sometimes you could have the need of PCB to build a prototype. You can ask a manifacturer, but if your PCB is simple this solution could cost too much and, also, it can take too much time. I used... Read moreJun
23
2011
The Zigbee revealed – 2 MiWi A competitor
MiWi and MiWi P2P are proprietary wireless protocols designed by Microchip Technology that uses small, low-power digital radios based on the IEEE 802.15.4 standard for wireless personal area networks (WPANs). This is a preview of The Zigbee revealed... Read moreJun
14
2011
A simple MACRO to implement a debug printf
During normal coding stage, often I need to put some prints to reach a fast debug of my code. At the same time, I want to see how the code works without these prints. Naturally I don't want to... Read moreMay
31
2011
Watching Divx on WII
The WII is a fantastic game console, but it can be also used as an intertainment console. If you have already installed the Homebrew Channel, you can use the WII to see your preferred divx directly from the... Read more
Android Open Accessory Development Kit
The Android 3.1 platform (also backported to Android 2.3.4) introduces Android Open Accessory support, which allows external USB hardware (an Android USB accessory) to interact with an Android-powered device in a special "accessory" mode. When an Android-powered powered device... Read more

