Search found 15 matches

by zoomkat
Jan 31, 2009 16:51
Forum: Hardware Interfaces / Communication
Topic: How to send data over the Internet between two computers?
Replies: 23
Views: 13261

Just to add a thought, if one can make an http client to send a "post" request to a web server like apache, then FB might could be used to as a cgi application to capture the data in the "post" and store it on the computer.
by zoomkat
Jan 31, 2009 16:23
Forum: Beginners
Topic: Is there a simple way to send a dialup email?
Replies: 19
Views: 5621

email alternative

If one wants to "roll-your-own" email setup instead of using external applications, the below may be of interest (I made this for just basic). In the below I generate the email vbscript then run it. In this case a text message is being sent to my tracfone cell phone. The attachment may/may...
by zoomkat
Dec 23, 2008 18:42
Forum: General
Topic: Using FB on the internet
Replies: 21
Views: 3933

You might want to check Autoit for automating mouse clicks and such (VBscript sendkeys might be another option).
by zoomkat
Oct 11, 2008 16:50
Forum: Sources, Examples, Tips and Tricks
Topic: Mutiplexed LED grid
Replies: 17
Views: 5734

You might find the below site of interest as it has info on individually controlling 320 strings of christmas lights from the parallel port.

http://computerchristmas.com/christmas/ ... roller_Box
by zoomkat
Aug 24, 2008 22:57
Forum: Sources, Examples, Tips and Tricks
Topic: Send a POST request via HTTP
Replies: 13
Views: 5585

The code now works using full paths like below. Maybe a requirement when using FBIde?

#include "C:/Program Files/FreeBASIC/chisock/chisock.bi"
#libpath "C:/Program Files/FreeBASIC/chisock/bin/win32"
by zoomkat
Aug 24, 2008 18:51
Forum: Sources, Examples, Tips and Tricks
Topic: Send a POST request via HTTP
Replies: 13
Views: 5585

I've installed the latest version of FB for windows. I'm using FBIde version 0.4.6 to do a quick run of the code. I get the below error.

Compiler output:
C:\PROGRA~1\FREEBA~1\bin\win32\ld.exe: cannot find -lchisock
by zoomkat
Aug 24, 2008 16:05
Forum: Sources, Examples, Tips and Tricks
Topic: Send a POST request via HTTP
Replies: 13
Views: 5585

I'm new to this and get a syntax error at "#pragma once" when I run the posted code. Is this something to do with chisock files?
by zoomkat
Aug 24, 2008 2:42
Forum: Sources, Examples, Tips and Tricks
Topic: 30k simple web server
Replies: 42
Views: 29032

Does this web server support a cgi function for running programs and sending the result back to the client brouser?
by zoomkat
Aug 24, 2008 2:26
Forum: Projects
Topic: Parallel port thing
Replies: 2
Views: 1480

Does this code work on XP machines? It works on my XP laptop, but I already have user level access to the hardware enabled on the laptop using userport.
by zoomkat
Apr 11, 2008 17:21
Forum: Beginners
Topic: Cannot get open com to work
Replies: 14
Views: 4294

You might want to make a simple test program to see what is being sent out the serial port. For serial port testing I connect the tx line on the serial port to the rx line on the serial port to loop back what is being sent before actually connecting to the gizmo. It has been my experience that 10ms ...
by zoomkat
Feb 29, 2008 18:59
Forum: Hardware Interfaces / Communication
Topic: servo control
Replies: 20
Views: 20765

Using the open command for the com port works quite well with fb. Below is some test code that I made for using with a serial servo conroller. Now that I have the controller, I see the code needs to be improved. This might be of interest if one wants to control the servos using a web interface. Bott...
by zoomkat
Jun 22, 2007 18:11
Forum: Beginners
Topic: Ports and Data
Replies: 50
Views: 11351

by zoomkat
Jun 22, 2007 7:32
Forum: Beginners
Topic: Ports and Data
Replies: 50
Views: 11351

Asthe thread has gone a lot of places, you might need to restate what you want to do, and what you have been successful at doing so far. Have you actually gained user level access to the parallel port and been able to change a data pin from low to high as measured with a volt meter?
by zoomkat
Apr 09, 2007 23:55
Forum: Beginners
Topic: Interfacing an IR usb module ?
Replies: 1
Views: 1271

Something similar below.

http://www.usbuirt.com/
by zoomkat
Apr 09, 2007 3:45
Forum: Sources, Examples, Tips and Tricks
Topic: CGI application for web servo control
Replies: 0
Views: 2976

CGI application for web servo control

Below is an update on my tinkering with freebasic making a cgi application for use with the Linxmotion ssc-32 servo controller for control of servos over the web. I compiled it and put in the apache cgi-bin folder. I currently don't have an ssc-32 to test with, so I have to connect the serial port t...