Skip to main content

Posts

Showing posts from July, 2022

Featured Post

Kerala's First 3D Printed Building

Created as a showcase project, AMAZE-28, the single-room summer house, was successfully constructed within 28 days on the grounds of the Kerala State Nirmithi Kendra. The 3D-printed building at the Kerala State Nirmithi Kendra in Thiruvananthapuram. (Photo: Shekunj)  The inauguration of Kerala's inaugural 3D-printed structure, a 380-square-foot single-room summer house, is scheduled to take place on October 10 at the Kerala State Nirmithi Kendra (Kesnik) campus located in PTP Nagar, Thiruvananthapuram.  Conceived as a showcase initiative, the summer house named AMAZE-28 was successfully finished within a mere 28 days. This impressive project was executed by Tvasta, a construction technology startup based in Chennai, founded by alumni of IIT-Madras, who have entered into a memorandum of understanding (MoU) with Kesnik.  AMAZE-28 is perched upon a concrete foundation atop a gentle elevation within the Kesnik campus. Febi Varghese, the Director and Chief Executive Officer of Kesnik, p

How to use SD Card Module with Arduino?

 Using SD Card Module with Arduino  In this article, I am going to explain how to use SD card module with Arduino to write and read data. This article will help you to make your own data logging system such as - temperature logging system, humidity logging system, speed logging system, acceleration and gyroscope data logging system, etc. Components and Parts Arduino UNO SD Card Module Computer SD Card  Power Supply   Circuit Diagram   Download Libraries SD Card Library - SD.h : Download SPI Library - SPI.h: Pre-installed in Arduino IDE Arduino Code for Writing Data to SD Card #include < SPI . h > #include < SD . h > File myFile ; void setup ( ) { // Open serial communications and wait for port to open: Serial . begin ( 9600 ) ; while ( ! Serial ) { ; // wait for serial port to connect. Needed for native USB port only } Serial . print ( "Initializing SD card..." ) ; if ( ! SD . begin ( 10 ) ) { Serial . println ( "initialization failed!&qu