Search found 25 matches

by Riri
07 Aug 2018 12:03
Forum: Z-Uno
Topic: Upload a hex or bin directly into z-uno
Replies: 4
Views: 4658

Re: Upload a hex or bin directly into z-uno

really extra
very good idea ;)
by Riri
06 Aug 2018 12:50
Forum: Z-Uno
Topic: Upload a hex or bin directly into z-uno
Replies: 4
Views: 4658

Re: Upload a hex or bin directly into z-uno

Thank you very much.
It's run perfectly.

just for windows :
.\compiler prog path\to\filename.bin -d <ZUNO_COMPORT>

Eric.
by Riri
03 Aug 2018 09:30
Forum: Z-Uno
Topic: Upload a hex or bin directly into z-uno
Replies: 4
Views: 4658

Upload a hex or bin directly into z-uno

Hi,
Is there a command to upload a hex or bin directly into z-uno, once the sketch has been compiled, without arduino software (IDE)
My box does not offer "OTA".
Thank's.
Eric.
by Riri
27 Jul 2018 11:24
Forum: Z-Uno
Topic: New 2.1.4 beta
Replies: 49
Views: 43062

Re: New 2.1.4 beta

Hi, I took the time to test and check everything For zunoNID() and zunoInNetwork() on S0 bootloader : OK For Pull up on the same i/o port : OK For issue of compiler with security S2 and uploading sketch : OK For the difference of timing of the digitalRead on pin 3,4,5,6,7,8 : OK I had a problem with...
by Riri
25 Jul 2018 16:27
Forum: Z-Uno
Topic: New 2.1.4 beta
Replies: 49
Views: 43062

Re: New 2.1.4 beta

Hi,
A huge thank you for all these corrections and relevant additions !!!
Eric.
by Riri
15 Jul 2018 11:03
Forum: Z-Uno
Topic: New 2.1.4 beta
Replies: 49
Views: 43062

Re: New 2.1.4 beta

Hi, Really with pleasure, this z-uno is great. And thank you for all these developments. Great for pullup resistors, I hope it will not be too complicated. For S2 issues, I just reproduced the problem with the latest beta (by remove all from packages/Z-Uno & staging/packages and reload board fro...
by Riri
11 Jul 2018 13:16
Forum: Z-Uno
Topic: New 2.1.4 beta
Replies: 49
Views: 43062

Re: New 2.1.4 beta

Hi, I found a another issue with the compiler and S2 security. The burning of the bootloader is going very well, and when l load the program to the z-uno we have a mismatch error. I did the test with compiler 1.6.5 and 1.8.5 and it's the same problem. It works very well with version 2.1.3. With 2.1....
by Riri
10 Jul 2018 19:36
Forum: Z-Uno
Topic: New 2.1.4 beta
Replies: 49
Views: 43062

Re: New 2.1.4 beta

Hi, Big thank for your answer. really nice. I meant by "overload" that it is the electrical schematics that will have to have more resistance for each input. It's only that. No electrical problem. And I confirm that with 4.7K external pull resistors all inputs work perfectly. I'll wait for...
by Riri
03 Jul 2018 12:58
Forum: Z-Uno
Topic: New 2.1.4 beta
Replies: 49
Views: 43062

Re: New 2.1.4 beta

Hi,
No all the time, some pin works, other not.
No need to pass by relay, a pullup resistor to 3.3V suffice.
The electrical schema is :
tlp.png
tlp.png (96.52 KiB) Viewed 8717 times
But it overloads everything!
Eric.
by Riri
02 Jul 2018 22:31
Forum: Z-Uno
Topic: Sketch not reporting correct state of Buttons
Replies: 3
Views: 4072

Re: Sketch not reporting correct state of Buttons

Hi, the getter must not return the state of the switch, but relay (invers of setter, both must be synchronous). try with this : byte getterSwitch1() { return currentLEDValue1; } and for all modify of switch, store value in currentLEDValue1 if (currentButtonState1 != lastButtonState1) { // if state c...