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.
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...
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...
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....
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...
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...