Forum Replies Created
-
AuthorPosts
-
Auriacombe GuillaumeParticipantHello Anders,
I’m sorry, but it’s impossible that “nivBattery.Text = Battery.Current”, because it does not work.Help me, please.
Regards,
Guillaume
Auriacombe GuillaumeParticipantHi,
This my code :
This is my code, (Button Connect)
` Private Async Sub Connect_Click(sender As Object, e As EventArgs) Handles Connect.Click
desactiver()Try
‘ Connexion bluetooth
‘_brick = New Brick(New BluetoothCommunication(textBox1.Text))‘Connexion wifi, on récupère l’adresse IP de la brick
_brick = New Brick(New NetworkCommunication(textBox1.Text))‘Connexion usb
‘_brick = New Brick(New UsbCommunication())‘Vérifie quel langues a été choisi et met le bon texte
If ComboBox1.SelectedIndex = 0 Then
Status.Text = “Connexion en cours …”
ElseIf ComboBox1.SelectedIndex = 1 Then
Status.Text = “Connecting …”
End IfConnectionFaite = True
Me.Enabled = False
Await _brick.ConnectAsync()
‘Il se connecte sans erreur
Catch ex As NullReferenceException
Exit Try
‘Si connexion Impossible, alors affiché une erreure, dans une boîte de dialogue
Catch ex As Exception
MessageBox.Show(ex.Message)‘Fonctions
CBConnecté()ConnectionFaite = False
Finally
Me.Enabled = True‘Fonction
CBConnecté()
End TryIf ConnectionFaite Then
‘Await _brick.DirectCommand.PlayToneAsync(100, 1000, 300)
activer()
FirmwareVersion.Text = Await _brick.DirectCommand.GetFirmwareVersionAsync()
HERE IS VERY IMPORTANT !!
nivBattery.Text = Battery.Current.MaxValueEnd If
End Sub
Thank you in adavance ! 🙂
Regards,
Guillaume
Auriacombe GuillaumeParticipantHello,
I did as you told me, but it puts a lot and put it in Volt I do not know how in visual basic .net ? :/
An idea ?
I put the number that appears as an attachment.
If you could tell me the voltage or the battery level, because I did not understand what it was for is what is the level of battery or tension?
And, the code I do not know what to put.
Thank you for helping me.
It’s very urgent, and it’s important !
Sincerely,
Guillaume- This reply was modified 9 years, 6 months ago by Auriacombe Guillaume.
Attachments:
You must be logged in to view attached files. -
AuthorPosts
Follow