Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of PokittoLib by
POKITTO_XTERNALS/Arduino/delay.cpp
- Committer:
- Pokitto
- Date:
- 2017-10-12
- Revision:
- 9:754a7af30890
File content as of revision 9:754a7af30890:
#include <Arduino.h>
#include "PokittoCore.h"
Pokitto::Core _dc;
/** for Arduino compatibility **/
void delay(unsigned long t) {
    _dc.wait(t);
}
            
    