I split your post off into a new thread because it wasn't related to the thread you posted in.
I can't see any reason why your program doesn't work, sorry. Maybe it's a problem with the keypad wiring?
Search found 853 matches
- Mon Jul 11, 2016 7:18 am
- Forum: Random Chit-Chat
- Topic: Arduino Leonardo keyboard entry
- Replies: 1
- Views: 4487
- Mon Jul 11, 2016 7:16 am
- Forum: Module Discussion
- Topic: RGBLED module - New Arduino library available (FTRGBLED)
- Replies: 5
- Views: 6397
Re: RGBLED module - New Arduino library available (FTRGBLED)
No, the library only supports WS2801 at this stage.digitalledcolor wrote:i want to know your library can work for WS2813 led strip? thanks
- Tue Jul 05, 2016 10:43 pm
- Forum: OLED128 Display
- Topic: OLED 128 display with Uno/Ethermega 2560
- Replies: 9
- Views: 11495
Re: OLED 128 display with Uno/Ethermega 2560
Hi Synaesthesia, I haven't experimented with video files. I think on an 8-bit AVR based Arduino this would be a stretch, even the "flames" example - just loading BMP frames - is really stretching it. The Arduino EtherDue is our Freetronics Due-compatible 32-bit product. It has a lot more grunt for t...
- Mon Jul 04, 2016 5:40 am
- Forum: OLED128 Display
- Topic: OLED 128 display with Uno/Ethermega 2560
- Replies: 9
- Views: 11495
Re: OLED 128 display with Uno/Ethermega 2560
Hi Synaesthesia,
Thanks for posting the pics. It looks to me like the white & yellow leads might be connected to digital pins 50 & 51 instead of 51 & 52 (the bottom pair of pins is GND, the row above is 52 & 53, and the row above that is 50 & 51.) Can you please check and confirm?
Angus
Thanks for posting the pics. It looks to me like the white & yellow leads might be connected to digital pins 50 & 51 instead of 51 & 52 (the bottom pair of pins is GND, the row above is 52 & 53, and the row above that is 50 & 51.) Can you please check and confirm?
Angus
- Mon Jul 04, 2016 5:35 am
- Forum: HBRIDGE: H-Bridge Motor Driver Shield
- Topic: Uncoordinated Movements with Stepper Motor
- Replies: 3
- Views: 9346
Re: Uncoordinated Movements with Stepper Motor
Hi xtoph, Thanks for posting the datasheet. I can't see any problems with the wiring, although the video looks to me a lot like it could be a coil wiring problem. If you use a multimeter in Resistance to measure each coil (blue to red, then green to black), do you see resistance in each pair? What h...
- Thu Jun 30, 2016 6:33 am
- Forum: OLED128 Display
- Topic: OLED 128 display with Uno/Ethermega 2560
- Replies: 9
- Views: 11495
Re: OLED 128 display with Uno/Ethermega 2560
Hi Synaesthesia, Thanks for the update. You don't need to change anything in your code to change power sources, just move the jumper on the board. The microcontroller runs at 5V in both cases, it just gets the 5V via a different path. Is it possible for you to post a photo of the wiring configuratio...
- Mon Jun 27, 2016 10:11 pm
- Forum: Dot Matrix Display
- Topic: 16x32 P10 1R1G Dual Color LED Module
- Replies: 3
- Views: 7310
Re: 16x32 P10 1R1G Dual Color LED Module
Hi,
Freetronics DMDs are not marketed as "P10". They come in Freetronics packaging with a "DMDCon" connector in the box.
You can view our range of DMD displays here: http://www.freetronics.com.au/collections/display/dmd
Angus
Freetronics DMDs are not marketed as "P10". They come in Freetronics packaging with a "DMDCon" connector in the box.
You can view our range of DMD displays here: http://www.freetronics.com.au/collections/display/dmd
Angus
- Mon Jun 27, 2016 12:32 am
- Forum: OLED128 Display
- Topic: OLED 128 display with Uno/Ethermega 2560
- Replies: 9
- Views: 11495
Re: OLED 128 display with Uno/Ethermega 2560
Hi Synaethesia, Sorry to hear it's not quite working correctly. Moving to the internal MicroSD slot is a good idea. The EtherMega uses digital pin 4 as the MicroSD "CS" pin - which is already the same pin number used in the example sketches, so you shouldn't need to change anything - just move the c...
- Mon Jun 27, 2016 12:28 am
- Forum: Module Discussion
- Topic: Clock & Temp on 16x2 Display
- Replies: 4
- Views: 8396
Re: Clock & Temp on 16x2 Display
You can try removing the "lcd.clear()" line (which will erase the entire display each time it redraws), although you might find you need to print some extra spaces ' ' so it doesn't leave "cruft" at the end of the line when it draws the new time over the old time. At the same time, you could also tr...
- Fri Jun 24, 2016 4:03 am
- Forum: Module Discussion
- Topic: Clock & Temp on 16x2 Display
- Replies: 4
- Views: 8396
Re: Clock & Temp on 16x2 Display
Hi Chris, Sorry to hear it's not quite working yet. At the moment the code updates the time, then waits one second, then updates the temperature, then waits one second before updating the time again. You can try updating both at the same time. Change this part: void loop() { displayTime(); // displa...