Search found 978 matches
- Thu Apr 21, 2016 9:05 pm
- Forum: Module Discussion
- Topic: IRTemp example not working
- Replies: 7
- Views: 6865
Re: IRTemp example not working
You may have a faulty unit. Please email support@freetronics.com.
- Thu Apr 21, 2016 7:43 am
- Forum: Module Discussion
- Topic: IRTemp example not working
- Replies: 7
- Views: 6865
Re: IRTemp example not working
Have you soldered wires to the IRtemp?llag wrote:I had the same problem as lopemann so I installed Arduino IDE v1.6.5 however I am now getting "invalid reading" when I check the serial monitor.
Any guidance?
- Tue Apr 19, 2016 9:19 pm
- Forum: Eleven
- Topic: Sketches are lost on power down, boot loader issue?
- Replies: 1
- Views: 4625
Re: Sketches are lost on power down, boot loader issue?
The quickest fix is to reflash the bootloader.
You can use your Mega as a programmer.
See
https://github.com/NicoHood/HoodLoader2 ... er-Arduino
You can use your Mega as a programmer.
See
https://github.com/NicoHood/HoodLoader2 ... er-Arduino
- Mon Apr 18, 2016 10:57 pm
- Forum: EtherMega
- Topic: Automatic MAC address
- Replies: 1
- Views: 5379
Re: Automatic MAC address
Can you check that the jumpers on the rear of your EtherMega PCB haven't been cut? If so, re-solder them.
See http://www.freetronics.com.au/pages/set ... 24aa025e48
See http://www.freetronics.com.au/pages/set ... 24aa025e48
- Mon Apr 18, 2016 10:48 pm
- Forum: 4x4x4 RGB Cube
- Topic: Adding tones to Cube Invaders
- Replies: 1
- Views: 6523
Re: Adding tones to Cube Invaders
If you want the tone after the player moves, try your tone function at the end of the void updatePlayerPosition() function.
- Sun Apr 03, 2016 5:33 am
- Forum: Eleven
- Topic: Coding for light sensor project
- Replies: 2
- Views: 6847
Re: Coding for light sensor project
Try the following sketch. When the light level is below 10 the LED turns on for five seconds then turns off. // Define analogue pin int sensorPin = 0; int lightPin = 2; // Variables int lightState = 0; int lowThreshold = 10; int highTreshold = 40; // Setup void setup() { // Init serial Serial.begin(...
- Sun Apr 03, 2016 5:28 am
- Forum: Dot Matrix Display
- Topic: Usage of DMD2 with Ethernet shield
- Replies: 7
- Views: 8411
Re: Usage of DMD2 with Ethernet shield
You can use different pins for the DMD by using the SoftDMD function in the DMD library. You will need to manually run wires from the DMD cable to the board however this eliminates the Ethernet conflict.
- Mon Mar 21, 2016 10:53 am
- Forum: Dot Matrix Display
- Topic: MAX Number of DMD
- Replies: 10
- Views: 11897
Re: MAX Number of DMD
To run 20 ... falls outside the scope of the display ecosystem with Arduino/AVR/SAM etc.
You would really want fewer number of large panels and a dedicated control board - a more commercial situation.
You would really want fewer number of large panels and a dedicated control board - a more commercial situation.
- Wed Mar 16, 2016 10:40 pm
- Forum: EtherMega
- Topic: Ethermega stops
- Replies: 7
- Views: 10398
Re: Ethermega stops
If the different IP is working then go with that, I can't see why .30 would give you problems.
- Wed Mar 16, 2016 12:44 am
- Forum: 4x4x4 RGB Cube
- Topic: my cube stopped working :(
- Replies: 5
- Views: 6956
Re: my cube stopped working :(
You may have overfilled the buffer - there is only 2.5k SRAM to work with in total for the Cube.