Skip to content

Releases: NodeppOfficial/nodepp-arduino

Nodepp : Stable Release : V1.2.0

25 Aug 17:17

Choose a tag to compare

Nodepp : Stable Release : V1.2.0

  • 📌: Node.js-like API: Write C++ code in a syntax and structure similar to Node.js, making it easier to learn and use.
  • 📌: Embedded-compatible: Compatible with several devices like Arduino UNO | Esp8266 | Esp32 | Stm32
  • 📌: High-performance: Leverage the speed and efficiency of C++ for demanding applications.
  • 📌: Scalability: Build applications that can handle large workloads and grow with your needs.
  • 📌: Open-source: Contribute to the project's development and customize it to your specific requirements.
#include <nodepp.h>

using namespace nodepp;

void onMain(){

    for( auto x: ptr_t<uchar>({ 12, 13 }) ){
         pinMode( x, OUTPUT );
    }

    process::add( coroutine::add( COROUTINE(){
        static bool state = false;    
    coBegin

        for(;;){
            digitalWrite( 12, state );
        coDelay(300); state =! state; }

    coFinish
    }));

    process::add( coroutine::add( COROUTINE(){
        static bool state = false;    
    coBegin

        for(;;){
            digitalWrite( 13, state );
        coDelay(1000); state =! state; }

    coFinish
    }));

}

Nodepp: 0.0.32 Release

30 Nov 02:01
0163ce1

Choose a tag to compare

some bugs fixed

NodePP: 0.0.31 Stable Release

17 Nov 15:34

Choose a tag to compare

NodePP: 0.0.30 Release

10 Aug 10:42
46441ce

Choose a tag to compare

Stable Release