====== Brian's Development Tasks ======
- Metrowerks License
- Zensonic v5000
- Sigma Designs
- LT1996CMS#PBF
- ++PIC Dev.Board|
Single RS232 Converter
Primary 5VDC Regulator
Secondary 3.3VDC Regulator
RS485 adapter for ICD2
2x5 Dip header for Minimal Development(VSS,VDD,MCLR,PGD,PGC,RX,TX)
2x8 Dip header for Development(VSS,VDD,MCLR,PGD,PGC,RX,TX,SDI,SDO,SCLK,CS0,CS1,AD0,AD1,INT0,INT1)
3.5mm Audio jack for RS232 Comm.(Swap Jumpers)
On/Off Switch for battery operation
LED Indicator
++
===== Tech.Support =====
- 1/31/2006 ~ 10:30 - [[chuck.jackson@kf.com|Chuck Jackson]], JP3 Details with Relative TIO4 Pinout and TIO4 electric mockup.
===== Consulting =====
[[dev:nwm:pontech:start|NWM Tasks]]
http://www.medicaldesign.com/articles/ID/1053
http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2369
http://www.maxim-ic.com/appnotes.cfm/appnote_number/1860
http://www.linear.com/pc/viewCategory.do?navId=H0,C1,C1154,C1009,C1126
^Task^Status^
|Build more boards|(**Completed**)|
|Re-enable LCD mmHg Units|(**Completed**)|
|Test LED functions|(**Completed**)|
|Test Serial Comm.|(**Completed**)|
|Work on Graph Code||
|Documentation||
===== NRI Tasks/Notes =====
* Using Version: HBC101 C3-v0.5c
===== PontechControl.NET =====
++++ Creating/Reading Files in VB.NET|
Imports System.IO
'NameSpace required to be imported to work with files
Public Class Form1 Inherits System.Windows.Forms.Form
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e_
As System.EventArgs) Handles MyBase.Load
Dim fs as New FileStream("file.doc", FileMode.Create, FileAccess.Write)
'declaring a FileStream and creating a word document file named file with
'access mode of writing
Dim s as new StreamWriter(fs)
'creating a new StreamWriter and passing the filestream object fs as argument
s.BaseStream.Seek(0,SeekOrigin.End)
'the seek method is used to move the cursor to next position to avoid text to be
'overwritten
s.WriteLine("This is an example of using file handling concepts in VB .NET.")
s.WriteLine("This concept is interesting.")
'writing text to the newly created file
s.Close()
'closing the file
End Sub
End Class
Imports System.IO
'NameSpace required to be imported to work with files
Public Class Form1 Inherits System.Windows.Forms.Form
Private Sub Button1_Click(ByVal....., Byval.....)Handles Button1.Click
Dim fs as New FileStream("file.doc", FileMode.Create, FileAccess.Write)
'declaring a FileStream and creating a document file named file with
'access mode of writing
Dim s as new StreamWriter(fs)
'creating a new StreamWriter and passing the filestream object fs as argument
s.WriteLine("This is an example of using file handling concepts in VB .NET.")
s.WriteLine("This concept is interesting.")
'writing text to the newly created file
s.Close()
'closing the file
fs=New FileStream("file.doc",FileMode.Open,FileAccess.Read)
'declaring a FileStream to open the file named file.doc with access mode of reading
Dim d as new StreamReader(fs)
'creating a new StreamReader and passing the filestream object fs as argument
d.BaseStream.Seek(0,SeekOrigin.Begin)
'Seek method is used to move the cursor to different positions in a file, in this code, to
'the beginning
while d.peek()>-1
'peek method of StreamReader object tells how much more data is left in the file
RichTextbox1.Text &= d.readLine()
'displaying text from doc file in the RichTextBox
End while
d.close()
End Sub
++++
[[http://www.startvbdotnet.com/controls/menus.aspx|Menus in VB.NET]]
===== 2.5" IDE Info =====
* [[http://pinouts.ru/data/Ata44Internal_pinout.shtml]]
* [[http://www.pccables.com/00504.htm]]
===== Bluegiga Bluetooth Info =====
Config:
SET BT AUTH * 12345678
SET CONTROL ESCAPE 1
INQUIRY 2
LIST
Events:
RING 0 00:10:60:ac:c4:3e 1 RFCOMM
NO CARRIER 0 ERROR 0
===== Resources =====
[[http://i2c-bus.org/]]
[[http://www.wifizard.com/tutorialsXP/gbt-solution/Workaround%20for%20Internet%20Connection%20Sharing.pdf|Windows Bluetooth Workaround]]
[[http://www.zytrax.com/tech/layer_1/cables/tech_rs232.htm#db9]]