Archive for June 2009

Code v 0.7a   8 comments

/* Hifiduino v 0.7a May 19, 2011: Minor update and bug fixes to the version 0.7 of June 21, 2009 ————————————————————————— IMPORTANT: This code requires LCD12cW.h for i2c LCD from Web4robot LCD and macros.h for defining the large characters. Download library from: http://www.arduino.cc/playground/Code/LCDAPI and select ”LCD12cW”. After downloading copy the folder ”LCDi2cW” to the ”libraries” folder in the Arduino folder. ”macros.h” is inside one of the examples in the examples folder. Move it out of that folder into the LCDi2cW folder —————————————————————————- In this release: - Support for Web4robot LCD: http://www.arduino.cc/playground/Code/LCDAPI - Large number display for filter selection and volume - Digital Filter Selection: Filter 1 to Filter 5. - Rotary encoder. - Volume Control. Now -99 db to 0db in 1db increment. - Volume ”dimmer”. Volume dims to -60 dB when pushing rotary encoder - Changed the default delay in the LCD library to (0,0) See below note. - Select input sample rate (low, med, high) for future use. - Adjust brightness and contrast of display with remote - Remember brightness and contrast settings in eeprom - New fonts for large number display */ /* Additional notes: - The default delay for the web4robot LCD is (50,4)  It can be changed with setDelay(Cmd,Char).  In fact setDelay(0,0) works with the web4robot display  at least in this code, making it fairly fast */ #include <Wire.h> #include ”macros.h” // Used for defining custom characters // library for i2c LCD from Web4robot LCD // Download library from http://www.arduino.cc/playground/Code/LCDAPI // and select ”LCD12cW”. After downloading copy the folder ”LCDi2cW” // to the ”libraries” folder in the Arduino folder #include <LCDi2cW.h> LCDi2cW lcd = LCDi2cW(4,20,0x4C,0); // Initialized the library // We will use the eeprom to store values #include <EEPROM.h> #define BRIADDR 0  // The address [...]

Posted June 22, 2009 by BlogGeanDo in Code for OPUS DAC

Follow

Get every new post delivered to your Inbox.