BASCOM-AVR : Nothing But Ping With WIZ820IO : REPLY
Hi, here you can find my sample code for WIZ820io and Arduino Duemilanove: http://wiki.mcselec.com/Getting_started_with_Arduino_and_WIZ820io MAK3
View ArticleBASCOM-AVR : Installation or license issue , need advice : REPLY
:D Thanks , It solved the problem.
View ArticleBASCOM-AVR : Serial Port Communication with Visual Studio 2010 : REPLY
Check properties .newline and .encoding of serialport object in your application. Maybe you send some control characters interpreted in wrong way at avr side.
View ArticleEASY TCP/IP : check / Scan a port : NEWTOPIC
Hi, I'm using the WIZ820IO to send messages to a couple of destinations, via UDP and as TCP client. By socketconnecting to the TCP server, I can find out if the server accepts the message by checking...
View ArticleShare your working BASCOM-AVR code here : A simple WAV file player from an SD...
hi amirf could you post your schematic? I would try glena code that seem to sound very good thanks
View ArticleEASY TCP/IP : check / Scan a port : REPLY
UDP is a connectionless protocol. So you never know if your data arrives. Only if you get an answer. But then you are making some kind of protocol. UDP is good for raw data since it has less overhead....
View ArticleEASY TCP/IP : check / Scan a port : REPLY
Hi Arera, I have written some Getting started here: http://wiki.mcselec.com/MCS_Wiki_Main_entry Maybe you can add your findings. MAK3
View ArticleBASCOM-AVR : LCD 20*4, C2004A, on i2C. E, E1, E2 signals and PCF8574 prob :...
Thank you all. I will check them out the next days George
View ArticleBASCOM-AVR : Serial Port Communication with Visual Studio 2010 : REPLY
Just a quick thought or two. I don't see that you have a config serialin line to set up a interrupt driven, ring buffered, serial input que to thold the incoming data. If you don't set up the serial...
View ArticleBASCOM-AVR : Garden automat : REPLY
Hi guys, thanks for your help. I have next problem. I would need make comparing like this. Is it somehow possible ? [code:1:930d243a47] If Hours = (Program_a1(1) And Minutes = Program_a1(2)) or (Hours...
View ArticleBASCOM-AVR : Garden automat : REPLY
Try something like this: [code:1:bfbee7867a]Dim A1_true as Byte, A2_true as Byte If Hours = Program_a1(1) And Minutes = Program_a1(2) Then A1_true=1 If Hours = Program_a2(1) And Minutes =...
View ArticleBASCOM-AVR : Garden automat : REPLY
You are making things hard for yourself and writing much more code than you need to. You need to look at the bascom help and read about LsysSec which is a long variable that represents the system...
View ArticleBASCOM-AVR : Garden automat : REPLY
Paulvk, could you give an example of how to use lsyssec? why it is better for mev?
View ArticleEASY TCP/IP : check / Scan a port : REPLY
I m bound to udp, because it is standard for professional syslogging software. I am not a network expert, but there are programs available to check open ports on a pc (portscanners). My idea is to...
View ArticleBASCOM-AVR : LCD 20*4, C2004A, on i2C. E, E1, E2 signals and PCF8574 prob :...
Hi gpat, here is a link to a german Bascom forum http://www.mcselec.com/index2.php?option=com_forum&Itemid=59&page=viewtopic&t=10904&highlight=i2c+lcd with this lib (Lcd_i2c_v2.lib)...
View ArticleEASY TCP/IP : check / Scan a port : REPLY
Hi, [quote:77b3df89d0]I m bound to udp, because it is standard for professional syslogging software. [/quote:77b3df89d0] Then you need to dig into the datasheet of W5200 and search for IPRAW and ICMP....
View ArticleBASCOM-AVR : Garden automat : REPLY
I am working on my code for the device similar to yours now, I will post in the blog section in the next few days. It will use RS232 and/or an infra-red remote for data input this way it will need no...
View ArticleBASCOM-AVR : "ENDAT" Heidenhain absolute encoder : NEWTOPIC
Hello, Have anyone use a "ENDAT" Heidenhain absolute encoder with Bascom? Best regards toto [b:430da48cda][color=red:430da48cda](BASCOM-AVR version : 2.0.7.2 , Latest : 2.0.7.6...
View ArticleBASCOM-AVR : LCD 20*4, C2004A, on i2C. E, E1, E2 signals and PCF8574 prob :...
Sorry, now the correct link http://bascom-forum.de/showthread.php?2567-Display-mit-HD44780-Controller-an-I2C/page3 best regards Volker
View ArticleEASY TCP/IP : check / Scan a port : REPLY
Thanks for your tutorials MAK3, i recently got a wiz820 :-). So it is good to have this info clearly presented. About UDP : ping is essentially a protocol too : you send some data and when it is...
View Article