Home > Integrated Circuits ICs > PIC16F72-I/SP

PIC16F72-I/SP


8-bit PIC MCU, 2Kx14 Flash, 128B RAM, 22 I/O, 5ch 8-bit ADC, 3 timers, CCP PWM, SPI/I2C, SPDIP-28, 2-5.5V, -40~85C

15000

Effective Inventory
Go to Inquiry

Image for reference only

Manufacturer Part:

PIC16F72-I/SP

Package:

SPDIP-28 (300 mil) (35.56 x 7.62 mm, 2.54mm pitch)

Brand:
Product Categories:
Other recommendations you may be interested in.
Description

The PIC16F72-I/SP from Microchip Technology is an 8-bit CMOS Flash microcontroller based on the PIC mid-range RISC architecture in a 28-pin SPDIP package. Key specifications: 35 single-word instructions; 200 ns instruction cycle at 20 MHz (DC-20 MHz clock input); 2K x 14-bit Flash program memory (3.5 KB); 128 bytes RAM; 22 I/O pins with 25 mA sink/source per pin; 5-channel 8-bit ADC; 3 timers (Timer0: 8-bit with 8-bit prescaler, Timer1: 16-bit with prescaler, Timer2: 8-bit with period register and postscaler); 1 CCP (Capture/Compare/PWM) module with 10-bit PWM resolution; synchronous serial port (MSSP) configurable as SPI master or I2C slave; 8-level hardware stack; watchdog timer with independent on-chip RC oscillator; power-on reset (POR), power-up timer (PWRT), oscillator start-up timer (OST); in-circuit serial programming (ICSP) via 2 pins; power-saving SLEEP mode; operating voltage 2.0 V to 5.5 V; operating temperature -40 to +85 degrees C (I suffix industrial grade); Flash endurance 1000 erase/write cycles typical. The SP suffix denotes 28-pin SPDIP (skinny PDIP, 300 mil) through-hole package with tube packaging. Active product, currently in production at Microchip.

The PIC16F72-I/SP from Microchip Technology is a member of the PIC16F mid-range 8-bit microcontroller family, offering a balanced combination of program memory, peripherals, and I/O in a 28-pin through-hole package. It is particularly well-suited for motor control, power conversion, and industrial control applications due to its CCP module and multiple timers.

The PIC16F72 occupies a sweet spot in the PIC16F product line: more capable than the smaller PIC16F628A (18-pin, no ADC) but less expensive than the larger PIC16F877A (40-pin, 8K Flash). The 2K x 14-bit Flash program memory is sufficient for moderate-complexity control algorithms, and the 128 bytes of RAM supports typical variable storage and stack usage.

The 5-channel 8-bit ADC is a key differentiator over ADC-less PIC devices. With 8-bit resolution and a conversion time of approximately 20 us, it is suitable for monitoring analog sensors such as temperature sensors, potentiometers, and voltage dividers. The 8-bit resolution provides 256 discrete levels over the 0-5 V input range (approximately 20 mV per step), which is adequate for many control and monitoring applications.

The CCP (Capture/Compare/PWM) module is the most important peripheral for motor control and power conversion. In PWM mode, it can generate a 10-bit resolution PWM signal with a period set by Timer2 and a duty cycle set by the CCPR1L register. The 10-bit resolution provides 1024 discrete duty cycle steps, enabling smooth motor speed control and precise power converter output regulation.

The synchronous serial port (MSSP) can be configured as either a 3-wire SPI master or a 2-wire I2C slave. In SPI mode, it can communicate with external ADCs, DACs, EEPROMs, and display drivers. In I2C mode, it can act as a slave device on an I2C bus, responding to commands from a master MCU or host processor.

The PIC16F72 is widely used in the Indian and Chinese electronics markets for motor control applications, particularly in inverter drives for single-phase and three-phase induction motors. Microchip application note AN901 describes a bidirectional V/f control implementation using the PIC16F72.

The I suffix denotes industrial temperature range (-40 to +85 degrees C). The SP suffix denotes the 28-pin SPDIP (skinny PDIP, 300 mil body width) through-hole package. This package is popular for prototyping, educational use, and low-volume production where hand soldering or socket mounting is preferred. The PIC16F72 is also available in SOIC-28 (SO), SSOP-28 (SS), and QFN-28 (ML) packages for surface-mount production.

The 1000 erase/write cycle Flash endurance is relatively low by modern standards (current PIC devices offer 10K-100K cycles). This limits the use of self-programming and field firmware updates. For applications requiring frequent firmware updates, consider newer PIC devices with higher Flash endurance.

The PIC16F72-I/SP operates as an 8-bit Harvard-architecture RISC microcontroller with separate program and data memory buses.

Harvard Architecture: The PIC16F72 uses a modified Harvard architecture where program memory and data memory have separate address spaces and buses. The program memory bus is 14 bits wide (to accommodate 14-bit instructions), while the data memory bus is 8 bits wide. This separation allows simultaneous access to instruction and data, improving throughput compared to von Neumann architectures where instruction and data share the same bus.

RISC Instruction Set: The instruction set consists of only 35 single-word instructions (except for program branches which are two-cycle). Most instructions execute in a single cycle (200 ns at 20 MHz). The instructions are 14 bits wide and include arithmetic (ADD, SUB), logical (AND, OR, XOR), data movement (MOV, SWAP), bit manipulation (BSF, BCF, BTFSS, BTFSC), and control (GOTO, CALL, RETURN, RETLW) operations. The simple instruction set reduces code size and execution time for control-oriented applications.

Pipeline Operation: The PIC16F72 uses a 2-stage pipeline: while one instruction is being executed, the next instruction is being fetched from program memory. This overlapping enables most instructions to execute in a single cycle. Branch instructions (GOTO, CALL) take two cycles because the pipeline must be flushed and refilled with the target instruction.

Program Memory: The 2K x 14-bit Flash program memory stores the application code. The program counter is 13 bits wide, allowing addressing of up to 8K locations (the PIC16F72 uses only 2K of this space). The reset vector is at address 0x0000, and the interrupt vector is at address 0x0004. The Flash is in-circuit serial programmable (ICSP) via the PGD and PGC pins, allowing firmware updates without removing the device from the board.

Data Memory (RAM): The 128 bytes of data memory are organized as a banked register file. The data memory is divided into four banks (Bank 0-3), each up to 128 bytes. Special Function Registers (SFRs) that control the peripherals occupy the lower addresses in each bank. General-Purpose Registers (GPRs) for user variables occupy the upper addresses. The bank is selected by the RP1:RP0 bits in the STATUS register. Most applications use only Bank 0 and Bank 1 for the majority of operations.

8-Level Hardware Stack: The hardware stack stores return addresses for CALL instructions and interrupt service routines. The stack is 13 bits wide (matching the program counter) and 8 levels deep. There is no stack overflow or underflow detection; exceeding 8 nested calls causes the oldest return address to be lost. The stack is not accessible as data memory (unlike some other MCU architectures).

Interrupt System: The PIC16F72 has a single interrupt vector at 0x0004. All interrupt sources share this vector, and the interrupt service routine must poll the interrupt flag bits to determine which source triggered the interrupt. Interrupt sources include: TMR0 overflow, TMR1 overflow, CCP capture/compare, MSSP (SPI/I2C) events, A/D conversion complete, and external INT pin (RB0). The INTCON, PIE1, and PIR1 registers control interrupt enables and flags.

Timer0: 8-bit timer/counter with an 8-bit programmable prescaler (1:2 to 1:256). Can be clocked from the internal instruction cycle clock (FOSC/4) or from an external pin (RA4/T0CKI). The prescaler is shared with the watchdog timer; it can be assigned to either Timer0 or the WDT, but not both simultaneously.

Timer1: 16-bit timer/counter with a programmable prescaler (1:1, 1:2, 1:4, 1:8). Can be clocked from FOSC/4, from an external pin (RC0/T1CKI), or from an external 32.768 kHz crystal oscillator connected to the T1OSO and T1OSI pins. The crystal oscillator option allows Timer1 to serve as a real-time clock that continues running during SLEEP mode.

Timer2: 8-bit timer with an 8-bit period register (PR2) and both a prescaler (1:1, 1:4, 1:16) and postscaler (1:1 to 1:16). Timer2 is primarily used as the PWM time base for the CCP module. When TMR2 equals PR2, it resets on the next cycle and triggers the postscaler.

CCP Module: The Capture/Compare/PWM module operates in three modes. (1) Capture mode: captures the Timer1 value when an event occurs on the RC2/CCP1 pin (rising edge, falling edge, or every 4th/16th rising edge). (2) Compare mode: generates an interrupt or output event when Timer1 matches the CCPR1 register value. (3) PWM mode: generates a PWM signal with 10-bit duty cycle resolution on the RC2/CCP1 pin. The PWM period is set by PR2 and the Timer2 prescaler; the duty cycle is set by the CCPR1L register and the CCP1X:CCP1Y bits.

ADC Module: The 5-channel 8-bit ADC converts an analog input voltage on one of the AN0-AN4 pins (RA0-RA4) to a digital value. The conversion uses a successive approximation algorithm with a conversion time of approximately 20 us at the maximum recommended clock rate. The ADC reference voltage is the supply voltage (VDD). The result is stored in the ADRES register.

MSSP Module: The Master Synchronous Serial Port can be configured as SPI master or I2C slave. In SPI mode, it generates the clock (SCK) and controls data transfer to external SPI devices. In I2C mode, it responds to the I2C slave address, receiving and transmitting data under master control. The I2C implementation supports 7-bit addressing and standard mode (100 kHz).

Pin Name Type Description
1 RA2/AN2/VREF- I/O Port A bit 2; analog input 2 for ADC; negative voltage reference input (not implemented on PIC16F72); can be used as digital I/O or ADC channel 2; 25 mA sink/source; TTL input levels
2 RA3/AN3/VREF+ I/O Port A bit 3; analog input 3 for ADC; positive voltage reference input (not implemented on PIC16F72); can be used as digital I/O or ADC channel 3; 25 mA sink/source
3 RA4/T0CKI I/O Port A bit 4; Timer0 external clock input; open-drain output (requires external pull-up for output operation); ADC channel 4; Schmitt trigger input; the only Port A pin with open-drain output; commonly used as external clock input for Timer0
4 RA5/AN4/SS I/O Port A bit 5; analog input 4 for ADC; SPI slave select input (SS) when MSSP is configured in SPI slave mode; TTL input levels; 25 mA sink/source; can be used as chip select for SPI communication
5 VSS Ground Ground connection; connect to PCB ground plane; all digital and analog circuits reference this pin; bypass VDD to VSS with 100 nF ceramic capacitor
6 OSC1/CLKIN Input Oscillator crystal input or external clock input; for crystal operation, connect a crystal (up to 20 MHz) between OSC1 and OSC2 with load capacitors; for external clock, apply a 0-5 V clock signal to OSC1 (leaving OSC2 unconnected); the oscillator mode is selected by the FOSC1:FOSC0 configuration bits
7 OSC2/CLKOUT Output Oscillator crystal output; connects to the other terminal of the crystal; in RC oscillator mode, outputs the instruction cycle clock (FOSC/4); in external clock mode, leave unconnected
8 VDD Power Positive supply voltage; 2.0 V to 5.5 V; all I/O levels are referenced to VDD; bypass with 100 nF ceramic capacitor to VSS close to the pin; supply current is approximately 2 mA at 5 V, 20 MHz (depends on operating mode)
9 RB0/INT I/O Port B bit 0; external interrupt input; interrupt on rising or falling edge (selected by INTEDG bit); TTL input levels with Schmitt trigger on interrupt path; 25 mA sink/source; interrupt-on-change feature; weak internal pull-up when port is configured as input (controlled by OPTION_REG bit 7)
10 RB1 I/O Port B bit 1; general-purpose I/O; interrupt-on-change feature; internal weak pull-up; 25 mA sink/source; TTL input levels
11 RB2 I/O Port B bit 2; general-purpose I/O; interrupt-on-change feature; internal weak pull-up; 25 mA sink/source; TTL input levels
12 RB3/PGM I/O Port B bit 3; low-voltage ICSP programming enable (PGM) pin; interrupt-on-change feature; internal weak pull-up; 25 mA sink/source; if LVP configuration bit is enabled, this pin must be held low during normal operation to prevent accidental entry into programming mode
13 RB4 I/O Port B bit 4; interrupt-on-change feature; internal weak pull-up; 25 mA sink/source; TTL input levels; commonly used as interrupt input for external events
14 RB5 I/O Port B bit 5; interrupt-on-change feature; internal weak pull-up; 25 mA sink/source
15 RB6/PGC I/O Port B bit 6; ICSP programming clock pin; interrupt-on-change feature; internal weak pull-up; 25 mA sink/source; Schmitt trigger input for ICSP; used by MPLAB ICD and PICKit programmers
16 RB7/PGD I/O Port B bit 7; ICSP programming data pin; interrupt-on-change feature; internal weak pull-up; 25 mA sink/source; Schmitt trigger input for ICSP; used by MPLAB ICD and PICKit programmers
17 RC0/T1OSO/T1CKI I/O Port C bit 0; Timer1 oscillator output; Timer1 external clock input; 25 mA sink/source; Schmitt trigger input; connect 32.768 kHz crystal between RC0 and RC1 for Timer1 RTC operation
18 RC1/T1OSI I/O Port C bit 1; Timer1 oscillator input; 25 mA sink/source; Schmitt trigger input; complementary connection for 32.768 kHz crystal
19 RC2/CCP1 I/O Port C bit 2; CCP1 (Capture/Compare/PWM) module I/O; in PWM mode, outputs the PWM waveform; in Capture mode, receives the external trigger signal; in Compare mode, outputs the compare match signal; 25 mA sink/source; Schmitt trigger input
20 RC3/SCK/SCL I/O Port C bit 3; SPI clock (SCK) in SPI mode; I2C clock (SCL) in I2C slave mode; 25 mA sink/source; Schmitt trigger input; used by the MSSP module for synchronous serial communication
21 RC4/SDI/SDA I/O Port C bit 4; SPI data input (SDI) in SPI mode; I2C data (SDA) in I2C slave mode; 25 mA sink/source; Schmitt trigger input; receives serial data from external devices
22 RC5/SDO I/O Port C bit 5; SPI data output (SDO) in SPI mode; 25 mA sink/source; transmits serial data to external devices; not used in I2C mode
23 RC6 I/O Port C bit 6; general-purpose I/O; 25 mA sink/source; Schmitt trigger input; no alternate function on PIC16F72 (USART not available on this device)
24 RC7 I/O Port C bit 7; general-purpose I/O; 25 mA sink/source; Schmitt trigger input; no alternate function on PIC16F72
25 RA0/AN0 I/O Port A bit 0; analog input 0 for ADC; can be used as digital I/O or ADC channel 0; 25 mA sink/source; TTL input levels; the ADC channel assignment is controlled by the CHS2:CHS0 bits in the ADCON0 register
26 RA1/AN1 I/O Port A bit 1; analog input 1 for ADC; can be used as digital I/O or ADC channel 1; 25 mA sink/source; TTL input levels
27 RA6/OSC2 I/O Not available on PIC16F72 in SPDIP-28 package; this pin is bonded to OSC2 internally; not a separate GPIO pin on this package variant
28 RA7/OSC1 I/O Not available on PIC16F72 in SPDIP-28 package; this pin is bonded to OSC1 internally; not a separate GPIO pin on this package variant
Application Description
Motor Inverter Control (V/f Drive) Single-phase or three-phase induction motor V/f control; CCP module generates 3 PWM channels (with external dead-time logic) for inverter bridge; Timer1 provides timing reference; ADC reads motor current and DC bus voltage; Microchip AN901 describes complete implementation; 2K Flash sufficient for V/f algorithm; popular in low-cost motor drives in Asian markets
Switch-Mode Power Supply (SMPS) PWM generation for buck, boost, or flyback converters; CCP module generates PWM with 10-bit duty cycle resolution; ADC monitors output voltage and current for feedback; Timer2 sets PWM frequency; I2C interface receives setpoint commands from host; 2K Flash sufficient for PID control loop
Industrial Sensor Interface Read multiple analog sensors (temperature, pressure, flow) via 5-channel ADC; process and format data; transmit to host via I2C or SPI; Timer1 provides sampling interval timing; SLEEP mode conserves power between readings; watchdog timer ensures automatic recovery from software faults
Battery-Powered Controller Low-power 2 V to 5.5 V operation suits battery applications; SLEEP mode reduces current to microamps; watchdog timer wakes MCU periodically for sensor reads; 128 bytes RAM stores calibration and configuration; I2C interface communicates with RTC and external EEPROM; 25 mA I/O directly drives LEDs and small relays
Home Appliance Controller Control washing machine, microwave, or air conditioner functions; ADC reads temperature and humidity sensors; CCP module drives triac for heater or motor speed control; I/O pins drive relays, LEDs, and buzzer; internal oscillator option eliminates external crystal; cost-effective for high-volume consumer products
Model Manufacturer Compatibility Key Difference
PIC16F72-I/SO Microchip Same Device, SOIC Package Same PIC16F72 in 28-pin SOIC surface-mount package; identical electrical and peripheral specifications; use for production PCB assembly where through-hole is not needed; slightly smaller footprint than SPDIP
PIC16F876A-I/SP Microchip Upgrade Path 28-pin PIC with 8K Flash (4x), 256B RAM (2x), 256B EEPROM, 5ch 10-bit ADC (vs 8-bit), USART, and more peripherals; pin-compatible in many circuits; use when more program memory, higher ADC resolution, or USART is needed; higher cost
PIC16F1829-I/SP Microchip Modern Replacement Enhanced mid-range PIC in 28-pin SPDIP; 16K Flash, 1K RAM, 256B EEPROM; 12-bit ADC; multiple CCP modules; EUSART; much higher Flash endurance (10K cycles); lower power; nanowatt XLP technology; recommended for new designs
ATmega328P-PU Microchip (AVR) Alternative Architecture 8-bit AVR MCU in 28-pin DIP; 32K Flash, 2K RAM, 1K EEPROM; 6ch 10-bit ADC; 3 timers; 6 PWM channels; USART, SPI, I2C; Arduino Uno chip; much more program memory and RAM; different instruction set and development tools; not code-compatible with PIC
STM32F103C8T6 ST 32-bit Upgrade ARM Cortex-M3 in LQFP-48; 64K Flash, 20K RAM; 72 MHz; 2ch 12-bit ADC; USB, CAN, multiple timers and USARTs; far more powerful but requires different development tools and knowledge; use when 8-bit PIC is insufficient for the application
Recommend Parts
HDMI 2.0 Bridge, 4K@60Hz, HDCP 2.2 Repeater, MHL 3.0, 76-pin QFN EP

Brand:

Package:

76-Pin QFN EP (9.0 x 9.0 x 0.83 mm)
In stock:
6848pcs

Cargo cycle: 3~7 Days
The minimum order is 1

Go to Inquiry
4700pF 3000V X7R MLCC, 10%, 1812, high-voltage TANCERAM, -55 to 125C, tape and reel

Brand:

Package:

1812 (4.50 x 3.18 x 2.80 mm)
In stock:
4146pcs

Cargo cycle: 3~7 Days
The minimum order is 1

Go to Inquiry
N-Channel depletion-mode MOSFET, 1000V, 10A, 1.5Ohm, normally-on, TO-268AA, 695W

Brand:

Package:

TO-268AA / D3PAK (15.75 x 13.08 x 4.83 mm)
In stock:
14959pcs

Cargo cycle: 3~7 Days
The minimum order is 1

Go to Inquiry
16Mbit SPI NOR Flash, 3V, QSPI/QPI, 133MHz, DTR, SOIC-8 150mil, -40 to 105C, TR

Brand:

Package:

8-SOIC (4.90 x 3.90 x 1.75 mm, 150mil)
In stock:
11082pcs

Cargo cycle: 3~7 Days
The minimum order is 1

Go to Inquiry
256Mbit SPI NOR Flash, 1.8V, QPI/QSPI, 104MHz, DTR, WSON-8 6x8mm, -40 to 105C

Brand:

Package:

8-WSON (6.0 x 8.0 x 0.73 mm, exposed pad)
In stock:
13368pcs

Cargo cycle: 3~7 Days
The minimum order is 1

Go to Inquiry
8Mbit async SRAM, 512Kx16, 2.5-3.6V, 55ns, ultra-low power, 48-mini BGA, Industrial

Brand:

Package:

48-Mini BGA (7.2 x 8.7 x 0.9 mm)
In stock:
3838pcs

Cargo cycle: 3~7 Days
The minimum order is 1

Go to Inquiry
Quality Assurance

Quality is the core foundation of our long-term global cooperation. With over 20 years of experience in the electronic component industry, Materialparts has built a strict and standardized quality management system covering component sourcing, incoming inspection, full-batch testing, packaging and delivery. We are committed to delivering 100% genuine, high-reliability electronic components for industrial control, automotive electronics, consumer electronics and medical device industries, and fully safeguarding your production and R&D projects.

1. Authorized & Genuine Sourcing Promise

All of our electronic components are procured from official authorized distributors and original manufacturers. We strictly reject counterfeits, refurbished parts, disassembled components and gray-market goods. Every product is guaranteed to be brand-new original parts and fully consistent with the original technical parameters. For branded products such as NXP IC series, we maintain complete supply channel documents to realize full product traceability.

2. Strict Full-batch Quality Inspection

We implement 100% full-batch quality control for all goods before shipment. Our professional QC team conducts multi-dimensional tests including appearance inspection, electrical parameter testing, performance verification and packaging check. Each batch of components is attached with complete inspection reports and batch records. We stick to zero-tolerance standards for defective products to ensure every piece of component meets industrial application requirements.

3. Industry Standard Compliance

Our products comply with a variety of international industry quality standards to adapt to high-standard application scenarios:
  • Automotive Electronics: All automotive-grade components pass AEC-Q series certification, featuring excellent stability and durability to adapt to complex vehicle operating environments.
  • Medical Devices: High-reliability components meet medical industry safety and compliance regulations, ensuring stable operation for medical equipment.
  • Industrial Control & Consumer Electronics: Products conform to universal international electronic industry standards, suitable for long-term continuous operation of various equipment.

4. Professional Reliability Control

For static-sensitive, moisture-sensitive and precision components such as ICs, PCBs, sensors and connectors, we carry out reliability screening in advance. Combined with standardized ESD anti-static packaging and vacuum moisture-proof packaging, we avoid component damage caused by static electricity, dampness or collision during storage and transportation, and retain the original performance of products.

5. Traceability Management System

We establish a complete product traceability system. Each batch of goods corresponds to independent batch number, sourcing record, inspection record and delivery record. Customers can query the whole lifecycle information of components at any time. This system effectively solves quality risks and facilitates after-sales handling and production quality control for your company.

6. After-sales Quality Guarantee

If any product is confirmed to have non-conformity quality problems due to our reasons after receipt, we provide free return, exchange and supplementary delivery services. Our professional quality team will also conduct root cause analysis to optimize our quality control process. We respond to quality feedback within 24 hours to resolve your worries efficiently.

Contact Us

If you have inquiries about our quality standards, inspection procedures or product certification documents, please feel free to contact us:

 

Email: info@materialparts.com
Tel / WhatsApp: +86 13760382860
Address: Room 2919, Guoli Building, Huaqiang North, Futian District, Shenzhen, Guangdong, China

 

Shipping & Payment

Materialparts is a professional global supplier of electronic components with over 20 years of industry experience. We provide one-stop supply of passive components, integrated circuits, as well as parts for industrial control, automotive electronics, consumer electronics and medical devices. Below are the unified shipping and payment policies applicable to all orders, samples and bulk purchases worldwide.

1. Payment Terms

We offer a variety of secure and convenient payment methods to meet diverse business cooperation needs. Details are as follows:
  1. Accepted Payment Methods
  • T/T (Bank Wire Transfer): The primary settlement method for bulk orders and a widely used international payment channel.
  • PayPal: Ideal for small orders, sample orders and quick payments.
  1. Settlement Currency

     

    US Dollar (USD) is the default settlement currency. RMB is available for domestic customers.

  2. Bank Charges

     

    All transfer fees, intermediary bank charges and other remittance-related expenses shall be borne by the buyer.

  3. Payment Requirements
  • Sample and small orders: Shipment will be arranged upon full payment.
  • In-stock bulk orders: Goods will be delivered within 2 to 3 working days after full payment.

2. Shipping & Delivery

We partner with leading global logistics providers to ensure safe and fast delivery worldwide. Relevant details are listed below:
  1. Logistics Partners
  • International Express: DHL, FedEx, UPS, TNT
  • Economy Logistics: Air freight and sea freight for large-volume cargo
  • Domestic Delivery: SF Express, Yunda Express
  1. Order Processing Time
  • In-stock items: Orders confirmed and fully paid before 14:00 (GMT+8) will be shipped on the same day. All other orders will be dispatched within 1 to 2 working days.
  • Out-of-stock or sourced items: The delivery lead time will be confirmed separately according to brand and inventory status.
  1. Estimated Transit Time
  • International Express: 3 – 7 working days globally
  • Air Freight: 7 – 12 working days
  • Sea Freight: 25 – 40 working days for heavy and large bulk cargo
  1. Shipping Fee Rules
  • Shipping cost is calculated based on package weight, volume, destination and delivery method.
  • Both freight prepaid and freight collect are available. Please provide your courier account number in advance if you choose freight collect.
  • Free international express delivery is offered for large orders. Terms for long-term partners can be negotiated separately.
  1. Shipment Tracking
     

    Within 24 hours after dispatch, we will send the tracking number, commercial invoice, packing list and other documents to your email or communication account. You may check the shipment status online in real time.

3. General Order Rules & Notes

  1. MOQ & Sample Service

     

    We support flexible minimum order quantities for samples, small-batch and large-batch orders. All sample orders shall comply with the above shipping and payment policies.

  2. Packaging Standard

     

    All electronic components are packed with professional anti-static and shockproof materials. Original factory packaging is available for branded chips and integrated circuits.

4. Customs & Liability Statement

  1. Import Duties & Taxes

     

    All import duties, customs clearance fees and local taxes incurred for international shipments shall be borne by the buyer. We will provide complete customs documents to assist you with clearance procedures.

  2. Handling of Lost or Damaged Goods
  • In case of loss or severe damage during transit, please contact us within 48 hours after receiving the tracking information. We will assist you in filing a claim with the logistics provider.
  • We shall not be liable for any losses caused by incorrect delivery address, wrong contact information or the buyer’s refusal to complete customs clearance.

5. Local Pickup in Shenzhen

Local pickup service is available for customers in Shenzhen and surrounding areas:
  • Address: Room 2919, Guoli Building, Huaqiang North, Futian District, Shenzhen, Guangdong Province, China
  • Business Hours: 09:00 – 18:00, Monday to Friday. Closed on weekends and official public holidays.
  • Notice: Please make an appointment via email or communication tools one day in advance, and present your order information upon pickup.

Contact Information

Email: info@materialparts.com

Tel / WhatsApp: +86 13760382860

Service & Packaging

Materialparts is a professional electronic component supplier based in Shenzhen, China, with over 20 years of global trading experience. We integrate component procurement, quality inspection, technical support, customized packaging, and global delivery services to provide one-stop supply chain solutions. Our business covers industrial control, automotive electronics, consumer electronics, medical devices and other industries. We always adhere to genuine sources, stable supply and considerate after-sales service.

Core Services

1. One-stop Sourcing & BOM Support

We specialize in a full range of passive and active electronic components, including SMD resistors, power resistors, connectors, aviation connectors, LED beads, flexible circuit boards, printed circuit boards, and integrated circuits. Our professional team provides BOM list consolidation, component matching, and alternative model recommendation services. We support sample orders, small-batch trial production, and mass production orders with flexible MOQs to meet diverse procurement needs.

2. Genuine Product Guarantee & Full-process Quality Inspection

All products are sourced from official authorized channels and are 100% original genuine parts. Every batch of goods undergoes strict full-process quality inspection before delivery, with complete batch records and traceability documents provided. Our products comply with AEC-Q standards for automotive electronics and high-reliability specifications for medical devices. We eliminate counterfeits, refurbished parts and defective products from the source to secure your project production.

3. Fast Quotation & Order Processing

Our customer service team responds promptly to inquiries and quotation requests. All in-stock orders will be processed within one working day. We provide stocking reservation services for long-term cooperative customers, effectively solving problems such as component shortages and unstable supply chains.

4. Professional Technical Support

Our senior engineer team provides free technical consultation, model selection guidance and original manufacturer datasheets. We assist customers in solving problems related to product R&D, circuit design and component application, providing reliable technical support for project progress.

5. Sourcing for Special Components

Relying on our global supply chain network, we professionally source scarce components, obsolete parts and customized special components to efficiently solve your procurement difficulties.

6. Global Logistics & Document Services

We cooperate with mainstream international logistics providers including DHL, FedEx, UPS and TNT to achieve fast global delivery. We can provide complete export documents such as customs declaration files, commercial invoices and packing lists to ensure smooth customs clearance for international shipments. Local pickup is also available for customers in Shenzhen, China.

Professional Packaging Standards

Electronic components are sensitive to static electricity, collision, moisture and dust. We adopt industry-standard anti-static packaging solutions to fully ensure the integrity of goods during transportation and storage.

1. General Packaging Specifications

  • All components are packed separately to avoid damage caused by friction and collision;
  • Shockproof buffer materials are added for fragile products to ensure transportation safety;
  • Each package is clearly marked with part number, quantity, batch number and specifications for easy inventory counting and management.

2. Classified Professional Packaging

  • Anti-static Packaging: Static-sensitive components such as chips, circuit boards and sensors are packaged with anti-static bags, shielding boxes and conductive foam in strict accordance with international anti-static standards to prevent static damage.
  • Vacuum Moisture-proof Packaging: Moisture-sensitive components are vacuum-sealed with desiccants to isolate humid air, suitable for ocean transportation and long-term storage.
  • Original Factory Packaging: Integrated circuits of brands such as NXP are delivered with original reels, trays or tubes by default, retaining complete original packaging and adapting to automated SMT production lines.
  • Discrete Device Packaging: Discrete devices such as SMD resistors, power resistors and LEDs are quantitatively and classifiedly packaged with accurate quantity and clear marking.
  • Connector / Aviation Connector Packaging: Hard outer packaging is adopted to prevent pin bending and structural deformation.

3. Custom Packaging Services

We provide value-added services including personalized packaging, custom labeling and re-reeling according to customer requirements, fully matching your production and warehouse management standards.

Contact Information

For service consultation or packaging customization, please feel free to contact us:
Email: info@materialparts.com
Tel / WhatsApp: +86 13760382860
Address: Room 2919, Guoli Building, Huaqiang North, Futian District, Shenzhen, Guangdong, China
 

Online Inquiry Form

Support Excel, PDF, CSV format files for full BOM list quotation

Submit your component procurement and custom packaging needs via the form below. We will provide a detailed quotation and professional solution within 1–8 working hours.