-40%
Si5351A I2C 25MHz Controller Signal Generator for Arduino
$ 5.19
- Description
- Size Guide
Description
Si5351A I2C 25MHz Controller Signal Generator for ArduinoDescription
Si5351A I2C 25MHz Controller Signal Generator for Arduino
1pc module as picture show
Payment
1.We accept PayPal only.
2.All major credit cards are accepted through secure payment processor PayPal.
3.Payment must be received within 7 business days of auction closing.
4.We ship to your eBay or Paypal address. Please make sure your eBay and Paypal address is correct before you pay.
Shipping
1.We ship to your eBay or Paypal address. Please make sure your eBay and Paypal address is correct before you pay.
2.Items will be shipped within 1-3 business day when we received payment.
3.Delivery time depends on destination and other factors;
4.International buyers please note:
a.Import duties, taxes and charges are not included in the item price or shipping charges. These charges are buyer’s responsibility. We will try our best to reduce the risk of the custom duties.
b.Please check with your country's customs office to determine what these additional costs will be prior to buying.
Returns policy
1.If the item is not as described or damaged in transportation, please send it back within 7 days upon date of receipt
2.For defective item, we guarantee free exchange or full refund within 30 days from the day of placing order
3.Buyers pay shipping fees at their own cost to return products for exchange or refund. We will be responsible for the postage of replacements
4.Items must be unused, in original packaging and include all parts, accessories and packaging
5.When we receive your returned item, we will investigate the situation and consider to offer replacement or refund according to the situation
Terms of sales
1. All the items will be tested before shipping. Buy them with the confidence!
2. We maintain hightest buyer ratings StarStarStarStarStar and 100% customer satisfaction, Positive Feedback will be much appreciated from you.
3. Any dissatisfaction or problem, please contact us before you leave neutral Neutral feedback rating or negative Negative feedback rating feedback.
Feedback
1.When you received package and like it, kindly comfirm received order and leave a positive feedback with full stars for us. Thank you.
2.Any dissatisfaction or problem, please contact us before you leave neutral Neutral feedback rating or negative Negative feedback rating feedback.
Product Name: 2x 100MW RS232 TTL RS232 RF Wireless Transceiver Module for Arduino UNO MEGA2560
Packing list:
2 pcs 2.4G RS232(TTL Lever) Wireless Transceiver Module;
Overview:
TB387 is based on 2.4GHz frequency band wireless transparent data-transmission module.
Module supports most basic AT commands: baud rate, ID number, frequency settings and inquiries; factory settings; version information.
When the module is in AT module, users can use serial-port to issue AT commands to set the module's parameters.
When the module is in transparent data transfer mode, the user transmit data, frame number data module, add packaged rowcount, and then automatically transmit , at reliable range, the module will automatically re-transmit data to ensure successful transmission.
Performance Parameter:
Working voltage: 3.3V-5.5V;
RS232 Interface ( 3.3V/5V TTL level)
Frequency range: 2402~2482MHz
Transmit power: 20dBm(100mw);
Receiver sensitivity: -87dBm;
Operating temperature: -40~+85 ° c;
Transparent transmission mode baud rate:
2400,4800,
9600(Default)
,14400,19200,38400,57600,115200,12800,25600
AT mode configured baud rate fix is: 9600;
Open ground Transmission distance : 400M
Pinout :
1, VDD:3.3V or 5V power supply ;
2, GND: Power Ground;
3, TXD: serial port output, Arduino or USB to serial port RXD;
4, RXD: serial port input, Arduino or USB to serial port TXD;
5, CMD: Enter PIN AT mode, active low level;
AT Commands Data Sheet : Please contact seller on ebay message ;
Typical applications:
2402-2482MHz ISM/SRD band systems
Consumer electronics
Access control, Attendance, Logistics
Smart Furniture
Robert
Wireless sensor
Wireless communication between Arduino and PC(Also application with other 3.3V/5V level MCU ,
for example: FPGA CPLD STM32 C8051 PIC AVR MSP430)
for this Applications you also need: 1 pcs
USB to ttl cable
; Arduino UNO/MEGA2560
ARDUINO Serial data Transceiver:
Copy the following code:
//----------------------------------------------------------------------//
// Pin 13 has an LED connected on most Arduino boards.
int led = 13;
String comdata = "";
void setup()
{
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
Serial.begin(9600);
Serial.println("Hello, I am Arduino!");
}
//Serial data transceiver
void loop()
{
while (Serial.available() > 0)
{
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
comdata += char(Serial.read());
delay(2);
}
if (comdata.length() > 0)
{
Serial.println(comdata);
comdata = "";
}
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
}
//----------------------------------------------------------------------//