![]() |
RUI3 (RAK Unified Interface 3) - RAK4631
|
Macros | |
#define | delay udrv_app_delay_ms |
#define | delayMicroseconds udrv_app_delay_us |
Functions | |
unsigned long | millis () |
unsigned long | micros () |
unsigned long | systick_micros () |
#define delay udrv_app_delay_ms |
ms | the number of milliseconds to pause |
unsigned long myTime; void setup() { Serial.begin(115200); } void loop() { Serial.print("Time: "); myTime = millis(); Serial.println(myTime); // prints time since program started delay(1000); // wait a second so as not to send massive amounts of data }
#define delayMicroseconds udrv_app_delay_us |
us | the number of microseconds to pause |
unsigned long time; void setup() { Serial.begin(115200); } void loop() { Serial.print("Time: "); time = micros(); Serial.println(time); //prints time since program started delayMircoseconds(1000); // wait a second so as not to send massive amounts of data }
unsigned long millis | ( | ) |
unsigned long myTime; void setup() { Serial.begin(115200); } void loop() { Serial.print("Time: "); myTime = millis(); Serial.println(myTime); // prints time since program started delay(1000); // wait a second so as not to send massive amounts of data }
unsigned long micros | ( | ) |
unsigned long time; void setup() { Serial.begin(115200); } void loop() { Serial.print("Time: "); time = micros(); Serial.println(time); //prints time since program started delayMircoseconds(1000); // wait a second so as not to send massive amounts of data }
unsigned long systick_micros | ( | ) |