-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arduino upload command for epaper #58
Comments
What doe the "d" command show for the given sector e.g. Perhaps you could try using the flash_loader program to store an image, then use the command program 'd' command to see if the data is uploaded correctly. If some data was uploaded, the "i" command should display it as both command and flash_loader use compatible image layout. |
Hi, I check the d command alrdy, it didnt uploaded to the spi chip on the display board, is there something wrong with the flash library? |
Was the flash_loader able to program the FLASH? What is the 'd' command showing? (All 00 or all FF) |
Hi, flash_loader doesn't load the image, and d command showing all 00 |
do other unused sectors also show 00 and how about the erase 'e' command; does that reset a sector back to all FF? The fact you get the type code back suggests the FLASH is responding - at leas in a limited way. |
Hi, even the erase function also cannot write the flash into 0xff, but the memory remain 00 |
In general CS pins tend to be active low and often have internal pullups (this is often true of other control signals to allow them to be used in a Wired-OR mode = many open-drain outputs connected to a single input) I just looked at the data sheet for the flash chip (MX25V8005) and there are a couple of extra pins called |
Hi, i can finally upload the sketch alrdy, now having a problem, when i integrate the arduino with wifi shield and the display is connected to the wifi shield , the flash chip stated is not the correct flash chip, is it because of i stack the wifi shield in between the display and arduino? |
I would suspect the WIFI uses SPI, so is probably using the same CS pin as the flash chip. so you may have to examine the code to see whether it is easier to change the pin used by the WIFI or the FLASH (probably the FLASH is easier to change). Also look to see if the WIFI module uses any other pins in common with the FLASH/DISPLAY |
Hi, the wifi shield i am using is cytron wifi shield, here is the module specification |
The pins used by the panel/flash are in: |
This is failure to detect the E-Ink controller. It suggests something is affecting the SPI data lines or there is a Chip Select conflict. |
Hi, my screen seem like got something wrong, i upload an image onto it, and then i upload another image and display it, the previous image not disappear but overlap with the present one, is that normal? |
Looks like some kind of connection problem - I have had some display like that when running on Raspberry Pi (especially after updating the kernel). The best way I found to reset/clear the display was to use Arduino(or Ti LaunchPad) running the demo program and let it flip between the two images for a few cycles and even pressing reset occasionally as the first action of the demo is to clear the panel. |
Hi,i have tried to power the arduino with 9v battery through thr power jack,the display get the power supply from3.3v pin,but it cannot works can red led keep flashing,but if I supply the power through usb power bank,it can work?is there any retriction for power input? |
If you are using the small 9V battery then I think it cannot really supply enough current as the the arduino uses linear regulator. You might use 4AA, possible 3AA might work alternatives are USB PSU or portable USB battery pack. There are also some LiPo batteries and charging circuits available at distributors like SparkFun. There are also those 18650 3.7V rechargables for LED torches, but not sure about charging them About USB battery pack, you will have to test it as I have found problems with them:
|
Hi, if the serial monitor shows EPD error =2, what kind of error on EPD is that? |
Think that error would be panel broken. @tvoverbeek is this correct? |
Although I'm not 100% sure of that. Does it not print the error message in full? |
I browsed through the Arduino code on the repaper/gratis github and EPD error is indeed Panel Broken. |
Hi, i have used the arduino upload command to specific sectors,but then even if the serial monitor shows the read="sth", but when i try to display it out from the specific sectors, it shows empty(blank), as show below:
Can explain what it actually happens?
The text was updated successfully, but these errors were encountered: