Search found 3 matches
- 16 Oct 2016 12:31
- Forum: Z-Uno
- Topic: Adding classes?
- Replies: 1
- Views: 3564
Adding classes?
Hi, Is it possible to add user defined classes? I've tried with very basic examples that works with "Arduino classic" but cannot get the Z-UNO compiler to accept it. One of the classes I want use is the attached elapsedMillis.h Reference: http://playground.arduino.cc/Code/ElapsedMillis Cou...
- 13 Oct 2016 13:28
- Forum: Z-Uno
- Topic: Not all code run in setup()
- Replies: 6
- Views: 7699
Re: Not all code run in setup()
Ok. Thanks for that clarification.
Does it happen to be the same for Serial.print()?
If so, could it be fixed? It is really handy to see on the serial monitor that the sketch started by having a print in the setup.
Does it happen to be the same for Serial.print()?
If so, could it be fixed? It is really handy to see on the serial monitor that the sketch started by having a print in the setup.
- 12 Oct 2016 23:12
- Forum: Z-Uno
- Topic: Not all code run in setup()
- Replies: 6
- Views: 7699
Not all code run in setup()
It seems like not all code is run in the setup(). Why? On a "normal Arduino" the code below will blink the LED slow twice and then continue with fast blinking. On Z-UNO it starts immediately with fast blinking. // LED pin number #define LED_PIN 13 void setup() { pinMode(LED_PIN, OUTPUT); /...