How to set the virtual pin that i want to use

Hey, can anyone help me out?
I need to set the virtual pins that i need to use, but i don’t see any V1,V2 or any Vpins here in this script.
I’m using a raspberry pi 2 B+ & python

import BlynkLib
import time

BLYNK_AUTH = ‘YourAuthToken’

Initialize Blynk
blynk = BlynkLib.Blynk(BLYNK_AUTH)

Register Virtual Pins
@blynk.VIRTUAL_WRITE(1)
def my_write_handler(value):
print(‘Current V1 value: {}’.format(value))

@blynk.VIRTUAL_READ(2)
def my_read_handler():
# this widget will show some time in seconds…
blynk.virtual_write(2, time.ticks_ms() // 1000)

Start Blynk (this call should never return)
blynk.run()

Be sure to reference the context (e.g. language and device) in question so that others will understand better.

I always use the full Vx in C++ code but I believe the V is optional even there.

And I never see the V in JS… and don’t have a clue in Python :stuck_out_tongue_winking_eye: but based on what you are showing… I see references to what you could consider ‘V1’ and ‘V2’ as those numbers in () would never represent a physical pin in a Blynk command.

PS please format any posted code as per the Welcome Topic, thanks.

hehehe, okey gunner. Still a newbie here.