Digispark红外接收器

Digispark Infrared Receiver

Arduino PCB DIY

Digispark DIY: The smallest USB Arduino

自制Digispark: 最小USB Arduino

Arduino与I2C/TWI LCD1602模块

LCD1602规则说明
- 接口:I2C
- I2C地址:0X27
- 电源电压:5V
- 重量:40克
Password access with Arduino using keypad

set(password)
Set the target password equal to password.
is(password)
Is the target password equal to password
append(character)
Append a character to the currently guessed password
reset()
Reset the currently guessed password
evaluate()
Is the guessed password equal to the target password?
Arduino reading and writing string to EEPROM
读取和写入任何结构EEPROM
#include <EEPROM.h> template <class T> int EEPROM_writeAnything(int ee, const T& value) template <class T> int EEPROM_readAnything(int ee, T& value) |
#include <EEPROM.h>
#include "EEPROMAnything.h" struct config_t
{ long alarm; int mode; } configuration; void setup()
{ EEPROM_readAnything(0, configuration); // ... } void loop() { // let the user adjust their alarm settings // let the user adjust their mode settings // ... // if they push the "Save" button, save their configuration
if (digitalRead(13) == HIGH) EEPROM_writeAnything(0, configuration); } |
#include <avr/eeprom.h> struct settings_t void setup() // if they push the "Save" button, save their configuration |
Arduino and Stronglink SL018 RFID module

Model
|
MIFARE Module SL018
|
Frequency
|
13.56MHz
|
Protocol
|
ISO14443A
|
Tag supported
|
Ultralight, NTAG203, MIFARE Mini, MIFARE ™ Classic 1K, 4K MIFARE Classic ™, FM11RF08
|
Interface
|
I2C
|
Supply voltage
|
4.4 - 7.0VDC
|
Dimension
|
65 × 45 mm
|