sueppchen / PixMob_waveband

reverse engineering pixmob RF enabled waveband
MIT License
12 stars 1 forks source link

the arduino library #6

Open sueppchen opened 5 months ago

sueppchen commented 5 months ago

so... I converted all TX-stuff to a arduino library and would like to work on the library to include all functions.

_Originally posted by @sueppchen in https://github.com/sueppchen/PixMob_waveband/issues/4#issuecomment-2103418081_

version 0.2.1

sueppchen commented 5 months ago

you can find everything in the /Pixmob_cement/ folder... this is just the basic sending lib for Arduino/ESP more MCU and options and examples are coming soon.

copy the /Pixmob_cement/ folder to your sketchbook/libraries/

howto:

include

batch Pixmob; //create a new pixmob instance

void setup(){ ... batch.begin(TX_PIN); ... }

void sub(){ ... batch.generateTXbuffer(byteArray); //send 7 bytes plain(0-63) values ... }

void loop(){ ... batch.resend(); //resend values in transmit-buffer every 40ms delay(40); // or use millis() ... }

sueppchen commented 5 months ago

lib update

sueppchen commented 4 months ago

update to 0.2.1 first release