Difference between revisions of "USB-RTC"

From SB-Components Wiki

Line 43: Line 43:
 
==== Python ====
 
==== Python ====
 
* Install MCP2221 Library by running below command on terminal:
 
* Install MCP2221 Library by running below command on terminal:
<source lang="shell"> pip3 install PyMCP2221A </source>
+
<source lang="shell"> sudo pip3 install PyMCP2221A </source>
 
* Connect USB-RTC on USB Port of Raspberry Pi/Windows.
 
* Connect USB-RTC on USB Port of Raspberry Pi/Windows.
 
* Now clone/download USB-RTC Github Repository by running below command:
 
* Now clone/download USB-RTC Github Repository by running below command:
Line 55: Line 55:
 
* Now run test.py file by running below command:
 
* Now run test.py file by running below command:
  
<source lang="shell"> python3 test.py </source>
+
<source lang="shell"> sudo python3 test.py </source>
  
 
== Resources ==
 
== Resources ==
 
[https://cdn.shopify.com/s/files/1/1217/2104/files/MCP2221-Datasheet.pdf| MCP2221 Datasheet]
 
[https://cdn.shopify.com/s/files/1/1217/2104/files/MCP2221-Datasheet.pdf| MCP2221 Datasheet]

Revision as of 05:50, 11 June 2021

USB RTC

USB RTC is an open source real time clock device that comprises MCP2221, a USB-to-UART/I2C serial converter, which enables USB connectivity, in the processes that include a USB, UART(Serial), GPIO, and I2C interfaces. It runs on Hi-tech DS3231 RTC chip, an accurate I2C, runs the USB RTC with extremely high efficiency at a low cost. USB RTC for Raspberry Pi has cross platform support which makes it enable to work on different platforms like Windows, MAC, etc.

Features

  • Temperature-compensated crystal oscillator
  • DS3231 advanced processor
  • MCP2221
  • I2C/SMBus supported clock and data lines
  • User-selectable via jumper cable for 3.3V or 5V level output (up to 500 mA)
  • Four GPIO lines that are configurable for GPIO Operations
  • Pins for Serial(UART) Communication
  • Supports full-speed USB (12 Mb/s)
  • 64-byte Transmit
  • 64-byte Receive
  • USB 2.0 Compliant
  • Low-Power Consumption

  • Specifications

  • Accuracy ±2ppm from 0°C to +40°C
  • Accuracy ±3.5ppm from -40°C to +85°C
  • Battery Backup Input for Continuous Timekeeping
  • Operating Temperature Ranges Commercial: 0°C to +70°C Industrial: -40°C to +85°C
  • Low-Power Consumption
  • Real-Time Clock Counts Seconds, Minutes, Hours, Day, Date, Month, and Year with Leap Year Compensation Valid Up to 2100
  • Two Time-of-Day Alarms
  • Programmable Square-Wave Output
  • Fast (400kHz) I2C Interface
  • 3.3V Operation
  • Digital Temp Sensor Output: ±3°C Accuracy
  • Pico 1.14 LCD HAT
    Buy it From : Click Here

    Installation

    Python

    • Install MCP2221 Library by running below command on terminal:
    sudo pip3 install PyMCP2221A
    • Connect USB-RTC on USB Port of Raspberry Pi/Windows.
    • Now clone/download USB-RTC Github Repository by running below command:
    git clone https://github.com/sbcshop/USB-RTC.git
    • Now enter downloaded folder from home/pi or by rnning below command:
    cd USB-RTC
    • Now run test.py file by running below command:
    sudo python3 test.py

    Resources

    MCP2221 Datasheet