Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. Hardware
  3. Question about NRF24L01+ and signal issues

Question about NRF24L01+ and signal issues

Scheduled Pinned Locked Moved Hardware
nrf24l01
16 Posts 7 Posters 10.2k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • axillentA axillent

    @ServiceXp this is a smallest size A tantalum, it is 3.2 x 1.6 mm

    @xefil said:

    I've used a normal 10uF electrolytic capacitor. Yours is a tanalum. I'm not an expert so I don't know the differences. Do you think it's not enough mine? Even the distance is some meters behind a little wall (there is an open door in the near). I was thinking the type of radio isn't so good as the last you've posted.

    electrolitic should be sufficient, but tantalum is better and ceramic is even better
    try scanner from RF24 examples to find better radio channel
    this could be the reason

    X Offline
    X Offline
    xefil
    wrote on last edited by
    #7

    @axillent said:

    @ServiceXp this is a smallest size A tantalum, it is 3.2 x 1.6 mm

    @xefil said:

    I've used a normal 10uF electrolytic capacitor. Yours is a tanalum. I'm not an expert so I don't know the differences. Do you think it's not enough mine? Even the distance is some meters behind a little wall (there is an open door in the near). I was thinking the type of radio isn't so good as the last you've posted.

    electrolitic should be sufficient, but tantalum is better and ceramic is even better
    try scanner from RF24 examples to find better radio channel
    this could be the reason

    I'll try it and let you know, thank you!

    Simon

    1 Reply Last reply
    0
    • T Offline
      T Offline
      therik
      wrote on last edited by
      #8

      A question for you in your setup...where is your antenna positioned relative to other nearby objects?

      I've noticed that there are several examples here and elsewhere where the PCB antenna is positioned over a metallic object or over another PCB with copper traces or ground plane. After talking with an antenna expert, he commented that doing so can de-tune the antenna, from 2.4 GHz to something like 2.2 GHz, which will greatly reduce the efficiency (and therefore range).

      X 1 Reply Last reply
      0
      • T therik

        A question for you in your setup...where is your antenna positioned relative to other nearby objects?

        I've noticed that there are several examples here and elsewhere where the PCB antenna is positioned over a metallic object or over another PCB with copper traces or ground plane. After talking with an antenna expert, he commented that doing so can de-tune the antenna, from 2.4 GHz to something like 2.2 GHz, which will greatly reduce the efficiency (and therefore range).

        X Offline
        X Offline
        xefil
        wrote on last edited by
        #9

        @therik said:

        A question for you in your setup...where is your antenna positioned relative to other nearby objects?

        I've noticed that there are several examples here and elsewhere where the PCB antenna is positioned over a metallic object or over another PCB with copper traces or ground plane. After talking with an antenna expert, he commented that doing so can de-tune the antenna, from 2.4 GHz to something like 2.2 GHz, which will greatly reduce the efficiency (and therefore range).

        This is an interesting part. I've one GW and two sensors for now.
        The GW is over a wardrobe but in another room (room1). Nothing in the near.
        One node is near a window and a TV (room2). Nothing really near.
        The second node is near a stove in iron/ceramic (room2). This could be more the case. This is the antenna with the worst signal, even if it's between the GW and the forst antenna. Even if the first antenna is farther away from the GW is not near iron/copper. I'll try to place the second antenna a little more far away from the stoove.
        Meanwhile I've moved the GW in room2 and now all works very well. This isn't a solution because in the near future I'll place more sensors around. All nodes are with simple nrf24l01 without the big antenna :)

        Thanks!

        Simon

        X 1 Reply Last reply
        0
        • X xefil

          @therik said:

          A question for you in your setup...where is your antenna positioned relative to other nearby objects?

          I've noticed that there are several examples here and elsewhere where the PCB antenna is positioned over a metallic object or over another PCB with copper traces or ground plane. After talking with an antenna expert, he commented that doing so can de-tune the antenna, from 2.4 GHz to something like 2.2 GHz, which will greatly reduce the efficiency (and therefore range).

          This is an interesting part. I've one GW and two sensors for now.
          The GW is over a wardrobe but in another room (room1). Nothing in the near.
          One node is near a window and a TV (room2). Nothing really near.
          The second node is near a stove in iron/ceramic (room2). This could be more the case. This is the antenna with the worst signal, even if it's between the GW and the forst antenna. Even if the first antenna is farther away from the GW is not near iron/copper. I'll try to place the second antenna a little more far away from the stoove.
          Meanwhile I've moved the GW in room2 and now all works very well. This isn't a solution because in the near future I'll place more sensors around. All nodes are with simple nrf24l01 without the big antenna :)

          Thanks!

          Simon

          X Offline
          X Offline
          xefil
          wrote on last edited by
          #10

          @axillent
          I've tested the code scanner:

          <pre><code>
          /*
          Copyright (C) 2011 J. Coliz maniacbug@ymail.com

          This program is free software; you can redistribute it and/or
          modify it under the terms of the GNU General Public License
          version 2 as published by the Free Software Foundation.
          */

          #include <SPI.h>
          #include "nRF24L01.h"
          #include "RF24.h"
          #include "printf.h"

          //
          // Hardware configuration
          //

          // Set up nRF24L01 radio on SPI bus plus pins 9 & 10

          RF24 radio(9,10);

          //
          // Channel info
          //

          const uint8_t num_channels = 128;
          uint8_t values[num_channels];

          //
          // Setup
          //

          void setup(void)
          {
          //
          // Print preamble
          //

          Serial.begin(57600);
          printf_begin();
          printf("\n\rRF24/examples/scanner/\n\r");

          //
          // Setup and configure rf radio
          //

          radio.begin();
          radio.setAutoAck(false);

          // Get into standby mode
          radio.startListening();
          radio.stopListening();

          // Print out header, high then low digit
          int i = 0;
          while ( i < num_channels )
          {
          printf("%x",i>>4);
          ++i;
          }
          printf("\n\r");
          i = 0;
          while ( i < num_channels )
          {
          printf("%x",i&0xf);
          ++i;
          }
          printf("\n\r");
          }

          //
          // Loop
          //

          const int num_reps = 100;

          void loop(void)
          {
          // Clear measurement values
          memset(values,0,sizeof(values));

          // Scan all channels num_reps times
          int rep_counter = num_reps;
          while (rep_counter--)
          {
          int i = num_channels;
          while (i--)
          {
          // Select this channel
          radio.setChannel(i);

            // Listen for a little
            radio.startListening();
            delayMicroseconds(128);
            radio.stopListening();
          
            // Did we get a carrier?
            if ( radio.testCarrier() )
              ++values[i];
          }
          

          }

          // Print out channel measurements, clamped to a single hex digit
          int i = 0;
          while ( i < num_channels )
          {
          printf("%x",min(0xf,values[i]&0xf));
          ++i;
          }
          printf("\n\r");
          }

          // vim:ai:cin:sts=2 sw=2 ft=cpp

          </code></pre>

          and I've wired the board so:

          CE 9
          CSN 10
          SCK 13
          MOSI 11
          MISO 12

          The output is always:

          RF24/examples/scanner/
          00000000000000001111111111111111222222222222222233333333333333334444444444444444555555555555555566666666666666667777777777777777
          0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
          44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444

          What does it mean??
          f I disconnect the 3.3V the values are going to 000000000, also should be wired correctly.
          Or do you have another sketch and wire instrctions?

          Thanks!

          Simon

          1 Reply Last reply
          0
          • X Offline
            X Offline
            xefil
            wrote on last edited by xefil
            #11

            It was wired wrong, now it works with two scanners :)
            I've turned OFF all my nodes and executed the scanner.

            Two examples I got:

            RF24/examples/scanner/
            00000000000000001111111111111111222222222222222233333333333333334444444444444444555555555555555566666666666666667777777777777777
            0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
            00000000000000000024222242223133132001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000000000002221443324342431100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000011101115543322223122222101100120000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000000000003231222222232221000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000011100014132412323232323100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000000001133231323124552222000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000001110112110112412233442322111001100200000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000162333234223854374544443222222121100000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000010100023322232231224332200012110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000000001024243334333233343201000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000101101124422323243332233212011100000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000111102113233322333422222111110110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000211011021212323222332131112011101000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000111011111314422222222220122111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000001110111322433222232121123111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000111011112222322233322101111121110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000000110012223432124311121101110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000011011013222425423322211111111110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000011110012344433132322222111122110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            00000000000110111101122535431322311110111110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
            

            OR with wifi scanner:

             1 2  3 4  5  6 7 8  9 10 11 12 13  14                     <
            
            |      *R=:WRWRRR=W===:                                          | 5
            |     ..+--W*WRRR++---..                                         | 6
            |      ...:RRWWRR==:====                                         | 7
            |     +aaaa**WaWWR*+-::                                          | 8
            |       :==RRWRRR+::.:                                           | 7
            |      .---RaWRWR*-: .                                           | 8
            |      .++-WRRRRR*-*--                                           | 6
            |       .-.RR*WR*+-*.-                                           | 6
            |     ...-:++aWRRa:-..                                           | 8
            |      ::=:aaaWaaa:=.:                                           | 7
            |       .::aRRWRR+.:..                                           | 8
            |     ..+++RWRRWWR..--.                                          | 6
            |       ..-RR+*WRR++R*+-                                         | 6
            |       ..+RR+*WRR--+.                                           | 6
            >      1 2  3 4  5  6 7 8  9 10 11 12 13  14                     <
            |       :--WaRRRWa=-.:                                           | 9
            |      .--=WR*++++...-                                           | 9
            |         -WWR**RR*+..                                           | 6
            |      ....WRaa+Ra== .                                           | 7
            |      . ::WaWRaR*==                                             | 11
            |     :::=+WWRWWWR*+:::                                          | 14
            |     ----aWRWRWWR**===.                                         | 20
            |      .:++WWaWWa*+*...                                          | 14
            |     .::++aWaWaRW*a.... .                                       | 12
            |       .+*WWWWRWW*=                                             | 12
            |     ::+:-RRWa-**:.   .                                         | 8
            |     ::=..RaWa=++:....=                                         | 7
            |     --=:-*aWWaaa===*aW :                                       | 9
            |       :==R*WRRWWR=====                                         | 5
            >      1 2  3 4  5  6 7 8  9 10 11 12 13  14                     <
            |       .:=RRRWaaa.:                                             | 7
            

            I have default channels in my nodes.
            Should I use as new channel @axillent and how to set it?

            Thanks!!

            Simon

            X 1 Reply Last reply
            0
            • X xefil

              It was wired wrong, now it works with two scanners :)
              I've turned OFF all my nodes and executed the scanner.

              Two examples I got:

              RF24/examples/scanner/
              00000000000000001111111111111111222222222222222233333333333333334444444444444444555555555555555566666666666666667777777777777777
              0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
              00000000000000000024222242223133132001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000000000002221443324342431100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000011101115543322223122222101100120000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000000000003231222222232221000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000011100014132412323232323100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000000001133231323124552222000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000001110112110112412233442322111001100200000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000162333234223854374544443222222121100000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000010100023322232231224332200012110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000000001024243334333233343201000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000101101124422323243332233212011100000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000111102113233322333422222111110110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000211011021212323222332131112011101000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000111011111314422222222220122111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000001110111322433222232121123111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000111011112222322233322101111121110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000000110012223432124311121101110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000011011013222425423322211111111110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000011110012344433132322222111122110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              00000000000110111101122535431322311110111110000000000000000000000000000000000000000000000000000000000000000000000000000000000000
              

              OR with wifi scanner:

               1 2  3 4  5  6 7 8  9 10 11 12 13  14                     <
              
              |      *R=:WRWRRR=W===:                                          | 5
              |     ..+--W*WRRR++---..                                         | 6
              |      ...:RRWWRR==:====                                         | 7
              |     +aaaa**WaWWR*+-::                                          | 8
              |       :==RRWRRR+::.:                                           | 7
              |      .---RaWRWR*-: .                                           | 8
              |      .++-WRRRRR*-*--                                           | 6
              |       .-.RR*WR*+-*.-                                           | 6
              |     ...-:++aWRRa:-..                                           | 8
              |      ::=:aaaWaaa:=.:                                           | 7
              |       .::aRRWRR+.:..                                           | 8
              |     ..+++RWRRWWR..--.                                          | 6
              |       ..-RR+*WRR++R*+-                                         | 6
              |       ..+RR+*WRR--+.                                           | 6
              >      1 2  3 4  5  6 7 8  9 10 11 12 13  14                     <
              |       :--WaRRRWa=-.:                                           | 9
              |      .--=WR*++++...-                                           | 9
              |         -WWR**RR*+..                                           | 6
              |      ....WRaa+Ra== .                                           | 7
              |      . ::WaWRaR*==                                             | 11
              |     :::=+WWRWWWR*+:::                                          | 14
              |     ----aWRWRWWR**===.                                         | 20
              |      .:++WWaWWa*+*...                                          | 14
              |     .::++aWaWaRW*a.... .                                       | 12
              |       .+*WWWWRWW*=                                             | 12
              |     ::+:-RRWa-**:.   .                                         | 8
              |     ::=..RaWa=++:....=                                         | 7
              |     --=:-*aWWaaa===*aW :                                       | 9
              |       :==R*WRRWWR=====                                         | 5
              >      1 2  3 4  5  6 7 8  9 10 11 12 13  14                     <
              |       .:=RRRWaaa.:                                             | 7
              

              I have default channels in my nodes.
              Should I use as new channel @axillent and how to set it?

              Thanks!!

              Simon

              X Offline
              X Offline
              xefil
              wrote on last edited by
              #12

              Sorry,

              Noone could help me?
              Which channel does the library use by default? What should I change?

              Thanks!

              Simon

              1 Reply Last reply
              0
              • K Offline
                K Offline
                kalle
                wrote on last edited by kalle
                #13

                Take a look here http://www.mysensors.org/download/sensor_api_14#the-full-api
                the default channel is 76

                1 Reply Last reply
                0
                • hekH Offline
                  hekH Offline
                  hek
                  Admin
                  wrote on last edited by
                  #14

                  And you can change channel in the MyConfig.h if necessary.

                  1 Reply Last reply
                  0
                  • X Offline
                    X Offline
                    xefil
                    wrote on last edited by xefil
                    #15

                    Thanks @hek and @kalle

                    Sorry, but I'm not good to understand the debug of the scanners.
                    In the RF24/examples/scanner/ the range is between 0000->->->7777 I would expect a list of channels between 1 and 13.
                    In the second scanner (wiFi scanner found on arduino forum) It's more accurate. It seems noisy between channel 3 and 9.

                    So, the questions are:

                    • What does default channel 76 mean? 2476Mhz? Would mean above channel 13, on channel 14. In this case these channels are free, based on the results. I've seen I can use:
                      #define RF24_CHANNEL 76 //RF channel for the sensor net, 0-127

                    • How to interpret the scanners result? Most of all the "RF24/examples/scanner/" which has an output I cannot identify in a channel.

                    I would like to understand the result and so choose the right channel, not only trying without knowing what I'm doing :)

                    Thanks a lot for the support!

                    Simon

                    NeverDieN 1 Reply Last reply
                    0
                    • X xefil

                      Thanks @hek and @kalle

                      Sorry, but I'm not good to understand the debug of the scanners.
                      In the RF24/examples/scanner/ the range is between 0000->->->7777 I would expect a list of channels between 1 and 13.
                      In the second scanner (wiFi scanner found on arduino forum) It's more accurate. It seems noisy between channel 3 and 9.

                      So, the questions are:

                      • What does default channel 76 mean? 2476Mhz? Would mean above channel 13, on channel 14. In this case these channels are free, based on the results. I've seen I can use:
                        #define RF24_CHANNEL 76 //RF channel for the sensor net, 0-127

                      • How to interpret the scanners result? Most of all the "RF24/examples/scanner/" which has an output I cannot identify in a channel.

                      I would like to understand the result and so choose the right channel, not only trying without knowing what I'm doing :)

                      Thanks a lot for the support!

                      Simon

                      NeverDieN Offline
                      NeverDieN Offline
                      NeverDie
                      Hero Member
                      wrote on last edited by
                      #16

                      @xefil said:

                      Thanks @hek and @kalle

                      Sorry, but I'm not good to understand the debug of the scanners.
                      In the RF24/examples/scanner/ the range is between 0000->->->7777

                      Those are the high order nibble of the channel byte. The low order nibble is just below it.
                      The 125 channel numbers are printed "sideways" in hex.

                      I would expect a list of channels between 1 and 13.

                      You're thinking of wi-fi. This isn't wi-fi.

                      In the second scanner (wiFi scanner found on arduino forum) It's more accurate. It seems noisy between channel 3 and 9.

                      So, the questions are:

                      • What does default channel 76 mean? 2476Mhz?

                      yes

                      Would mean above channel 13, on channel 14. In this case these channels are free, based on the results. I've seen I can use:
                      #define RF24_CHANNEL 76 //RF channel for the sensor net, 0-127

                      • How to interpret the scanners result? Most of all the "RF24/examples/scanner/" which has an output I cannot identify in a channel.

                      The bigger the number below the channel, the more active it is.

                      I would like to understand the result and so choose the right channel, not only trying without knowing what I'm doing :)

                      Thanks a lot for the support!

                      Simon

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      15

                      Online

                      11.7k

                      Users

                      11.2k

                      Topics

                      113.0k

                      Posts


                      Copyright 2019 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • MySensors
                      • OpenHardware.io
                      • Categories
                      • Recent
                      • Tags
                      • Popular