From 4675bea6395207af5d389dc8f38fcee2806149a8 Mon Sep 17 00:00:00 2001 From: JoaK Date: Sun, 19 Jun 2016 22:58:59 +0200 Subject: added cd4049 --- index.html | 15 +++++++++++++-- manuals/cd4049ub-mil.jpg | Bin 0 -> 22909 bytes manuals/cd4049ub-mil.pdf | Bin 0 -> 1774211 bytes manuals/cd4049ub-mil.txt | 4 ++++ site.py | 8 ++++++-- static/style.css | 46 ++++++++++++++++++++++++++++------------------ 6 files changed, 51 insertions(+), 22 deletions(-) create mode 100644 manuals/cd4049ub-mil.jpg create mode 100644 manuals/cd4049ub-mil.pdf create mode 100644 manuals/cd4049ub-mil.txt diff --git a/index.html b/index.html index 6728aae..73ab04b 100644 --- a/index.html +++ b/index.html @@ -1,8 +1,12 @@ - + + collection of different operation manuals and data sheets + + +
-

Operation manuals

+

Operation manuals and data sheets

by JoaK

@@ -42,6 +46,13 @@

The 74HC595; 74HCT595 is an 8-bit serial-in/serial or parallel-out shift register with a storage register and 3-state outputs. Both the shift and storage register have separate clocks.

Tags: 74HC595, shift register, schieberegister, ic
+
  • +

    CD4049

    + + pdf-linkanchor-link +

    The CD4049UB and CD4050B devices are inverting and non-inverting hex buffers, respectively, and feature logiclevel conversion using only one supply voltage (VCC).

    +
    Tags: CD4049, 4049, ic, hex buffer, coverter, inverting
    +
  • LM555

    diff --git a/manuals/cd4049ub-mil.jpg b/manuals/cd4049ub-mil.jpg new file mode 100644 index 0000000..5474877 Binary files /dev/null and b/manuals/cd4049ub-mil.jpg differ diff --git a/manuals/cd4049ub-mil.pdf b/manuals/cd4049ub-mil.pdf new file mode 100644 index 0000000..2e77065 Binary files /dev/null and b/manuals/cd4049ub-mil.pdf differ diff --git a/manuals/cd4049ub-mil.txt b/manuals/cd4049ub-mil.txt new file mode 100644 index 0000000..5d5d393 --- /dev/null +++ b/manuals/cd4049ub-mil.txt @@ -0,0 +1,4 @@ +Title: CD4049 +File: cd4049ub-mil.pdf +Tags: CD4049, 4049, ic, hex buffer, coverter, inverting +Description: The CD4049UB and CD4050B devices are inverting and non-inverting hex buffers, respectively, and feature logiclevel conversion using only one supply voltage (VCC). diff --git a/site.py b/site.py index a6fb3cc..a31d17b 100644 --- a/site.py +++ b/site.py @@ -5,7 +5,11 @@ import os folder = "manuals" header = """ -""" + + collection of different operation manuals and data sheets + + +""" middlepart = """""" footer = """ @@ -14,7 +18,7 @@ footer = """ middlepart += """
    -

    Operation manuals

    +

    Operation manuals and data sheets

    by JoaK

    diff --git a/static/style.css b/static/style.css index 70566c6..fc91aba 100644 --- a/static/style.css +++ b/static/style.css @@ -22,24 +22,34 @@ h4 { border: 1px solid #000; list-style: none; float: left; - box-shadow: 1px 1px 0px #999, - 2px 2px 0px #000, - 3px 3px 0px #999, - 4px 4px 0px #000, - 5px 5px 0px #999, - 6px 6px 0px #000, - 7px 7px 0px #999, - 8px 8px 0px #000, - 9px 9px 0px #999, - 10px 10px 0px #000, - 11px 11px 0px #999, - 12px 12px 0px #000, - 13px 13px 0px #999, - 14px 14px 0px #000, - 15px 15px 0px #999, - 16px 16px 0px #000, - 17px 17px 0px #999, - 18px 18px 0px #000; + box-shadow: 1px 1px 0px rgba(144, 144, 144, 1.0), + 2px 2px 0px rgba(0, 0, 0, 1.0), + 3px 3px 0px rgba(144, 144, 144, 1.0), + 4px 4px 0px rgba(0, 0, 0, 1.0), + 5px 5px 0px rgba(144, 144, 144, 1.0), + 6px 6px 0px rgba(0, 0, 0, 1.0), + 7px 7px 0px rgba(144, 144, 144, 1.0), + 8px 8px 0px rgba(0, 0, 0, 1.0), + 9px 9px 0px rgba(144, 144, 144, 1.0), + 10px 10px 0px rgba(0, 0, 0, 1.0), + 11px 11px 0px rgba(144, 144, 144, 0.9), + 12px 12px 0px rgba(0, 0, 0, 0.9), + 13px 13px 0px rgba(144, 144, 144, 0.8), + 14px 14px 0px rgba(0, 0, 0, 0.8), + 15px 15px 0px rgba(144, 144, 144, 0.7), + 16px 16px 0px rgba(0, 0, 0, 0.7), + 17px 17px 0px rgba(144, 144, 144, 0.6), + 18px 18px 0px rgba(0, 0, 0, 0.6), + 19px 19px 0px rgba(144, 144, 144, 0.5), + 20px 20px 0px rgba(0, 0, 0, 0.5), + 21px 21px 0px rgba(144, 144, 144, 0.4), + 22px 22px 0px rgba(0, 0, 0, 0.4), + 23px 23px 0px rgba(144, 144, 144, 0.3), + 24px 24px 0px rgba(0, 0, 0, 0.3), + 25px 25px 0px rgba(144, 144, 144, 0.2), + 26px 26px 0px rgba(0, 0, 0, 0.2), + 27px 27px 0px rgba(144, 144, 144, 0.1), + 28px 28px 0px rgba(0, 0, 0, 0.1); } -- cgit v1.2.3