element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum having trouble with ieeflip vfd and ieeflipnofrills
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 4 replies
  • Subscribers 392 subscribers
  • Views 759 views
  • Users 0 members are here
  • displays
  • iee
  • help
  • library
  • ieeflip
  • ieeflipnofrills
  • vfd
  • arduino
Related

having trouble with ieeflip vfd and ieeflipnofrills

Former Member
Former Member over 11 years ago

First off, i am new to the arduino world of open source tech. I really like MAKE magizine and it as well as a co worker of mine has gave me the push i needed to get into open souce hardware and codeing.  i have been playing with the arduino now for about 2 or 3 months now and have got to the point where i want to learn displays.

 

second, i have a ieeflip vfd 03601-02-040, that was source from some old parts laying around. i wanted to make it display the time and date and day of the week.

 

third,  i have a rtc and a arduino uno. i chopped the example code that came with the rtc library down to what i needed to do and it works pretty good. so it came time for me to wire up the vfd and import the vfd libraries. so i downloaded the IeeFlipNoFrills library from arduino.cc i wired up the display in accordance to what the hello world example said and im getting a few errors maybe you guys could help me out with.


please keep in mind that in new to this. lol thanks

 

 

this is the code:

 

/*

  IeeFlipNoFrills Library - Hello World

 

Demonstrates the use an IEE Flip "No Frills" VFD. Tested

with model 03601-95A-40 2x20 alphanumeric display.

 

This sketch prints "Hello World!" to the VFD

and shows the number of seconds since the sketch

started.

 

  The circuit:

 

* Display pins 1 (BUSY) connected to Arduino pin 2

* Display pins 2 (WRITE STROBE) connected to Arduino pin 3

* Display pins 3-10 (D7-D0) connected to Arduino pins 4-11

* Display pin 11 (+5V @ 370mA) connected to +5V

* Display pin 12 (GND) connected to GND

* Display pins 13 & 14 unconnected

 

Created Mar 6, 2011.

Ported to IeeFlipNoFrills on April 10, 2011.

 

This example code is in the public domain.

 

http://arduino.cc/playground/Main/IeeFlipNoFrills

*/

 

// Include the library code.

#include <IeeFlipNoFrills.h>

 

// Initialize the library with the numbers of the interface pins

IeeFlipNoFrills vfd(2, 3, /* control pins */

                    11, 10, 9, 8, 7, 6, 5, 4 /* data pins */);

           

void setup() {

  // Start the library/displaying to the vfd

  vfd.begin(20, 2);

  // Print a message to the VFD.

  vfd.print("hello, world!");

}

 

void loop() {

 

  // Set the cursor to the first column (0) of the second row (1).

  vfd.setCursor(0, 1);

  // Print the number of seconds since reset.

  vfd.print(millis()/1000);

}

 

 

and this is the error message:

 

 

In file included from HelloWorld.pde:29:

/home/chris/sketchbook/libraries/IeeFlipNoFrills/IeeFlipNoFrills.h:16:22: error: WProgram.h: No such file or directory

In file included from HelloWorld.pde:29:

/home/chris/sketchbook/libraries/IeeFlipNoFrills/IeeFlipNoFrills.h:83: error: conflicting return type specified for ‘virtual void IeeFlipNoFrills::write(uint8_t)’

/home/chris/Desktop/arduino-1.0.5/hardware/arduino/cores/arduino/Print.h:48: error:   overriding ‘virtual size_t Print::write(uint8_t)’

  • Sign in to reply
  • Cancel

Top Replies

  • kidiccurus
    kidiccurus over 11 years ago +1
    Check you have the library installed properly using the example sketch. If it doesn't work, delete and reinstall your library.
Parents
  • kidiccurus
    0 kidiccurus over 11 years ago

    Check you have the library installed properly using the example sketch. If it doesn't work, delete and reinstall your library.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to kidiccurus

    ive done that a couple times. i read that i might try installing a older version like arduino 0023 and load the library in that install and go from there, i tried that and it gave me a java error upon compiling. i am currently running linux ubuntu and doing things with linux is a little new to me but its all pretty straight forward like mac and microsoft. look like i may need to get out the old vista laptop and give her a go.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to Former Member

    the sketch posted is the example sketch fyi

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • Former Member
    0 Former Member over 11 years ago in reply to Former Member

    the sketch posted is the example sketch fyi

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube