PIC18F46K22-I/P Microcontroller 8-bit

6,000 د.ع

Build powerful and efficient embedded systems with the PIC18F46K22-I/P, a high-performance 8-bit microcontroller from the trusted PIC XLP 18K series by Microchip Technology. This original integrated circuit combines high computational performance with extreme low-power operation, making it the ideal choice for applications ranging from industrial automation and consumer electronics to automotive systems and medical devices

In stock

Compare
SKU: DIYS10821 Category:

Description

New and Original PIC18F46K22-I/P Microcontroller – 8-bit IC Chip from Microchip Technology

Build powerful and efficient embedded systems with the PIC18F46K22-I/P, a high-performance 8-bit microcontroller from the trusted PIC XLP 18K series by Microchip Technology. This original integrated circuit combines high computational performance with extreme low-power operation, making it the ideal choice for applications ranging from industrial automation and consumer electronics to automotive systems and medical devices.

Whether you’re a professional embedded engineer, a hobbyist working on custom projects, or a student learning microcontroller programming, this 40-pin PDIP packaged IC offers the perfect balance of performance, memory, and peripheral integration for demanding applications.

The PIC18F46K22-I/P features a robust RISC CPU capable of operating at up to 64 MHz, delivering up to 16 MIPS of processing power for efficient code execution. With 64 KB of flash program memory, 3.8 KB of SRAM, and 1 KB of data EEPROM, this microcontroller provides ample storage for complex programs, data logging, and non-volatile configuration parameters. The device operates across a wide voltage range of 1.8V to 5.5V, making it suitable for both battery-powered portable devices and industrial control systems.

Key Features

High-Performance RISC CPU

Features a C compiler-optimized RISC architecture with 16-bit wide instructions and 8-bit wide data path, delivering up to 16 MIPS of processing power at 64 MHz for efficient program execution.

eXtreme Low-Power Technology

Industry-leading low-power operation with Sleep mode current as low as 20 nA, Watchdog Timer at 300 nA, and Timer1 oscillator at 800 nA, ideal for battery-powered and energy-harvesting applications.

Ample Memory Resources

Provides 64 KB of flash program memory, 3,896 bytes of SRAM, and 1,024 bytes of data EEPROM, offering substantial capacity for complex embedded applications and data storage.

36 I/O Pins with High Current Drive

Features up to 35 I/O pins plus one input-only pin, with each I/O capable of sinking/sourcing 25 mA for direct driving of LEDs and other peripherals.

10-bit Analog-to-Digital Converter

Includes up to 30-channel 10-bit ADC with auto-acquisition capability, conversion during Sleep mode, and Fixed Voltage Reference channel for precise analog measurements.

Multiple Communication Interfaces

Supports two Enhanced USART modules, two Master Synchronous Serial Port modules (SPI and I²C), providing flexible connectivity for various peripherals and networks.

Advanced Timer Resources

Features three 8-bit timers and four 16-bit timers, along with two Capture/Compare/PWM modules and three Enhanced CCP modules for motor control and PWM generation.

Flexible Oscillator Options

Includes a precision 16 MHz internal oscillator block, four crystal modes up to 64 MHz, two external clock modes, and 4x PLL for high-performance operation.

Comprehensive Analog Features

Integrates two rail-to-rail analog comparators, a 5-bit Digital-to-Analog Converter, and Charge Time Measurement Unit for capacitive touch sensing applications.

Wide Operating Temperature Range

Ruggedly designed for industrial applications with an operating temperature range of -40°C to +85°C.

Specifications

Parameter Value
Manufacturer Microchip Technology
Part Number PIC18F46K22-I/P
Core Architecture 8-bit PIC RISC
CPU Speed Up to 64 MHz (16 MIPS)
Program Memory (Flash) 64 KB
SRAM 3.8 KB
Data EEPROM 1 KB
I/O Pins 36
ADC Channels Up to 30 channels, 10-bit
Comparators 2
DAC 1 (5-bit)
Timers 3 x 8-bit, 4 x 16-bit
PWM Modules 2 CCP, 3 ECCP
Serial Interfaces 2 x EUSART, 2 x SPI, 2 x I2C
Package Type PDIP-40
Pin Pitch 0.1 inch (2.54 mm)
Operating Voltage 1.8V – 5.5V
Sleep Mode Current 20 nA
Operating Temperature -40°C to +85°C
RoHS Compliant Yes
Mounting Type Through-Hole

Pin Configuration

The PIC18F46K22-I/P comes in a standard 40-pin PDIP package with the following key pin groups:

Pin Group Pins Functions
Port A RA0-RA7 Digital I/O, analog inputs, external interrupts
Port B RB0-RB7 Digital I/O, analog inputs, ICSP programming pins
Port C RC0-RC7 Digital I/O, CCP/PWM outputs, serial communication
Port D RD0-RD7 Digital I/O, parallel slave port, CCP outputs
Port E RE0-RE3 Digital I/O, analog inputs, control signals
Power VDD, VSS Positive supply voltage (1.8-5.5V) and ground
Oscillator OSC1/CLKIN, OSC2/CLKOUT Crystal or external clock input
Master Clear MCLR Master clear (reset) input
Programming ICSPDAT, ICSPCLK In-Circuit Serial Programming pins

Wiring Diagram

Basic Power and Programming Connection

text
Power Supply (5V) -----> VDD
                   -----> VSS - Ground
                   
ICSP Programmer -----> RB6 (ICSPCLK)
                   -----> RB7 (ICSPDAT)
                   -----> MCLR

Typical I2C Sensor Connection

text
PIC18F46K22                    I2C Sensor
--------------                  ----------
5V                 ----->       VCC
GND                ----->       GND
RC3 (SCL)          ----->       SCL
RC4 (SDA)          ----->       SDA

MPLAB XC8 Code Example (C)

c
// Example: Blink LED on RB0

#include <xc.h>

// Configuration bits
#pragma config FOSC = INTOSC    // Internal oscillator
#pragma config WDTE = OFF       // Watchdog timer disabled
#pragma config PWRTE = ON       // Power-up timer enabled
#pragma config MCLRE = ON       // MCLR pin enabled
#pragma config BOREN = ON       // Brown-out reset enabled
#pragma config LVP = OFF        // Low-voltage programming disabled
#pragma config DEBUG = OFF      // Debugger disabled

#define LED_PIN LATB0
#define LED_TRIS TRISB0

void main(void) {
    // Configure internal oscillator for 16 MHz
    OSCCON = 0x70;
    
    // Configure LED pin as output
    LED_TRIS = 0;
    LED_PIN = 0;
    
    while(1) {
        LED_PIN = 1;
        __delay_ms(500);
        LED_PIN = 0;
        __delay_ms(500);
    }
}

Key Peripheral Highlights

eXtreme Low-Power Technology

  • Sleep mode: 20 nA typical

  • Watchdog Timer: 300 nA typical

  • Timer1 oscillator: 800 nA at 32 kHz

Enhanced Capture/Compare/PWM

  • Up to four PWM outputs per module

  • Programmable dead time for motor control

  • Auto-shutdown and auto-restart capabilities

Analog-to-Digital Converter

  • 10-bit resolution with up to 30 channels

  • Auto-acquisition capability for simplified timing

  • Conversion during Sleep mode for power savings

Communication Peripherals

  • Two EUSART modules supporting RS-232, RS-485, and LIN

  • Two MSSP modules for SPI and I2C

  • Auto-wake-up on Break and Auto-Baud Detect

Common Applications

  • Industrial automation and process control

  • Consumer electronics and smart home devices

  • Automotive systems

  • Medical devices and patient monitoring

  • Battery-powered portable instruments

  • Motor control and power management

  • Data acquisition and logging systems

  • Capacitive touch sensing interfaces

  • Educational microcontroller platforms

Package Contents

  • 1 x Original PIC18F46K22-I/P Microcontroller IC

متحكم PIC18F46K22-I/P جديد وأصلي – شريحة IC 8 بت من Microchip Technology

ابنِ أنظمة مدمجة قوية وفعالة باستخدام متحكم PIC18F46K22-I/P، وهو متحكم 8 بت عالي الأداء من سلسلة PIC XLP 18K الموثوقة من Microchip Technology. تجمع هذه الدائرة المتكاملة الأصلية بين الأداء الحسابي العالي والتشغيل فائق الانخفاض في استهلاك الطاقة، مما يجعلها الخيار المثالي للتطبيقات التي تتراوح بين الأتمتة الصناعية والإلكترونيات الاستهلاكية وأنظمة السيارات والأجهزة الطبية. سواء كنت مهندس أنظمة مدمجة محترفًا أو هاويًا تعمل على مشاريع مخصصة أو طالبًا تتعلم برمجة المتحكمات الدقيقة، فإن شريحة IC هذه ذات الحزمة PDIP-40 تقدم التوازن المثالي بين الأداء والذاكرة وتكامل المحيطات للتطبيقات المتطلبة.

يتميز PIC18F46K22-I/P بوحدة معالجة مركزية RISC قوية قادرة على العمل بتردد يصل إلى 64 ميجاهرتز، مما يوفر ما يصل إلى 16 MIPS من قوة المعالجة لتنفيذ التعليمات البرمجية بكفاءة. مع ذاكرة فلاش سعة 64 كيلوبايت للبرامج، وذاكرة وصول عشوائي سعة 3.8 كيلوبايت، وذاكرة EEPROM سعة 1 كيلوبايت للبيانات، يوفر هذا المتحكم تخزينًا وافرًا للبرامج المعقدة وتسجيل البيانات ومعلمات التكوين غير المتطايرة. يعمل الجهاز عبر نطاق جهد واسع من 1.8 فولت إلى 5.5 فولت، مما يجعله مناسبًا لكل من الأجهزة المحمولة التي تعمل بالبطارية وأنظمة التحكم الصناعية.

المميزات الرئيسية

وحدة معالجة مركزية RISC عالية الأداء

يتميز بهندسة RISC محسنة للمترجم C مع تعليمات 16 بت ومسار بيانات 8 بت، مما يوفر ما يصل إلى 16 MIPS من قوة المعالجة عند 64 ميجاهرتز.

تقنية فائقة الانخفاض في استهلاك الطاقة

تشغيل منخفض الطاقة مع تيار في وضع السكون يصل إلى 20 نانو أمبير، مثالي للتطبيقات التي تعمل بالبطارية.

موارد ذاكرة وفيرة

يوفر 64 كيلوبايت من ذاكرة الفلاش للبرامج، و 3.8 كيلوبايت من ذاكرة الوصول العشوائي، و 1 كيلوبايت من ذاكرة EEPROM للبيانات.

36 دبوس إدخال/إخراج مع تيار عالي

يتميز بما يصل إلى 36 دبوس إدخال/إخراج مع قدرة كل دبوس على سحب/تزويد 25 مللي أمبير.

محول تماثلي رقمي 10 بت

يتضمن ما يصل إلى 30 قناة ADC 10 بت مع قدرة اكتساب تلقائي وتحويل أثناء وضع السكون.

واجهات اتصال متعددة

يدعم وحدتي EUSART محسنتين ووحدتي MSSP لـ SPI و I²C.

موارد مؤقتات متقدمة

يتميز بثلاثة مؤقتات 8 بت وأربعة مؤقتات 16 بت ووحدات CCP و ECCP للتحكم في المحركات.

خيارات مذبذب مرنة

يتضمن مذبذبًا داخليًا دقيق 16 ميجاهرتز وأربعة أوضاع بلورية و PLL 4x.

ميزات تماثلية شاملة

يدمج مقارنين تماثليين ومحول DAC 5 بت ووحدة قياس وقت الشحن.

نطاق درجة حرارة تشغيل واسع

مصمم للتطبيقات الصناعية مع نطاق درجة حرارة تشغيل من -40 درجة مئوية إلى +85 درجة مئوية.

المواصفات الفنية

المعلمة القيمة
الشركة المصنعة Microchip Technology
رقم القطعة PIC18F46K22-I/P
هندسة النواة PIC RISC 8 بت
سرعة المعالج حتى 64 ميجاهرتز
ذاكرة الفلاش 64 كيلوبايت
ذاكرة الوصول العشوائي 3.8 كيلوبايت
ذاكرة EEPROM 1 كيلوبايت
دبابيس الإدخال/الإخراج 36
قنوات ADC حتى 30 قناة
المؤقتات 3 × 8 بت، 4 × 16 بت
الواجهات التسلسلية EUSART، SPI، I2C
نوع الحزمة PDIP-40
جهد التشغيل 1.8V – 5.5V
تيار وضع السكون 20 نانو أمبير
درجة حرارة التشغيل -40°C إلى +85°C

التطبيقات الشائعة

  • الأتمتة الصناعية والتحكم في العمليات

  • الإلكترونيات الاستهلاكية وأجهزة المنزل الذكي

  • أنظمة السيارات

  • الأجهزة الطبية

  • الأجهزة المحمولة التي تعمل بالبطارية

  • التحكم في المحركات وإدارة الطاقة

  • أنظمة اكتساب البيانات وتسجيلها

  • واجهات استشعار اللمس السعوية

  • المنصات التعليمية

محتويات العلبة

  • 1 × شريحة متحكم PIC18F46K22-I/P أصلية

Reviews

There are no reviews yet

Be the first to review “PIC18F46K22-I/P Microcontroller 8-bit”

Your email address will not be published. Required fields are marked *