Thank you,
I looked through the TT.tcl script but didn't see much about 'baud' in it.
Gary
Search found 409 matches
- Tue Dec 27, 2022 9:47 pm
- Forum: Software issues
- Topic: Linux TclTerm baud rate
- Replies: 3
- Views: 135
- Mon Dec 19, 2022 3:09 pm
- Forum: Software issues
- Topic: Linux TclTerm baud rate
- Replies: 3
- Views: 135
Linux TclTerm baud rate
Hello Basicchip - (the 'windoz' guy') Gary here (a real Linux user). . Using TclTerm.tcl on Linux - it is simple to use, I enjoy it. The Windows version will allow me to change the baud rate, BUT not the Linux version. Some of my boards use a lower speed UART. . Could the pull down for Baud Rate be ...
- Sat Dec 17, 2022 2:27 pm
- Forum: Projects
- Topic: Man Cave Accessory
- Replies: 2
- Views: 116
Re: Man Cave Accessory
more info: This is for the NEC codes that the IRRemote transmits. The Arduino Library has coding/timing for the other brands. The use of Interrupt timing was garnered/modified from the Arduino code . I used the falling edge of the signal from the detector to create an Interrupt. The ISR (Interrupt S...
- Sat Dec 17, 2022 1:51 pm
- Forum: Projects
- Topic: Man Cave Accessory
- Replies: 2
- Views: 116
Re: Man Cave Accessory
this is the basic setup [schematic]
Pin assignments are upto you or in the program to be posted later.
CAUTION: A0 needs to be input from a 3.3v device as noted in the drawing.
'
be sure to isolate all of the pins[used] on the dimmer so the original dimmer circuitry
does not interfere
Pin assignments are upto you or in the program to be posted later.
CAUTION: A0 needs to be input from a 3.3v device as noted in the drawing.
'
be sure to isolate all of the pins[used] on the dimmer so the original dimmer circuitry
does not interfere
- Fri Dec 16, 2022 7:37 pm
- Forum: Projects
- Topic: Man Cave Accessory
- Replies: 2
- Views: 116
Man Cave Accessory
Man Cave Accessory : IR remote volume control Impetus: needed to change the PC volume from my Submarine-motif rack [across the cave]. edit:: BTW when switching from IR to the knob/pot - give the IR one more command - it is in a loop and won't see the changed switch Components: IRremote kit - ProtoSu...
- Tue Nov 29, 2022 10:32 pm
- Forum: Other Hardware interfaces
- Topic: RC servo testing
- Replies: 2
- Views: 161
Re: RC servo testing
Y'all,
It seems that a .1uf (100nf) capacitor across the 5 & gnd at the arduino connector resolved the spurios triggers.
Only did about a 2 hour power on test.
Olzeke51
It seems that a .1uf (100nf) capacitor across the 5 & gnd at the arduino connector resolved the spurios triggers.
Only did about a 2 hour power on test.
Olzeke51
- Mon Nov 28, 2022 1:18 am
- Forum: Other Hardware interfaces
- Topic: RC servo testing
- Replies: 2
- Views: 161
Re: RC servo testing
Hey Y'all, - - heads up I connected some more components to my board, and started getting random failures. One status-type LED would light up from time to time - randomly. Chased it down to the SERVO setup - mainly the +5v line - - preliminary troubleshooting. Not sure if the USB power cable [also h...
- Thu Nov 24, 2022 10:58 pm
- Forum: Other Hardware interfaces
- Topic: RC servo testing
- Replies: 2
- Views: 161
RC servo testing
As part of a project utilizing a lightweight RC servo, I wanted to test the limits and some 'stepping' values. My project needed some small steps. [?More to come in a future 'Project"!?] ' This utilizes Coridium's HWPWM11.bas file - as I used a Prostart board. It also includes a 'Bit Bang' routine u...
- Thu Nov 24, 2022 3:15 pm
- Forum: Software issues
- Topic: BT - Function calling
- Replies: 7
- Views: 6775
Re: BT - Function calling
RESOLVED --- NOW I know what those 'guards' DO #ifndef IRremoteint_h #define IRremoteint_h ' turns out BOTH of my support #includes had the same 'guard' SO the second file got ignored for the final compile !!!! [and any of its SUBs] ' must be a pre-processor function - there is no mention in the he...
- Thu Nov 24, 2022 2:34 am
- Forum: Software issues
- Topic: BT - Function calling
- Replies: 7
- Views: 6775
Re: CALLing an #included FUNCtion
Moved them Back into the file with 'Main:' No more issues Olzeke51 [edited] the 'translate' SUB - GOSUBed another SUB to print an error message ???? actually both of those did the GOSUB Errors(n) to print messages... ?? have to set a 'global variable' for the Error #, then . do the GOSUB Errors(n) f...