mirror of https://github.com/lumapu/ahoy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
592 B
26 lines
592 B
3 years ago
|
#include "app.h"
|
||
|
|
||
|
app myApp;
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
void setup() {
|
||
|
pinMode(RF24_IRQ_PIN, INPUT_PULLUP);
|
||
|
attachInterrupt(digitalPinToInterrupt(RF24_IRQ_PIN), handleIntr, FALLING);
|
||
|
|
||
|
// AP name, password, timeout
|
||
|
myApp.setup("ESP AHOY", "esp_8266", 15);
|
||
|
}
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
void loop() {
|
||
|
myApp.loop();
|
||
|
}
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
ICACHE_RAM_ATTR void handleIntr(void) {
|
||
|
myApp.handleIntr();
|
||
|
}
|
||
|
|