Posts

reading serial ports with acc on mac

hey guys, i have arduino uno connected pressure pad , basicaly been trying : 1. have arduino sketch which, when button pressed, sends character on serial. 2. serial-to-keystrokes program, takes character serial connection , converts real keystroke 3. program on mac translates keystroke whatever want do.       found on blog here : http://www.arkadian.eu/pages/tag/aac-keys and further here : http://www.instructables.com/id/a-makers-wedding-photo-booth/step2/software-and-trigger-button/ i have been testing out arduino sketch code: [select] const int buttonpin = 10; // number of pushbutton pin int buttonstate = 0; // variable reading pushbutton status void setup() { pinmode(buttonpin, input); serial.begin(9600); // open serial port @ 9600 bps: } void loop(){ buttonstate = digitalread(buttonpin); if (buttonstate == high) { serial.println(); } else { // nothing } } the code works in serial monitor cant working in other application or trigger photobooth app when on. i...

Retreiving data from flash after boot

the http://www.arduino.cc/en/reference/progmem has clear example of how save , load int value in flash memory. but reading data makes use of variable charset (initiliased when writing it) address: code: [select] progmem  prog_uint16_t charset[]  = {65000}; unsigned int displayint; int k;    // counter variable // read 2-byte int displayint = pgm_read_word_near(charset + k) how can read data without knowing address? for example (hypothetical case) code: [select] unsigned int displayint; // read 2-byte int displayint = pgm_read_word_near(charset + 0) if (digitalread(button) == 1){ value = displayint + 1;    //some value based upon value retrieved flash progmem  prog_uint16_t charset[]  = {value}; } this give errors because charset not known @ first call code: [select] progmem  prog_uint16_t charset[]  = {analogread(analogpin)}; that doesn't make sense. Ardu...

DUB VIBRATIONS FREE DOWNLOAD COMPILATION

Image
dub vibrations proudly presents < blazin melodicas in dub > compilation free download under creative commons license . ( previous compilations  and info details @ http://dubvibrations.com ) 22 dubs celebrating sound of melodica featuring best of world dub (all killas, no fillas) el bib / uk don fe /spain shaky norman /france roots ista posse / france jahspora allstars france/ blaminack /usa steve steppa /usa the manor /uk chazbo /uk alien dread /uk humano espectral /mexico doctor remix /belgium/ dubiterian /brazil dub against police /spain jah slave /basque country ras red /uk benjamin steppa /uk illodica /uk general theory of dub /uk alambic conspiracy / italy m.g.d.k /italy dubin hood /usa available free download http://uploaded.to/file/fy5i0swz Arduino Forum > Community > Bar Sport > DUB VIBRATIONS FREE DOWNLOAD COMPILATION ...

Ad management - Joomla! Forum - community, help and support

Image
jag behöver en ad manegement-mjukvara som är kompatibel med joomla och gärna gratis den måste kunna räkna impressions och väldigt gärna även klick. och dessutom måste mina kunder kunna hålla kolla genom ett gränssnitt där de kan se antalet klick/impressions. finns det någon komponent kanske? Även andra tips på admanagement tas tacksamt emot. the banner component comes joomla apart reporting yoiur client. have here list of extensions: http://extensions.joomla.org/component/ ... itemid,35/ there couple of things waht want think. Board index Joomla! International Language Support International Zone Swedish Forum Äldre versioner Forum Joomla! 1.0 Allmänna frågor

foscam robot project

Image
hi all, working on foscam robot project , wondering if 1 me on converting stepper motor(5 wire) normal motor(2 wire) . do mean convert physical motor stepper regular dc motor, or mean convert code written stepper driving regular dc motor? Arduino Forum > Using Arduino > Motors, Mechanics, and Power (Moderator: fabioc84) > foscam robot project arduino

128x64 Graphic LCD usage - Raspberry Pi Forums

hi guys ve bought new raspberry pi model b , have 128x64 graphical lcd , want use monitoring stuff (which not know how yet ) , read info cpu , network , show on lcd..there plenty of tuts 16x2 128x64 cant find. looking eagerly towards answers. sincerely, i asking gordon other day , here has far. http://unicorn.drogon.net/128x64.jpg https://git.drogon.net/?p=wiringpi;a=bl ... es/clock.c https://git.drogon.net/?p=wiringpi;a=bl ... cd128x64.h raspberrypi

Sending 0x8 on uart

hi, its regarding vnding machine protocol, protocol says master has send reset signal 08h peripheral via uart. confused on send on uart, need send ascii equivalent of 0x8 i.e '0' first ' & next byte '8'. pseudocode while(txempty)   *thr = 0x30; //'0' while(txempty) *thr = 0x38; //'8'; does peripheral 0x8 @ receiver.please guide. sthwk quote do need send ascii equivalent of 0x8 i.e '0' first ' & next byte '8'. no use:- code: [select] serial.write(0x08); Arduino Forum > Using Arduino > Networking, Protocols, and Devices (Moderator: fabioc84) > Sending 0x8 on uart arduino