If you need assistance, please send an email to forum at 4hv dot org. To ensure your email is not marked as spam, please include the phrase "4hv help" in the subject line. You can also find assistance via IRC, at irc.shadowworld.net, room #hvcomm.
Support 4hv.org!
Donate:
4hv.org is hosted on a dedicated server. Unfortunately, this server costs and we rely on the help of site members to keep 4hv.org running. Please consider donating. We will place your name on the thanks list and you'll be helping to keep 4hv.org alive and free for everyone. Members whose names appear in red bold have donated recently. Green bold denotes those who have recently donated to keep the server carbon neutral.
Special Thanks To:
Aaron Holmes
Aaron Wheeler
Adam Horden
Alan Scrimgeour
Andre
Andrew Haynes
Anonymous000
asabase
Austin Weil
barney
Barry
Bert Hickman
Bill Kukowski
Blitzorn
Brandon Paradelas
Bruce Bowling
BubeeMike
Byong Park
Cesiumsponge
Chris F.
Chris Hooper
Corey Worthington
Derek Woodroffe
Dalus
Dan Strother
Daniel Davis
Daniel Uhrenholt
datasheetarchive
Dave Billington
Dave Marshall
David F.
Dennis Rogers
drelectrix
Dr. John Gudenas
Dr. Spark
E.TexasTesla
eastvoltresearch
Eirik Taylor
Erik Dyakov
Erlend^SE
Finn Hammer
Firebug24k
GalliumMan
Gary Peterson
George Slade
GhostNull
Gordon Mcknight
Graham Armitage
Grant
GreySoul
Henry H
IamSmooth
In memory of Leo Powning
Jacob Cash
James Howells
James Pawson
Jeff Greenfield
Jeff Thomas
Jesse Frost
Jim Mitchell
jlr134
Joe Mastroianni
John Forcina
John Oberg
John Willcutt
Jon Newcomb
klugesmith
Leslie Wright
Lutz Hoffman
Mads Barnkob
Martin King
Mats Karlsson
Matt Gibson
Matthew Guidry
mbd
Michael D'Angelo
Mikkel
mileswaldron
mister_rf
Neil Foster
Nick de Smith
Nick Soroka
nicklenorp
Nik
Norman Stanley
Patrick Coleman
Paul Brodie
Paul Jordan
Paul Montgomery
Ped
Peter Krogen
Peter Terren
PhilGood
Richard Feldman
Robert Bush
Royce Bailey
Scott Fusare
Scott Newman
smiffy
Stella
Steven Busic
Steve Conner
Steve Jones
Steve Ward
Sulaiman
Thomas Coyle
Thomas A. Wallace
Thomas W
Timo
Torch
Ulf Jonsson
vasil
Vaxian
vladi mazzilli
wastehl
Weston
William Kim
William N.
William Stehl
Wesley Venis
The aforementioned have contributed financially to the continuing triumph of 4hv.org. They are deserving of my most heartfelt thanks.
Registered Member #205
Joined: Sat Feb 18 2006, 11:59AM
Location: Skørping, Denmark
Posts: 741
Edit: Solved It turnes out that fscale is not a proper function, but rather a script, where a whole lot of code is required at the bottom of the main code. Once added, the scaling works great.
.........................................
.......
I am a complete newbie in programming, but I am trying hard to learn.
I am building a custom lamp that takes input from 2 potentiometers, where first pot. blends from one 2000K led to another 4000K led, the other pot. dimms both leds.
The code works well enough, but the fading/blending over is not linear to the eye, as expected, so I have to add some sort of correction factor to the outputValue -erh, whatshammacallit?
I have tried to index an exponential array with the outputValue, and this works well, but the curve that the array expresses is not quite right, and producing the array seems cumbersome to me.
Therefore, I want to use the fscale function in Arduino , but whenever I use it, I get either "fscale is not declared in this scope" or "fscale can not be used as a function" error messages.
Have you successfully used fscale in some code, then please help me along, since tweaking the "curve" parameter will probably make it easier to land on a satisfactory blend/fade of the leds.
Cheers, Finn Hammer,
In the code below:
I have commented out the map function of outputValueDimm, line 48, see picture below, and instead tried a line where I use fscale to do the same thing, but with non-linear mapping, and this results in the dreaded "fscale was not declared in this scope" error message
const int analogInPin0 = A0; // Analog input pin that the blend potentiometer is attached to const int analogInPin1 = A1; // Analog input pin that the volume potentiometer is attached to const int analogOutPin9 = 9; // Analog output pin that the LED 1 is attached to const int analogOutPin6 = 6; // Analog output pin that the LED 1 is attached to int sensorValue0 = 0; // value read from the pot @ analogInPin0 = A0 int sensorValue1 = 0; // value read from the pot @ analogInPin1 = A1 int outputValue = 0; // value output to the PWM (analog out) int outputValue1 = 0; // value output to the PWM (analog out) int outputValueDimm = 0; // value dimmimg factor
void setup() { // initialize serial communications at 9600 bps: Serial.begin(9600); }
void loop() { // read the analog in value: sensorValue0 = analogRead(analogInPin0); sensorValue1 = analogRead(analogInPin1); // map it to the range of the analog out: outputValue = map(sensorValue0, 0, 1023, 0, 254); outputValue1= map(sensorValue0, 0, 1023, 254, 0);
//below I have commented out a line with the "map" function, which works; and substituted it with a line that contains the fscale function, which does not work.
// print the results to the serial monitor: Serial.print("sensor = "); Serial.print(sensorValue1); Serial.print("\t output = "); Serial.println(outputValueDimm);
// wait 2 milliseconds before the next loop // for the analog-to-digital converter to settle // after the last reading: delay(20);
Registered Member #205
Joined: Sat Feb 18 2006, 11:59AM
Location: Skørping, Denmark
Posts: 741
All,
I guess that most people who has written code feel particularly good about the first piece they turned out. Being an oldtimer myself, I feel exedingly good about having written this short piece, and it does the job!
Cheers, Finn Hammer
//Table lamp with variable colour temperature and volume. 27-09-2016 Finn Hammer // This code reads the voltages on analog pins A0 and A1 and writes a PWM signal to D9 and D11. // The voltages are generated by potentiometers. // The PWM signals drive LED's directly or are used to drive power converters.
//fscale is used to create a logarithmic response between potentiometer and LED. //This should make the fade look linear and keep an even output during blend from 2000K to 4000K
const int analogInPin0 = A0; // Analog input pin that the volume potentiometer is attached to const int analogInPin1 = A1; // Analog input pin that the balance potentiometer is attached to const int analogOutPin9 = 9; // Analog output pin that the LED 1 is attached to const int analogOutPin6 = 6; // Analog output pin that the LED 2 is attached to int sensorValue0; // value read from the pot @ analogInPin0 = A0 ->this blends the LED's int sensorValue1; // value read from the pot @ analogInPin1 = A1 -> this fades the LED's int outputValue2000K; // output to the PWM, LOG corrected with "fscale" int outputValue4000K; // output to the PWM, LOG corrected with "fscale" int outputValueDimm; // value dimmimg factor from dimming pot.
int fscaleBlendfactor = -3; //adjust this factor to obtain even output when blending from warm to cold white int fscaleDimmfactor = -5; //adjust this for a linear dimming lamp
void setup() { Serial.begin(9600); }
void loop(){
//Read the "blend" pot.
sensorValue0 = analogRead(analogInPin0);
//change linear (blend) value to log. scale with "fscale" and produce mirrored image
if (curve > 10) curve = 10; if (curve < -10) curve = -10;
curve = (curve * -.1) ; // - invert and scale - this seems more intuitive - postive numbers give more weight to high end on output curve = pow(10, curve); // convert linear scale into lograthimic exponent for other pow function
// Check for out of range inputValues if (inputValue < originalMin) { inputValue = originalMin; } if (inputValue > originalMax) { inputValue = originalMax; }
// Zero Refference the values OriginalRange = originalMax - originalMin;
// Check for originalMin > originalMax - the math for all other cases i.e. negative numbers seems to work out fine if (originalMin > originalMax ) { return 0; }
This site is powered by e107, which is released under the GNU GPL License. All work on this site, except where otherwise noted, is licensed under a Creative Commons Attribution-ShareAlike 2.5 License. By submitting any information to this site, you agree that anything submitted will be so licensed. Please read our Disclaimer and Policies page for information on your rights and responsibilities regarding this site.