Navigation

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

    Topics created by Mr_sensor

    • Mr_sensor

      What is loaded / running on the arduino?
      General Discussion • • Mr_sensor  

      4
      0
      Votes
      4
      Posts
      939
      Views

      kimot

      Arduino IDE can only program chip, not read its program memory. But you can use AVRDUDE ( maybe with some GUI ) for reading program memory from your chip. And in your program sketch define some string to identify version. It can be read hex output of program memory then.
    • Mr_sensor

      Temperature sensor sketch only sending battery info to mqtt
      Hardware • sketch • • Mr_sensor  

      4
      0
      Votes
      4
      Posts
      900
      Views

      rejoe2

      You seem to send the temp messages under a different ChildID than it is presented: presentation takes "1", send uses "0". You have to allign that, e.g. by using send(msg.setSensor(i+CHILD_ID_TEMP).set(temperature,1)); But as long as there's just one DS18B20 doing that dynamically doesn't really make sense. Using the defined message structure (MyMessage msgTemp...) could make things more transparent. Also there's no sending command for voltage. So why do you expect the controller to receive also voltage?
    • Mr_sensor

      How to get battery volt / percentage message send to mqtt?
      Development • • Mr_sensor  

      15
      0
      Votes
      15
      Posts
      1803
      Views

      Mr_sensor

      @gohan Ok will try that see if I made a fault somewhere
    • Mr_sensor

      DHT11 Arduino pro mini no temp readings
      Development • • Mr_sensor  

      13
      0
      Votes
      13
      Posts
      4169
      Views

      gohan

      Just use any mqtt client and subscribe to topic # , you will be able to see all messages and pick the one you are looking for
    • Mr_sensor

      Max6675 Thermocouple project
      Development • • Mr_sensor  

      2
      0
      Votes
      2
      Posts
      2302
      Views

      Mr_sensor

      Any ideas on this any one? How to troubleshoot this? Would be nice to get this working. Thanks W.