Skip to content

Instantly share code, notes, and snippets.

@rmeister
Created July 11, 2016 18:36
Show Gist options
  • Save rmeister/900ac2c9fc354e7ebcb7938487080877 to your computer and use it in GitHub Desktop.
Save rmeister/900ac2c9fc354e7ebcb7938487080877 to your computer and use it in GitHub Desktop.
#include <SoftModem.h>
SoftModem modem = SoftModem();
void setup() {
Serial.begin(115200);
Serial.println("Booting");
delay(100);
modem.begin();
}
void loop() {
delay(150);
uint8_t c[7] = {'W', 'e', 'b', 'J', 'a', 'c', 'k'};
modem.write(c, 7);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment