Dear Sir/Madam,
I've got a couple question about the screen itself where we're facing some small problems.
What we've got is by booting the screen on after compiling and loading from the arduino, we have to press on the resetbutton on the arduinoshield for the screen to work. I'll like it to do it automatically whenever it's compiled while the resetline doesn't seem to work as intended:
Void setup
Second question is about the decimals i use in the custom digits. In this case I use a number with a single digit, I have to multiply the total amount by 10 on the arduino, but i don't want it to change the value.
For example: I want the digit to show the amount of ampere it's setting to in this case it's 10.0, but it only changes the .1 by a single value. So I need to put 100 Amps ( in arduino) to make it 10.0 on the screen, while the value is still a 100. Is there a way to fix this?
And my final question is with an automatic sleep mode. Which I understand how sleep works but not know the timing for it. For example nothing is touched in 2 min, it's go to a random "black" form and put the brightness to 0 and when touched it goes back to form 1.
I've got a couple question about the screen itself where we're facing some small problems.
What we've got is by booting the screen on after compiling and loading from the arduino, we have to press on the resetbutton on the arduinoshield for the screen to work. I'll like it to do it automatically whenever it's compiled while the resetline doesn't seem to work as intended:
Void setup
Code:
pinMode(RESETLINE, OUTPUT); delay(1000); digitalWrite(RESETLINE, 1); delay(100); digitalWrite(RESETLINE, 0); delay(3500);
For example: I want the digit to show the amount of ampere it's setting to in this case it's 10.0, but it only changes the .1 by a single value. So I need to put 100 Amps ( in arduino) to make it 10.0 on the screen, while the value is still a 100. Is there a way to fix this?
And my final question is with an automatic sleep mode. Which I understand how sleep works but not know the timing for it. For example nothing is touched in 2 min, it's go to a random "black" form and put the brightness to 0 and when touched it goes back to form 1.
Comment