On the 3G shield, by default the power pin is on D8 and reset pin is on D9. Make it HIGH then it works. if you want to play this 3G shield using SoftwareSerial on Arduino, Try this code: /* Change UART control ports from Tx0 / Rx1 to Tx2 / Rx3 using…
This is an old arduino 3G module bought half years ago. Its wiki: http://wiki.iteadstudio.com/ITEAD_3G_Shield Its mall: http://imall.itead.cc/itead-3g-shield.html But as you can see that, the download link does not exist anymore. But after googling a…
About this project This project was developed after I had to find out that controlling my RGB ambient light with the normal infrared remote control was complicated and not reliable. Within a few months I build this solution that enabled controlling m…
Arduino 背景可以参考官方网站www.arduino.cc 先看一个最简单的示例程序: 打开 Arduino IDE , 选择菜单:文件 -> 示例 -> 01.Basics -> Blink /* Blink Turns on an LED on for one second, then off for one second, repeatedly. This example code is in the public domain. */ // Pin 13 has an LE…
The elements of Arduino (C++) code. Sketch loop() setup() Control Structure break continue do...while else for goto if return switch...case while Further Syntax #define (define) #include (include) /* */ (block comment) // (single line comment) ; (sem…
Sound card based RFID sniffer/emulator (Too tired after recon.cx to do draw the schematics better than that :) Stay tuned for the next version including Tag emulation.) baudline FFT signal analyzer for sniffing LF RFID tags using our sound card based…
The Arduino is a small Atmel-based microcontroller development board easily integrated into many different types of digital control and automation. Hundreds of thousands of Makers, hobbyists and researchers around the world make use of Arduino variat…
Arduino语言介绍 Arduino语言是建立在C/C++基础上的,其基础是C语言,Arduino语言只不过把AVR单片机(微控制器)相关的一些参数设置都函数化,不用我们去了解他的底层,让不了解AVR单片机(微控制器)的朋友也能轻松上手. 基础C语言 关键字: if 条件选择语句 if...else 条件选择语句 for for 循环语句 switch case 并行多分支选择 while 循环语句 do…