Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. Fat Fly
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by Fat Fly

    • Fat Fly

      NRF24L01+ lna+pa to ESP-07s ?
      Hardware • • Fat Fly  

      1
      0
      Votes
      1
      Posts
      620
      Views

      No one has replied

    • Fat Fly

      Moisture sensing + relay. Please help with software.
      Troubleshooting • • Fat Fly  

      13
      0
      Votes
      13
      Posts
      2328
      Views

      alowhum

      Here is some code that does exactly what was asked for: https://github.com/createcandle/Devices/tree/master/Plant_health
    • Fat Fly

      Nodemcu + nrf24l01+lna+pa serial gateway power
      Hardware • • Fat Fly  

      3
      0
      Votes
      3
      Posts
      2233
      Views

      Fat Fly

      This pa level is in line 437 #define MY_RF24_PA_LEVEL RF24_PA_MAX ? For serial gateway.
    • Fat Fly

      Mysensors 2.0 ESP8266 serial gateway
      General Discussion • • Fat Fly  

      2
      0
      Votes
      2
      Posts
      997
      Views

      Fat Fly

      #include <EEPROM.h> #include <SPI.h> #include <ArduinoOTA.h> // Enable debug prints to serial monitor #define MY_DEBUG // Use a bit lower baudrate for serial prints on ESP8266 than default in MyConfig.h #define MY_BAUD_RATE 9600 // Enables and select radio type (if attached) #define MY_RADIO_NRF24 //#define MY_RADIO_RFM69 #define MY_GATEWAY_ESP8266 #define MY_ESP8266_SSID "home" #define MY_ESP8266_PASSWORD "123456789" // Set the hostname for the WiFi Client. This is the hostname // it will pass to the DHCP server if not static. #define MY_ESP8266_HOSTNAME "ota-gateway-CH.100" // Enable UDP communication //#define MY_USE_UDP // Enable MY_IP_ADDRESS here if you want a static ip address (no DHCP) #define MY_IP_ADDRESS 10, 124, 77, 101 // If using static ip you need to define Gateway and Subnet address as well #define MY_IP_GATEWAY_ADDRESS 10, 124, 77, 176 #define MY_IP_SUBNET_ADDRESS 255, 255, 255, 0 // The port to keep open on node server mode #define MY_PORT 5003 // How many clients should be able to connect to this gateway (default 1) #define MY_GATEWAY_MAX_CLIENTS 1 // Controller ip address. Enables client mode (default is "server" mode). // Also enable this if MY_USE_UDP is used and you want sensor data sent somewhere. //#define MY_CONTROLLER_IP_ADDRESS 10, 124, 77, 46 // Enable inclusion mode #define MY_INCLUSION_MODE_FEATURE // Enable Inclusion mode button on gateway // #define MY_INCLUSION_BUTTON_FEATURE // Set inclusion mode duration (in seconds) #define MY_INCLUSION_MODE_DURATION 60 // Digital pin used for inclusion mode button #define MY_INCLUSION_MODE_BUTTON_PIN 3 // Flash leds on rx/tx/err // #define MY_LEDS_BLINKING_FEATURE // Set blinking period // #define MY_DEFAULT_LED_BLINK_PERIOD 300 // Led pins used if blinking feature is enabled above #define MY_DEFAULT_ERR_LED_PIN 16 // Error led pin #define MY_DEFAULT_RX_LED_PIN 16 // Receive led pin #define MY_DEFAULT_TX_LED_PIN 16 // the PCB, on board LED #if defined(MY_USE_UDP) #include <WiFiUDP.h> #else #include <ESP8266WiFi.h> #endif #include <MySensors.h> void setup() { ArduinoOTA.onStart( { Serial.println("ArduinoOTA start"); }); ArduinoOTA.onEnd( { Serial.println("\nArduinoOTA end"); }); ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) { Serial.printf("OTA Progress: %u%%\r", (progress / (total / 100))); }); ArduinoOTA.onError([](ota_error_t error) { Serial.printf("Error[%u]: ", error); if (error == OTA_AUTH_ERROR) Serial.println("Auth Failed"); else if (error == OTA_BEGIN_ERROR) Serial.println("Begin Failed"); else if (error == OTA_CONNECT_ERROR) Serial.println("Connect Failed"); else if (error == OTA_RECEIVE_ERROR) Serial.println("Receive Failed"); else if (error == OTA_END_ERROR) Serial.println("End Failed"); }); ArduinoOTA.begin(); Serial.println("Ready"); Serial.print("IP address: "); Serial.println(WiFi.localIP()); } void presentation() { // Present locally attached sensors here } void loop() { // Send locally attech sensors data here ArduinoOTA.handle(); }
    • Fat Fly

      MPU9250 on Arduino Nano
      General Discussion • • Fat Fly  

      1
      0
      Votes
      1
      Posts
      1251
      Views

      No one has replied

    • Fat Fly

      Domoticz multiple gateways ?
      Domoticz • • Fat Fly  

      4
      0
      Votes
      4
      Posts
      2599
      Views

      Fat Fly

      I make esp8266+nrf24l01+ gateway with library 1.5. If sensor node send data j look from serial monitor, data + version mismatch. This gateway connected right ?
    • Fat Fly

      Light sensor sketch with 4 ldr-s
      General Discussion • • Fat Fly  

      4
      0
      Votes
      4
      Posts
      1464
      Views

      Fat Fly

      I want drive this tracker with Domoticz. Weather and more options is add simply. Or 4 ldr-s is separately one by one Arduinos.
    • Fat Fly

      Energy pulse meter + ds18b20 for nrf
      General Discussion • • Fat Fly  

      1
      0
      Votes
      1
      Posts
      634
      Views

      No one has replied

    • Fat Fly

      nRF24L01+PA+LNA MAX power
      General Discussion • • Fat Fly  

      13
      0
      Votes
      13
      Posts
      5428
      Views

      gohan

      Replace LOW with HIGH or MAX for the highest power settings
    • Fat Fly

      Modbus electricity meter
      General Discussion • • Fat Fly  

      4
      0
      Votes
      4
      Posts
      1626
      Views

      Fat Fly

      Thanks from answers.
    • Fat Fly

      Relay Actuator sketch error
      Troubleshooting • • Fat Fly  

      3
      0
      Votes
      3
      Posts
      839
      Views

      Fat Fly

      No. This error if i here try. I install locally development library and all is ok on Arduino Ide. I cant try here at the moment.
    • Fat Fly

      MyConfig.h error
      Bug Reports • • Fat Fly  

      6
      0
      Votes
      6
      Posts
      1813
      Views

      Fat Fly

      I so not disable soft spi if i install gw. After i try.
    • Fat Fly

      Reporting Battery Level
      General Discussion • • Fat Fly  

      23
      0
      Votes
      23
      Posts
      10365
      Views

      mfalkvidd

      @Fat-Fly check the "range issues" troubleshooting flowchart at https://forum.mysensors.org/topic/666/debug-faq-and-how-ask-for-help
    • Fat Fly

      Arduino Leonardo +nrf24l01
      General Discussion • • Fat Fly  

      3
      0
      Votes
      3
      Posts
      4367
      Views

      Fat Fly

      @mfalkvidd said: How far did you get and what were the results? It is a bit hard to help you without knowing that. I try at evening, after work.