5-bit binary in 2 seven segment displays?

How to display a 5-bit binary in 2 seven segment displays using gates or components available in multisim?
Attachments:
sev seg.ms12 ‏408 KB

Hello,
It seems you already have a working file. The way a seven segment display works is by lighting each individual light of a the display (there's 7 lights for number 8 for example). You can use a driver or figure out a logic using digital gates. If oyu need information on this, there are lots of examples on the web and youtube. There's also samples in the Multisim samples folder involving seven segment displays that you can see.
Kind regards,
Miguel V
National Instruments

Similar Messages

  • Seven segment Display

    Hi,
    My project is to do with a petrol pump and the simulation of it.
    My problem is that i need to create a seven segment display in an interface containing Jbuttons that when pressed will run methods.
    I have the Jbuttons created and there should be(which there currently isnt) a counter shown next to the button for the following method in the Jframe
    public void StartSqueezing()
    NozzleReady=false;
    NozzleInUse=true;
    NozzleNotInUse=false;
    do{
    if( LitresDispensedPerTransaction < PetrolLimit)
    LitresDispensedPerTransaction = (LitresDispensedPerTransaction + 0.10);
    try {
    Thread.sleep(1000) ;
    //1000 millisecs
    catch(InterruptedException ex) {
    while (NozzleInUse = true );
    I also have this further down- getPrice is just another method in the code.
    private void makeFrame()
    frame = new JFrame("Peter Pump");
    Container contentPane = frame.getContentPane();
    contentPane.setLayout(new GridLayout(3, 2));
    JButton getPrice = new JButton ("getPrice");
    contentPane.add(getPrice);
    getPrice.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) { getPrice(); }
    I need a seven segment display that will count up the number of litres of fuel dispensed when the Jbutton representing the above "StartSqueezing" method is pressed. The counter should move up by 0.1 each time.
    I am by no means asking anybody to do this for me, i would just like some help and to be pointed in the right direction for what i need to read up about.
    Many Thanks,
    Edward

    Darryl,
    He is a guy at my college, its ok nobody likes him anyway :P i will just completely ignore what he said as he is actually no better than i am haha.
    Anyway, back to something that matters.....
    public void StartSqueezing()
            NozzleReady=false;
            NozzleInUse=true;
            NozzleNotInUse=false;
            Runnable run1 = new Runnable() { public void run()
             do{
               LitresDispensedPerTransaction =+ 0.10;
              try { Thread.sleep(200);}
                 catch(InterruptedException ex) {}
             while (NozzleInUse == true ); 
         Thread thrd1 = new Thread(run1);
         thrd1.start();       
        }I have put this is the action listener of a button and it wont work....any ideas???
    Edward

  • Java 'seven segment display' and problems, can anyone help me

    import java.awt.*;
    import java.applet.*;
    import javax.swing.*;
    import javax.swing.JButton.*;
    import javax.swing.JFrame.*;
    public class test extends Applet{
         Font bigFont;
         Color redColor;
         Color bgColor;
         Button clickOnMe;
         Button clickOnMe2;
         int value = 0000;
         int value2 = 0000;
         int segmentArray[][] = {{0,0,1,0,0,1,0},{1,0,1,1,1,0,1},{1,0,1,1,0,1,1},{0,1,1,1,0,1,0},{1,1,0,1,0,1,1},{1,1,0,1,1,1,1},{1,0,1,0,0,1,0},{1,1,1,1,1,1,1},{1,1,1,1,0,1,0},{1,1,1,0,1,1,1}};
         int optiontest = 0;
         public void init(){}
         if (optiontest == 1)
         clickOnMe = new Button("Diesel");
         add ("left",clickOnMe);
         clickOnMe2 = new Button("Petrol");
    add ("centre",clickOnMe2);
         bigFont= new Font("Arial",Font.BOLD,16);
         bgColor=Color.white;
         setBackground(bgColor);
         } public void init stop()
    public boolean action (Event e, Object args)
    { if (e.target == clickOnMe)
                   optiontest ++;
    if (e.target == clickOnMe2)
              value2 ++;
    repaint();
    return true;
         public void paint (Graphics g)
              g.setColor(Color.black);
              g.drawString("Cost" + value, 275, 170);
    g.drawString("Cost" + value2, 275, 200);
              g.setColor(Color.red);
              g.drawRect(300, 300, 150, 150);
              g.drawRect(270, 150, 210, 200);
              g.drawRect(270, 270, 210, 150);
              g.drawRect(270, 270, 450, 270);
         g.fillRect(270, 270, 210, 270);
              g.drawRect(480, 320, 240, 220);
              g.setColor(Color.black);
    public boolean stop()
              if (optiontest < 10){
              // seg 1
                   if (segmentArray[optiontest ][0] == 1){
                        g.drawRect(100, 100, 50, 0);
              // seg 2
                   if (segmentArray[optiontest ][1] == 1){
                        g.drawRect(100, 100, 0, 50);
              // seg 3
                   if (segmentArray[optiontest ][2] == 1){
                        g.drawRect(150, 100, 0, 50);
              // seg 4
                   if (segmentArray[optiontest ][3] == 1){
                        g.drawRect(100, 150, 50, 0);
              // seg 5
                   if (segmentArray[optiontest ][4] == 1){
                        g.drawRect(100, 150, 0, 50);
              // seg 6
                   if (segmentArray[optiontest ][5] == 1){
                        g.drawRect(150, 150, 0, 50);
              // seg 7
                   if (segmentArray[optiontest ][6] == 1){
                        g.drawRect(100, 200, 50, 0);
              // When the number is biggest than 10 and less than 100
              if (optiontest >10 && optiontest < 100)
                   // Units \/
                   // seg 1
                   if (segmentArray[optiontest - 10][0] == 1){
                        g.drawRect(100, 100, 50, 0);
              // seg 2
                   if (segmentArray[optiontest -10][1] == 1){
                        g.drawRect(100, 100, 0, 50);
              // seg 3
                   if (segmentArray[optiontest -10][2] == 1){
                        g.drawRect(150, 100, 0, 50);
              // seg 4
                   if (segmentArray[optiontest -10][3] == 1){
                        g.drawRect(100, 150, 50, 0);
              // seg 5
                   if (segmentArray[optiontest -10][4] == 1){
                        g.drawRect(100, 150, 0, 50);
              // seg 6
                   if (segmentArray[optiontest -10][5] == 1){
                        g.drawRect(150, 150, 0, 50);
              // seg 7
                   if (segmentArray[optiontest -10][6] == 1){
                        g.drawRect(100, 200, 50, 0);
                   // The tens section \/
              // seg 1
                   if (segmentArray[optiontest / 10][0] == 1){
                        g.drawRect(100 - 70, 100, 50, 0);
              // seg 2
                   if (segmentArray[optiontest / 10][1] == 1){
                        g.drawRect(100 - 70, 100, 0, 50);
              // seg 3
                   if (segmentArray[optiontest / 10][2] == 1){
                        g.drawRect(150 - 70, 100, 0, 50);
              // seg 4
                   if (segmentArray[optiontest / 10][3] == 1){
                        g.drawRect(100 - 70, 150, 50, 0);
              // seg 5
                   if (segmentArray[optiontest / 10][4] == 1){
                        g.drawRect(100 - 70, 150, 0, 50);
              // seg 6
                   if (segmentArray[optiontest /10][5] == 1){
                        g.drawRect(150 - 70, 150, 0, 50);
              // seg 7
                   if (segmentArray[optiontest /10][6] == 1){
                        g.drawRect(100 - 70, 200, 50, 0);
    }

    Please use the CODE tags when you post your code. It makes it much more readable. Based upon your Subject, I can't understand your problem. Please be more specific and explain your difficulty in your message.

  • Seven segment led display with arduino pin configurat​ions

    iam new here.. i am trying to dipaly a numbers on led seven segment display. but i dont know how to cinfigure pin numbers with arduino examples...
    can anyon eexplain the pin configuration in sevensegment led.

    Hi anilkun,
    in the linked example you see that picture. It shows all the needed wires to connect Arduino with 7segment LED.
    What else do you need?
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Combinational logic for BCD seven segment

    HI all,
    I have to design the combinational logic for BCD to seven segment display using only And, Or and Not gates and simulate it using the multisim software. I had come out with the truth tables, kmaps and finally i got all the SOP for each of the segments (a - g).
    Now i have a problem, using multisim i do not know how to simulate the output. Am i going to draw all the logic diagram for a to g, and how am i going to combine them together?
    What other components do i need to proceed with the simulation? Please advice, thanks in advance!

    I'm not sure what SOP means, but I am very, very familiar with this project.
    Here is a file that sets up a basic structure for you so you can see how it works. I used a Common-anode 7-segment display since those seem to be more common in school kits, which makes the final gate outputs active low. I've only done the "A" segment for an example. You may notice that the gates I have are different than what you get with Karnaugh mapping, because I used the Quine-McCluskey method that Multisim's Logic Converter can produce. It makes for less gates, but is not a method you really want to do manually. If you are doing a school assignment, I would advise against using the Quine-McCluskey result, because an instructor will tear you apart if it doesn't work and you can't show your proofs, so don't forget to remove my gates!
    Ryan R.
    R&D
    Attachments:
    7-Segment Driver Array Starter.ms10 ‏101 KB

  • Do you have Sequential Binary counter with J K flip-flops and 7 segment display ?

    do you have Sequential Binary counter with J K flip-flops and 7 segment display ?

    Hi,
    You should post what you have done so far and where you are having trouble.  If you only post a description you won't get much help on this board.
    Tien P.
    National Instruments

  • 32-bit binary does not run on x86_64, ldd not a dynamic executable

    Hi,
    I switched from Ubuntu 8.10 x86_64 to arch linux x86_64 a short while ago and have an issue running 32-bit proprietary binary that dynamically links to some libraries.
    ldd insists "not a dynamic executable"
    How am I supposed to resolve the issue? Running this 32-bit binary using 64-bit Ubuntu was never an issue.
    Best Regards,
    Cetin Sert

    I installed all the lib32 libraries but I still get the same error:
    [cetin@unique bin]$ pacman -Qs lib32-*
    local/lib32-alsa-lib 1.0.20-1 (lib32)
        An alternative implementation of Linux sound support
    local/lib32-atk 1.26.0-1 (lib32)
        A library providing a set of interfaces for accessibility
    local/lib32-cairo 1.8.8-1 (lib32)
        Cairo vector graphics library
    local/lib32-curl 7.19.6-1 (lib32)
        An URL retrival utility and library
    local/lib32-db 4.7.25.4-1 (lib32)
        The Berkeley DB embedded database system
    local/lib32-dbus-core 1.2.14-1
        Freedesktop.org message bus system
    local/lib32-e2fsprogs 1.41.8-2.1
        Ext2 filesystem utilities
    local/lib32-expat 2.0.1-2 (lib32)
        An XML Parser library written in C
    local/lib32-fontconfig 2.6.0-2 (lib32)
        A library for configuring and customizing font access
    local/lib32-freetype2 2.3.9-2 (lib32)
        TrueType font rendering library
    local/lib32-gcc-libs 4.4.1-1 (lib32)
        The GNU Compiler Collection
    local/lib32-glib2 2.20.4-1 (lib32)
        Common C routines used by GTK+ 2.4 and other libs
    local/lib32-glibc 2.10.1-4 (lib32)
        GNU C Library (32 Bit)
    local/lib32-gnutls 2.8.3-1 (lib32)
        A library which provides a secure layer over a reliable transport layer
    local/lib32-gtk2 2.16.5-1 (lib32)
        The GTK+ Toolkit (v2)
    local/lib32-heimdal 1.2.1-5 (lib32)
        Heimdal Kerberos V5 libraries
    local/lib32-libart-lgpl 2.3.20-1 (lib32)
        A library for high-performance 2D graphics
    local/lib32-libcups 1.3.11-1 (lib32)
        The CUPS Printing System
    local/lib32-libdrm 2.4.12-1 (lib32)
        Userspace interface to kernel DRM services
    local/lib32-libgcrypt 1.4.4-2 (lib32)
        Libgcrypt is a general purpose crypto library based on the code used
    local/lib32-libgpg-error 1.6-1.1 (lib32)
        Support library for libgcrypt
    local/lib32-libice 1.0.5-1 (lib32)
        X11 Inter-Client Exchange library
    local/lib32-libjpeg 7-1 (lib32)
        Library of JPEG support functions
    local/lib32-libpng 1.2.39-1 (lib32)
        A collection of routines used to create PNG format graphics files
    local/lib32-libsm 1.1.1-1 (lib32)
        X11 Session Management library
    local/lib32-libstdc++5 3.3.6-3 (lib32)
        GNU Standard C++ library version 3
    local/lib32-libtasn1 2.2-1 (lib32)
        The ASN.1 library used in GNUTLS
    local/lib32-libtiff 3.9.0-1 (lib32)
        Library for manipulation of TIFF images
    local/lib32-libx11 1.2.2-1 (lib32)
        X11 client-side library
    local/lib32-libxau 1.0.4-1 (lib32)
        X11 authorisation library
    local/lib32-libxcb 1.4-1 (lib32)
        X11 client-side library
    local/lib32-libxcomposite 0.4.0-2 (lib32)
        X11 Composite extension library
    local/lib32-libxcursor 1.1.9-2 (lib32)
        X cursor management library
    local/lib32-libxdamage 1.1.1-2 (lib32)
        X11 damaged region extension library
    local/lib32-libxdmcp 1.0.2-2 (lib32)
        X11 Display Manager Control Protocol library
    local/lib32-libxext 1.0.5-2 (lib32)
        X11 miscellaneous extensions library
    local/lib32-libxfixes 4.0.3-2 (lib32)
        X11 miscellaneous 'fixes' extension library
    local/lib32-libxft 2.1.13-1 (lib32)
        FreeType-based font drawing library for X
    local/lib32-libxi 1.2.1-1 (lib32)
        X11 Input extension library
    local/lib32-libxinerama 1.0.3-2 (lib32)
        X11 Xinerama extension library
    local/lib32-libxml2 2.7.3-3 (lib32)
        XML parsing library, version 2
    local/lib32-libxmu 1.0.4-2 (lib32)
        X11 miscellaneous micro-utility library
    local/lib32-libxrandr 1.3.0-1 (lib32)
        X11 RandR extension library
    local/lib32-libxrender 0.9.4-2 (lib32)
        X Rendering Extension client library
    local/lib32-libxslt 1.1.24-2 (lib32)
        XML stylesheet transformation library
    local/lib32-libxss 1.2.0-1 (lib32)
        X11 Screen Saver extension library
    local/lib32-libxt 1.0.6-1 (lib32)
        X11 toolkit intrinsics library
    local/lib32-libxtst 1.0.3-2 (lib32)
        X11 Testing -- Resource extension library
    local/lib32-libxv 1.0.4-1 (lib32)
        X11 Video extension library
    local/lib32-libxxf86vm 1.0.2-1 (lib32)
        X11 XFree86 video mode extension library
    local/lib32-lzo2 2.03-1 (lib32)
        LZO is a portable lossless data compression library written in ANSI C
    local/lib32-mesa 7.5-2 (lib32)
        Mesa OpenGL library
    local/lib32-nas 1.9.2-1 (lib32)
        Network Audio System is a network transparent, client/server audio transport system
    local/lib32-ncurses 5.7-2 (lib32)
        A System V Release 4.0 curses emulation library
    local/lib32-nspr 4.8-1 (lib32)
        Netscape Portable Runtime
    local/lib32-nss 3.12.3.1-1 (lib32)
        Mozilla's Netscape Security Services Library that implements PKI support
    local/lib32-nvidia-utils 185.18.36-1 (lib32)
        NVIDIA drivers utilities and libraries.
    local/lib32-openal 1.8.466-1 (lib32)
        OpenAL audio library for use with opengl
    local/lib32-opencdk 0.6.6-1.1 (lib32)
        The Open Crypto Development Kit provides basic parts of the OpenPGP message format
    local/lib32-openssl 0.9.8k-4 (lib32)
        The Open Source toolkit for Secure Sockets Layer and Transport Layer Security
    local/lib32-pango 1.24.5-1.1 (lib32)
        A library for layout and rendering of text
    local/lib32-pciutils 3.1.3-1 (lib32)
        PCI bus configuration space access library and tools
    local/lib32-pcre 7.9-1 (lib32)
        A library that implements Perl 5-style regular expressions
    local/lib32-pixman 0.14.0-2 (lib32)
        Pixman library
    local/lib32-qt 4.5.2-6 (lib32)
        The QT gui toolkit.
    local/lib32-qt3 3.3.8-12 (lib32)
        The QT gui toolkit.
    local/lib32-readline 6.0.004-1 (lib32)
        GNU readline library
    local/lib32-sdl 1.2.13-3 (lib32)
        A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard
    local/lib32-sqlite3 3.6.17-1 (lib32)
        A C library that implements an SQL database engine
    local/lib32-util-linux-ng 2.16-1
        Miscellaneous system utilities for Linux
    local/lib32-xcb-util 0.3.6-1 (lib32)
        Utility libraries for XC Binding
    local/lib32-zlib 1.2.3.3-3 (lib32)
        A compression/decompression Library
    [cetin@unique bin]$
    [cetin@unique bin]$
    [cetin@unique bin]$
    [cetin@unique bin]$ ldd Adifor2.1
    Adifor2.1          Adifor2.1-Linux86 
    [cetin@unique bin]$ ldd Adifor2.1-Linux86
        not a dynamic executable
    if i create a chroot environment can 64-bit programs in our tool chain call the 32-bit binary using exactly the same ways they would do on a working multilib environment? btw vanilla ubuntu 9.04 64-bit has the same issue, so I'm a bit at a loss now hehe.

  • DAQ vi to perform digital write and read measurements using 32 bits binary data saved in a file

    Hi
    DAQ vi to perform digital write and read measurements using 32 bits binary data saved in a file
    Two main
    sections:
    1)     
    Perform
    write and read operations to and fro different spread sheet files, such that
    each file have a single row of 32bits different binary data (analogous to 1D
    array) where the left most bit is the MSB. I don’t want to manually enter the
    32 bits binary data, I want the data written or read just by opening a file
    name saves with the intended data.
          2)     
    And
    by using test patterns implemented using the digital pattern generator or  build digital data functions or otherwise, I need to
    ensure that the     
                binary data written to a spreadsheet file or any supported file type
    then through the NI-USB 6509 is same as the data read.
    I’m aware I can’t use the simulated
    device to read data written to any port but if the write part of the vi works I
    ‘m sure the read part will work on the physical device which I’ll buy later.
    My Plan
    of action
    I’ve
    created a basic write/read file task and a write/read DAQ task for NI USB 6509
    and both combine in a while loop to form a progress VI which I’m confuse of how
    to proceed with the implementation.
    My
    greatest problem is to link both together with the correct functions or operators
    such that there are no syntax/execution errors and thus achieve my intended
    result.
    This
    project is one of my many assignments for my master thesis, so please i’ll
    appreciate every help as I’m not really efficient with LabVIEW programming but
    I prefer it because is fun and interesting if I get to know it.
    Currently I’m
    practicing with LabVIEW 8.6/NI DAQmx 8.8 Demo versions and NI USB 6509
    simulated device.
    Please see
    the attached file for my novice progress, thanks in
    advance for the support
    Rgds
    Paul
    Attachments:
    DIO_write_read DAQ from file.vi ‏17 KB

    What does your file look like?  The DAQmx write is expecting a single U32 value, not an array of I64. 
    Message Edited by vt92 on 09-16-2009 02:42 PM
    "There is a God shaped vacuum in the heart of every man which cannot be filled by any created thing, but only by God, the Creator, made known through Jesus." - Blaise Pascal

  • 7 Segment Display OCR

    Hi all,
    I have a 7 segment number image and I want to convert the image into text using OCR. I am already doing this with some other tool, but it is not able  to properly do OCR for 7 segment display image. Can anyone suggest me a good OCR software which can read 7 segment display number which I can call through LabVIEW?
    I don't have the Vision development module, so I can't use the IMAQ VIs.
    Thanks.
    Fragger Fox.
    -FraggerFox!
    Certified LabVIEW Architect, Certified TestStand Developer
    "What you think today is what you live tomorrow"

    Just googled the image I was talking about....and attached it
    -FraggerFox!
    Certified LabVIEW Architect, Certified TestStand Developer
    "What you think today is what you live tomorrow"
    Attachments:
    7 seg display.JPG ‏21 KB

  • Is a binary on 32 bit faster than a 64 bit binary in solaris ?

    I timed a program for both 64 bit and 32 bit . The code is something like this --
    #include<stdio.h>
    #include<string.h>
    #include<stdlib.h>
    int main (int argc,char **argv)
    int count=0;
    int count2=0;
    int u=0;
    int count3=0;
    int sizeoffile=0;
    int sizefile[5];
    for(u=0;u<5;u++)
    sizefile=1;
    printf("%d\n",sizefile[u]);
    char a='a';
    char *b ;
    FILE *file ;
    b = (char *)malloc(512*sizeof(char));
    while(count <512)
    strncpy(b+count,&a,1);
    count++;
    for(u=0;u<2;u++)
    sizeoffile=0;
    if(u==0)
    file=fopen("./writesize1","a");
    else if (u==1)
    file=fopen("./writesize2","a");
    else if (u==2)
    file=fopen("./writesize3","a");
    else if (u==3)
    file=fopen("./writesize4","a");
    else if (u==4)
    file=fopen("./writesize5","a");
    while(sizeoffile<sizefile[u])
    while(count2<(1024*1024))
    count3=0;
    while(count3 < 2)
    fprintf(file,"%s",b);
    fprintf(file,"\n");
    fflush(file);
    count3++;
    count2++;
    count2=0;
    // count3++;
    count3=0;
    sizeoffile++;
    fclose(file);
    return 0;
    The above code is crude code to write files of 1 GB.
    I timed the above code binaries for 32 and 64 bit on a solaris 10 box . I got the following times :
    for 32 bit : 2.16796for 64 bit : 2.5039466
    Is this the expected behaviour or something I am missing ?
    Edited by: rarpit on Mar 18, 2009 9:59 PM

    Reasons a 64-bit program might be better:
    * Can directly access more than 4GB of VM
    * Has direct access to 64-bit math routines
    * On x86, has access to more registers (big win for some code/compiler combinations) Shouldn't affect SPARC much.
    Reasons a 32-bit program might be better:
    * Can run on both 32-bit and 64-bit kernels
    * Pointers are smaller. More code can fit in CPU cache, may run faster
    * Memory footprint slightly smaller due to smaller pointers
    So the general case is that unless you need the extra VM space, 64-bit math, have a special need to access 64-bit libraries, or your compiler is doing a great job of using the extra registers on x86, there's not much benefit to creating a 64-bit binary.
    All that said, your program appears to be writing large files to disk. That task should be completely dominated by your I/O times. Did you run them more than once? I would imagine both versions to be identical because anything other than the disk writes will be in the noise.
    Darren

  • Read 16 bit binary image into LabVIEW, convert to TIFF and display

    Hello,
    I have what is probably a simple problem - I have RAW images (1536 x 1944) saved in binary files consisting of unsigned 16 bit integers that I need to read into LabVIEW and be able to view on the front panel (so presumably convert to TIFF or something like that).  
    This is not information that was written using LabVIEW - it was actually written using the fwrite command in C++ if that is any help, and has no header information.
    I found this example VI:
    http://forums.ni.com/t5/LabVIEW/read-the-raw-image-file/td-p/505871/page/2
    The picture of the final VI solution that is posted at that link - it looked promising, but the flatten pixmap function appears to only take in 8 or 24 bit inputs, not 16 bit inputs, and I was unsure it if was possible to configure it for 16.  Is it possible to use this same structure to read in my binary files as well?  If so, what changes need to be made?  Otherwise do I need a different function?  I am very new to image processing in LabVIEW.  
    Thank You.

    Hello,
    The flatten pixmap function does not appear to be able to take in 16 bit inputs and I cannot find a function that flattens a 16 bit pixmap.  Is there any way you can convert your binary file into that of 8 or 24 bits?  
    Also, I don't know if this other forum thread may help or give context to the subject.
    http://forums.ni.com/t5/LabVIEW/Can-a-16-bit-image-be-displayed-in-a-picture-control/td-p/33347 
    Cameron T
    Applications Engineer
    National Instruments

  • 64-bit binary indicators

    Hello there, fellow LabVIEWers! I'm in a bind that I hope that you can get me out of. I'm trying to take a 48 bit number and shift it to the left by 8 bits. Problem is, I can only view up to 32 bit numbers and whenever my value is higher than 4294967296 (which is 2 to the 32nd power), LabVIEW stops at that value. I need to view a number higher than 32 bits and so far, I haven't had much success than doing so. Please help!

    Azmat Bhatty wrote in message news:<[email protected]>...
    > Hello there, fellow LabVIEWers! I'm in a bind that I hope that you
    > can get me out of. I'm trying to take a 48 bit number and shift it to
    > the left by 8 bits. Problem is, I can only view up to 32 bit numbers
    > and whenever my value is higher than 4294967296 (which is 2 to the
    > 32nd power), LabVIEW stops at that value. I need to view a number
    > higher than 32 bits and so far, I haven't had much success than doing
    > so. Please help!
    Is this 48 bit number for mathmatical operations, or do you just need
    to display it on the front panel?
    If you just need to display it, convert it to a hex or binary string
    (format value.vi, and wire in %b for binary,
    %x for hex), then a left
    shift becomes a matter of splitting and rearranging the string.
    If you need to do math on this number, then you are into much deeper
    work, probably involving splitting the number up into 2 chunks and
    calculating on each half.

  • Flash Player 11.2.202.235, IE9 64-bit, Windows 7 64-bit, HP laptop - objects do not display-seevideo

    Flash Player 11.2.202.235, Internet Explorer 9 64-bit, Windows 7 64-bit, HP laptop - Flash objects do not display properly in browser; right-click Settings window does not display properly either; i have to scroll down and back up to see parts of the Flash object but it disappears anyway when i mouse over.
    I took video of the issue and have now linked to it.  In the video, I show two browser tabs - one from this site and one from a Bank of America (BoA) site with a flash object.  You can see how the BoA flash object disappears when I make that tab active.
    Please help!
    Link to video:
    http://www.youtube.com/watch?v=PCLJcxmzPkI&feature=youtu.be
    Message was edited by: Jleon21612012

    Thanks for the reply and the link.  The driver update did not work because it says I have the latest one installed - even though the driver date is 10/8/2009.  It's the Intel(R) Graphics Media Accelerator HD, version 8.15.10.1968.
    Can you believe that...the latest is from 2009?!  I tried to install an updated version anyway - first by going to the Intel site.  I found a driver update from Jan 2012 that matches my system, but the install aborts with the error message "A customized computer manufacturer driver is installed on your computer. The Intel Driver Update Utility is not able to update the driver."
    So, I searched through the HP support site and finally found a link to my computer:
    http://h10025.www1.hp.com/ewfrf/wc/product?product=4121236&lc=en&cc=us&dlc=en&task=&lang=e n&cc=us
    And I downloaded and installed the "same" driver anyway:
    Intel Graphics Media Accelerator HD Driver ►
    2009-12-04 , Version:8.15.10.1968 B, 29.91M
    This package contains the driver for the Intel Graphics Media Accelerator HD in the supported notebook/laptop models.
    But it does not correct the problem.
    Maybe this problem is because of an old graphics driver - but this is apparently a dead end for me.
    Is there any possibility it is caused by something else?

  • Photoshop CS6 x64, Windows 8 64-bit and an error in my display driver

    So I have 64-bit Windows 8, 64-bit Photoshop CS6 and an ATI Radeon HD 4770 GPU. When I go to the settings in PS, it tells me that there is a problem with my display driver so I cannot use GPU graphics processing. I would really like these features to be available to me, especially since my GPU meets the recommendations by Adobe. I installed the latest driver from AMD. What am I missing?

    Might want to read this link about uninstalling driver  http://forums.adobe.com/thread/1142340?tstart=0

  • NETRA  7 segment display H E L P, any ideas???

    when turn on the Netra t1 105 inside diplay (7 segment leds) display a sequence H, E, L, P but i no have a idea why happen this, any idea???
    thanks
    sorry my bad english

    The Netra t1 105 documentation only describes the LEDs visable on the outside of the case.
    The Netra t1 105 conains a SPARCengine CP1500 board, for which detailed documention is available at:
    http://www.sun.com/oem/products/manuals/
    From http://www.sun.com/oem/products/manuals/806-2104-03.pdf
    <table border="0" align="center" width="90%" cellpadding="3" cellspacing="1"><tr><td class="SmallText"><b>Quote:</b></td></tr><tr><td class="quote">
    The characters in the LED displayed by OBP indicate the following:
    O (The letter O ) OBP is currently executing.
    E RED state exception encountered in OBP.
    b Solaris boot has taken place.
    H, E, L, and P This sequence (with each letter flashed at a 4-second interval) is initiated if the system is at the ok prompt for more than two minutes after power-on, without booting. It does not appear after Solaris has booted.
    </td></tr></table>

Maybe you are looking for

  • ITunes is not syncing my iphone 6, 64GB ios 8.3

    When i plug in my iPod 4thg, iTunes used to start up with no problem, but when i plug in my iphone, iTunes doesnt start up, i dont see my phone when i manually start it up. I dont know what to do. I deleted and redownloaded iTunes about 3 times. I kn

  • Function module used for ENQUEUE_EIQMEL & DEQUEUE_EIQMEL function

    Hi All, It should be highly appreciable if any one could please help. I need the name of the function module used for ENQUEUE_EIQMEL & DEQUEUE_EIQMEL function. waiting for help. Thanks Shaw

  • Splitting huge Schema/E-R Model into Modular Schema/Multiple E-R Models

    Hi, Currently we have huge DB Schema (1500+ Tables) using 1 single OWNER ID. Based on Domain Partitioning,we intend to create 6 new OWNER IDs (based on individual Module/Domain) and re-assign the appropriate Tables into the respective Domain. basical

  • Trouble opening links

    I am having problems opening links on some internet sites. For instance I cannot open the bill pay link on my banks site and I could open it at one time. I recently installed Trend Micro antivirus software on this computer and before that updated to

  • SwitchBoard and Photoshop CC

    Using Photoshop CC.  Get the Waiting for Bridge message when I try to use mini bridge.  Adobe help says to change some things in SwitchBoard.  But SwitchBoard is completely missing from my computer (OS X Yosemite).  How do I get and load SwitchBoard?