Hello Guest it is April 25, 2024, 03:32:10 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - NeoTO

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
501
PoKeys / Re: Pokey matrix keyboard problem
« on: November 05, 2011, 06:40:13 AM »
Save configuration to a file and send it to support@poscope.com.

502
PoKeys / Re: lcd getting HOT
« on: November 04, 2011, 03:26:21 AM »
Did you pay attention to the AND481GST LCD pinout? According to the datasheet, the pinout is not fully compatible to other HD44780 displays. Namely, the +5V is on pin 1 and GND on pin2 (usually, HD44780 displays have these two pins the other way around).

503
PoKeys / Re: Pokeys and VB6
« on: January 19, 2009, 01:11:19 PM »
The solution is quite simple.

In your Visual Basic 6.0 environment, go to Project > References..., find 'PoKeys device communication DLL' in the list (if you cannot find the entry, click Browse and locate .tlb file in PoKeys installation folder). Then press magic F2 key (it opens Object browser) and select PoKeysDevice_DLL in upper combo box. Now you can see all the functions and their parameters that PoKeys communication DLL supports.

To use the objects in DLL, proceed in this way (this is possible after you add Reference to PoKeys DLL):

    Dim device As New PoKeysDevice
   
    device.EnumerateDevices
    device.ConnectToDevice 0
   
    device.DisconnectDevice
   
    Set device = Nothing

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51