Search found 14 matches
- Tue Jun 18, 2013 6:54 am
- Forum: Eleven
- Topic: Eleven running slow
- Replies: 14
- Views: 15626
Re: Eleven running slow
OK thanks Angus. I have always found Avrdude unwieldy and have not needed to use it. Likely won't go down that path now either. I have found that Atmels studio 6/now 6.1, is good for checking and programming fuses, even uploads if you feel the need, using avrispmkii programmer. Using the avrispmkii,...
- Sun Jun 16, 2013 2:40 am
- Forum: Eleven
- Topic: Eleven running slow
- Replies: 14
- Views: 15626
Re: Eleven running slow
I can only see an Avrdude version of 5.10. I can now see the 328p
I haven't used Avrdude in cmd line to upload or even check a controller.
Is there a tutorial on using Avrdude - the cmd line options are no help!
I haven't used Avrdude in cmd line to upload or even check a controller.
Is there a tutorial on using Avrdude - the cmd line options are no help!
- Fri Jun 14, 2013 2:24 am
- Forum: Eleven
- Topic: Eleven running slow
- Replies: 14
- Views: 15626
Re: Eleven running slow
Thanks again Angus.
Do you have a link to your version of Avrdude please. Mine does not support the 328 at all.
Do you have a link to your version of Avrdude please. Mine does not support the 328 at all.
- Thu Jun 13, 2013 11:35 pm
- Forum: Eleven
- Topic: Arduino to Arduino serial data transfer, logging/web
- Replies: 0
- Views: 3069
Arduino to Arduino serial data transfer, logging/web
I have looked all over the web for a send/receive sketch to connect two Arduinos - no joy so far. I have never needed to worry about doing this before starting this project. Even Bill Porters easy transfer is ' not that easy'. He uses a data STRUCT but does not give an example of how to format the v...
- Thu Jun 13, 2013 11:20 pm
- Forum: Eleven
- Topic: Eleven running slow
- Replies: 14
- Views: 15626
Re: Eleven running slow
Thanks Angus - the Avrdude cmd line did not work - it gave a verbose number of chip options. However I did burn bootloader and ran a few sketches which showed the processor timing is back to normal. Can you tell me where I might have made an error in that cmd line script? I have also used Studio6 to...
- Thu Jun 13, 2013 3:28 am
- Forum: Eleven
- Topic: Eleven running slow
- Replies: 14
- Views: 15626
Eleven running slow
I have two V1.0 Elevens - one works fine, the other has a problem with running very slowly, about 1/10 normal speed. The 328P was swapped for a brand new chip, today. It accepts sketches and programming using a AVRISPMKii. A test sketch from Examples, Liquidcrystal , needed delay set from 1000 to 10...
- Thu May 30, 2013 7:57 am
- Forum: EtherMega
- Topic: How to Power up with 12V at Vin and use serial OP
- Replies: 1
- Views: 3337
How to Power up with 12V at Vin and use serial OP
Is it possible to powerup the ethermega/Eleven via 12V at Vin/Gnd and still output data via the USB to serial monitor - it doesn't look like it as there is no serial port seen when using external power. I would like to send data out to the PC via serial but powerup usingVin/Gnd. I don't want to use ...
- Thu May 23, 2013 7:22 am
- Forum: LCDK: LCD & Keypad Shield
- Topic: Limiting number of decimal places
- Replies: 6
- Views: 22169
Re: Limiting number of decimal places
Yes,sometimes its not worth chasing things when its very likely tied up somewhere in the IDE source code. No issues with precision - I have just been head down into it. But appreciate all the efforts put in by you with this rather frustrating issue. Well its a proto only so I am not concerned. Just ...
- Thu May 23, 2013 5:14 am
- Forum: LCDK: LCD & Keypad Shield
- Topic: Limiting number of decimal places
- Replies: 6
- Views: 22169
Re: Limiting number of decimal places
I pulled out my ethermega and ran the data again - same type of lcd. By the way have a look at this http://arduino.cc/en/Reference/Float In Arduino, float is the same precision as double - it doesn't matter how they are used - still 4 bytes. Serial output V,I,KW,KVA,PF all set as serial.print(X) in ...
- Wed May 22, 2013 11:47 pm
- Forum: LCDK: LCD & Keypad Shield
- Topic: Limiting number of decimal places
- Replies: 6
- Views: 22169
Re: Limiting number of decimal places
// EmonLibrary examples openenergymonitor.org, Licence GNU GPL V3 #include "EmonLib.h" // Include Emon Library #include <LiquidCrystal.h> EnergyMonitor emon1; // Create an instance LiquidCrystal lcd(8,9,4,5,6,7); void setup() { lcd.begin(16,2); //Serial.begin(9600); emon1.voltage(5, 232, 1.5); // V...