- Details
- Category: Raspberry Pi
- Hits: 3250
Hi Guys. Hows your RasPi? After few testing, learn how to setup the OS (Debian Squeeze) and run the X Windows, I like to use it like my other Linux. I like make it headless, remotely access and installed with LAMP (Linux + Apache + MySQL + PHP).
I found a few interesting tips and suitable for my RasPi machine.
- Details
- Category: Raspberry Pi
- Hits: 3517
Pi is not boot like a PC. No BIOS. So, if there is no SD attached or OS, Pi not working at all.
Then, I made sure I was not buying wrong SD card. There is a list of compatible/incompatible SD card. Please check this site. http://elinux.org/RPi_VerifiedPeripherals#SD_cards
- Details
- Category: Raspberry Pi
- Hits: 3039
Hi. It is hard for me who live far away from technology resource, limited time and money just to fulfill my dream and hobby. My next hobby is exploiting the Raspberry Pi. You can check about it more detail at Rasberry Pi Foundation (http://www.raspberrypi.org)
I got my Pi last week after waiting about 2 months. Below is the pictures of the unboxing.
- Details
- Category: ARDUINO
- Hits: 3472
I like to make a revision on Temperature and Humidity Monitor. After a few test, I found few flaw in the article.
First of all, the diagram. For the SD reader part, I not connect any connection to the second GND pin. Whenever, you try to power up to Arduino and monitor the output in serial terminal, arduino can not detect any SD card.
So, the correct connection is to connect all GND pins to GND.
Secondly, the output in CSV file. There is no separation between temperature and humidity reading. So, below is the correct one. I put comma between them.
I got a new project to monitor temperature and humidity 24/7. So, I set logging delay to 5 minutes, where 5 * 60 * 1000 = 300000. (1sec = 1000). At this part, i put the delay value straight to the function delay() and not the integer variable as before.